@sapui5/ts-types 1.92.1 → 1.93.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/package.json +1 -1
- package/types/index.d.ts +2 -1
- package/types/sap.apf.d.ts +2 -29
- package/types/sap.ca.ui.d.ts +649 -651
- package/types/sap.chart.d.ts +49 -49
- package/types/sap.collaboration.d.ts +756 -762
- package/types/sap.esh.search.ui.d.ts +7 -0
- package/types/sap.f.d.ts +623 -468
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +101 -75
- package/types/sap.fe.macros.d.ts +55 -8
- package/types/sap.fe.navigation.d.ts +5 -14
- package/types/sap.fe.placeholder-1.93.0-d.ts +3 -0
- package/types/sap.fe.plugins.d.ts +2 -4
- package/types/sap.fe.templates.d.ts +1 -16
- package/types/sap.fe.test.d.ts +44 -115
- package/types/sap.fe.tools.d.ts +2 -4
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1321 -1191
- package/types/sap.landvisz.d.ts +345 -345
- package/types/sap.m.d.ts +5498 -4814
- package/types/sap.makit.d.ts +123 -123
- package/types/sap.me.d.ts +137 -153
- package/types/sap.ndc.d.ts +29 -29
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +170 -124
- package/types/sap.suite.ui.commons.d.ts +1593 -1612
- package/types/sap.suite.ui.generic.template.d.ts +285 -165
- package/types/sap.suite.ui.microchart.d.ts +742 -508
- package/types/sap.tnt.d.ts +149 -117
- package/types/sap.ui.codeeditor.d.ts +28 -28
- package/types/sap.ui.commons.d.ts +1387 -1387
- package/types/sap.ui.comp.d.ts +1011 -1011
- package/types/sap.ui.core.d.ts +3852 -3973
- package/types/sap.ui.dt.d.ts +2 -4
- package/types/sap.ui.export.d.ts +3 -3
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.generic.app.d.ts +138 -147
- package/types/sap.ui.generic.template.d.ts +2 -4
- package/types/sap.ui.integration.d.ts +118 -112
- package/types/sap.ui.layout.d.ts +593 -586
- package/types/sap.ui.mdc.d.ts +7 -1
- package/types/sap.ui.richtexteditor.d.ts +30 -30
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +53 -53
- package/types/sap.ui.support.d.ts +6 -12
- package/types/sap.ui.table.d.ts +248 -248
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +853 -713
- package/types/sap.ui.ux3.d.ts +785 -793
- package/types/sap.ui.vbm.d.ts +784 -784
- package/types/sap.ui.vk.d.ts +3130 -2251
- package/types/sap.ui.vtm.d.ts +240 -240
- package/types/sap.uiext.inbox.d.ts +222 -222
- package/types/sap.ushell.d.ts +334 -380
- package/types/sap.ushell_abap.d.ts +127 -129
- package/types/sap.uxap.d.ts +384 -220
- package/types/sap.viz.d.ts +1527 -1527
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +188 -222
- package/types/sap.zen.crosstab.d.ts +15 -17
- package/types/sap.zen.dsh.d.ts +176 -211
- package/types/sap.fe.placeholder.d.ts +0 -5
package/types/sap.ca.ui.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.93.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ca {
|
|
@@ -417,17 +417,17 @@ declare namespace sap {
|
|
|
417
417
|
/**
|
|
418
418
|
* Event is fired when the data point is selected/unselected on the chart
|
|
419
419
|
*/
|
|
420
|
-
selectDataPoint?:
|
|
420
|
+
selectDataPoint?: (oEvent: sap.ui.base.Event) => void;
|
|
421
421
|
|
|
422
422
|
/**
|
|
423
423
|
* Event is fired before the popover is opened
|
|
424
424
|
*/
|
|
425
|
-
popoverBeforeOpen?:
|
|
425
|
+
popoverBeforeOpen?: (oEvent: sap.ui.base.Event) => void;
|
|
426
426
|
|
|
427
427
|
/**
|
|
428
428
|
* Event is fired after the popover is opened
|
|
429
429
|
*/
|
|
430
|
-
popoverAfterOpen?:
|
|
430
|
+
popoverAfterOpen?: (oEvent: sap.ui.base.Event) => void;
|
|
431
431
|
}
|
|
432
432
|
|
|
433
433
|
interface $ChartToolBarSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -536,19 +536,19 @@ declare namespace sap {
|
|
|
536
536
|
/**
|
|
537
537
|
* Event fired when a user clicks on the personalization icon
|
|
538
538
|
*/
|
|
539
|
-
personalizationPressed?:
|
|
539
|
+
personalizationPressed?: (oEvent: sap.ui.base.Event) => void;
|
|
540
540
|
|
|
541
541
|
/**
|
|
542
542
|
* Event fired when a user selects an item from the first select box. This event is providing the item selectedKey
|
|
543
543
|
* as parameter
|
|
544
544
|
*/
|
|
545
|
-
firstDimensionKeySelected?:
|
|
545
|
+
firstDimensionKeySelected?: (oEvent: sap.ui.base.Event) => void;
|
|
546
546
|
|
|
547
547
|
/**
|
|
548
548
|
* Event fired when a user selects an item from the second select box. This event is providing the item
|
|
549
549
|
* selectedKey as parameter
|
|
550
550
|
*/
|
|
551
|
-
secondDimensionKeySelected?:
|
|
551
|
+
secondDimensionKeySelected?: (oEvent: sap.ui.base.Event) => void;
|
|
552
552
|
}
|
|
553
553
|
|
|
554
554
|
interface $ClusterListItemSettings extends sap.m.$ListItemBaseSettings {
|
|
@@ -752,7 +752,7 @@ declare namespace sap {
|
|
|
752
752
|
*
|
|
753
753
|
* Event fired when the details button is pressed on the selected Datapoint Popover
|
|
754
754
|
*/
|
|
755
|
-
onDetailsSelected?:
|
|
755
|
+
onDetailsSelected?: (oEvent: sap.ui.base.Event) => void;
|
|
756
756
|
}
|
|
757
757
|
|
|
758
758
|
interface $StackedHorizontalBarChartSettings
|
|
@@ -1011,6 +1011,10 @@ declare namespace sap {
|
|
|
1011
1011
|
*/
|
|
1012
1012
|
FNMetaImpl?: Function
|
|
1013
1013
|
): Function;
|
|
1014
|
+
/**
|
|
1015
|
+
* Returns a metadata object for class sap.ca.ui.charts.BarListItem.
|
|
1016
|
+
*/
|
|
1017
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1014
1018
|
/**
|
|
1015
1019
|
* Gets current value of property {@link #getAxis axis}.
|
|
1016
1020
|
*
|
|
@@ -1023,10 +1027,6 @@ declare namespace sap {
|
|
|
1023
1027
|
* List item label
|
|
1024
1028
|
*/
|
|
1025
1029
|
getGroup(): string;
|
|
1026
|
-
/**
|
|
1027
|
-
* Returns a metadata object for class sap.ca.ui.charts.BarListItem.
|
|
1028
|
-
*/
|
|
1029
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1030
1030
|
/**
|
|
1031
1031
|
* Gets current value of property {@link #getValue value}.
|
|
1032
1032
|
*
|
|
@@ -1122,23 +1122,6 @@ declare namespace sap {
|
|
|
1122
1122
|
*/
|
|
1123
1123
|
drawVerticalLineAt: undefined;
|
|
1124
1124
|
|
|
1125
|
-
/**
|
|
1126
|
-
* @deprecated (since 7.20.0) - This method is deprecated now.
|
|
1127
|
-
*
|
|
1128
|
-
* Adds some content to the aggregation {@link #getContent content}.
|
|
1129
|
-
*/
|
|
1130
|
-
addContent(
|
|
1131
|
-
/**
|
|
1132
|
-
* The content to add; if empty, nothing is inserted
|
|
1133
|
-
*/
|
|
1134
|
-
oContent: sap.ui.core.Control
|
|
1135
|
-
): this;
|
|
1136
|
-
/**
|
|
1137
|
-
* @deprecated (since 7.20.0) - This method is deprecated now.
|
|
1138
|
-
*
|
|
1139
|
-
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
1140
|
-
*/
|
|
1141
|
-
destroyContent(): this;
|
|
1142
1125
|
/**
|
|
1143
1126
|
* Creates a new subclass of class sap.ca.ui.charts.BubbleChart with name `sClassName` and enriches it with
|
|
1144
1127
|
* the information contained in `oClassInfo`.
|
|
@@ -1160,6 +1143,27 @@ declare namespace sap {
|
|
|
1160
1143
|
*/
|
|
1161
1144
|
FNMetaImpl?: Function
|
|
1162
1145
|
): Function;
|
|
1146
|
+
/**
|
|
1147
|
+
* Returns a metadata object for class sap.ca.ui.charts.BubbleChart.
|
|
1148
|
+
*/
|
|
1149
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1150
|
+
/**
|
|
1151
|
+
* @deprecated (since 7.20.0) - This method is deprecated now.
|
|
1152
|
+
*
|
|
1153
|
+
* Adds some content to the aggregation {@link #getContent content}.
|
|
1154
|
+
*/
|
|
1155
|
+
addContent(
|
|
1156
|
+
/**
|
|
1157
|
+
* The content to add; if empty, nothing is inserted
|
|
1158
|
+
*/
|
|
1159
|
+
oContent: sap.ui.core.Control
|
|
1160
|
+
): this;
|
|
1161
|
+
/**
|
|
1162
|
+
* @deprecated (since 7.20.0) - This method is deprecated now.
|
|
1163
|
+
*
|
|
1164
|
+
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
1165
|
+
*/
|
|
1166
|
+
destroyContent(): this;
|
|
1163
1167
|
/**
|
|
1164
1168
|
* @deprecated (since 7.20.0) - This method is deprecated now. Use the plotAreaAxisTooltipFormatter
|
|
1165
1169
|
*
|
|
@@ -1200,10 +1204,6 @@ declare namespace sap {
|
|
|
1200
1204
|
* are supported.
|
|
1201
1205
|
*/
|
|
1202
1206
|
getLabelProperty(): object;
|
|
1203
|
-
/**
|
|
1204
|
-
* Returns a metadata object for class sap.ca.ui.charts.BubbleChart.
|
|
1205
|
-
*/
|
|
1206
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1207
1207
|
/**
|
|
1208
1208
|
* Gets current value of property {@link #getMinimumLabelSize minimumLabelSize}.
|
|
1209
1209
|
*
|
|
@@ -1769,6 +1769,31 @@ declare namespace sap {
|
|
|
1769
1769
|
mSettings?: sap.ca.ui.charts.$ChartSettings
|
|
1770
1770
|
);
|
|
1771
1771
|
|
|
1772
|
+
/**
|
|
1773
|
+
* Creates a new subclass of class sap.ca.ui.charts.Chart with name `sClassName` and enriches it with the
|
|
1774
|
+
* information contained in `oClassInfo`.
|
|
1775
|
+
*
|
|
1776
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
1777
|
+
*/
|
|
1778
|
+
static extend<T extends Record<string, unknown>>(
|
|
1779
|
+
/**
|
|
1780
|
+
* Name of the class being created
|
|
1781
|
+
*/
|
|
1782
|
+
sClassName: string,
|
|
1783
|
+
/**
|
|
1784
|
+
* Object literal with information about the class
|
|
1785
|
+
*/
|
|
1786
|
+
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.charts.Chart>,
|
|
1787
|
+
/**
|
|
1788
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1789
|
+
* used by this class
|
|
1790
|
+
*/
|
|
1791
|
+
FNMetaImpl?: Function
|
|
1792
|
+
): Function;
|
|
1793
|
+
/**
|
|
1794
|
+
* Returns a metadata object for class sap.ca.ui.charts.Chart.
|
|
1795
|
+
*/
|
|
1796
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1772
1797
|
/**
|
|
1773
1798
|
* Creates an id for an Element prefixed with the control id
|
|
1774
1799
|
*/
|
|
@@ -1984,27 +2009,6 @@ declare namespace sap {
|
|
|
1984
2009
|
*/
|
|
1985
2010
|
oListener?: object
|
|
1986
2011
|
): this;
|
|
1987
|
-
/**
|
|
1988
|
-
* Creates a new subclass of class sap.ca.ui.charts.Chart with name `sClassName` and enriches it with the
|
|
1989
|
-
* information contained in `oClassInfo`.
|
|
1990
|
-
*
|
|
1991
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
1992
|
-
*/
|
|
1993
|
-
static extend<T extends Record<string, unknown>>(
|
|
1994
|
-
/**
|
|
1995
|
-
* Name of the class being created
|
|
1996
|
-
*/
|
|
1997
|
-
sClassName: string,
|
|
1998
|
-
/**
|
|
1999
|
-
* Object literal with information about the class
|
|
2000
|
-
*/
|
|
2001
|
-
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.charts.Chart>,
|
|
2002
|
-
/**
|
|
2003
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2004
|
-
* used by this class
|
|
2005
|
-
*/
|
|
2006
|
-
FNMetaImpl?: Function
|
|
2007
|
-
): Function;
|
|
2008
2012
|
/**
|
|
2009
2013
|
* Fires event {@link #event:popoverAfterOpen popoverAfterOpen} to attached listeners.
|
|
2010
2014
|
*/
|
|
@@ -2102,10 +2106,6 @@ declare namespace sap {
|
|
|
2102
2106
|
* Default value is `empty string`.
|
|
2103
2107
|
*/
|
|
2104
2108
|
getLabel(): string;
|
|
2105
|
-
/**
|
|
2106
|
-
* Returns a metadata object for class sap.ca.ui.charts.Chart.
|
|
2107
|
-
*/
|
|
2108
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2109
2109
|
/**
|
|
2110
2110
|
* Gets current value of property {@link #getMinShapeSize minShapeSize}.
|
|
2111
2111
|
*
|
|
@@ -2796,6 +2796,31 @@ declare namespace sap {
|
|
|
2796
2796
|
mSettings?: sap.ca.ui.charts.$ChartToolBarSettings
|
|
2797
2797
|
);
|
|
2798
2798
|
|
|
2799
|
+
/**
|
|
2800
|
+
* Creates a new subclass of class sap.ca.ui.charts.ChartToolBar with name `sClassName` and enriches it
|
|
2801
|
+
* with the information contained in `oClassInfo`.
|
|
2802
|
+
*
|
|
2803
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
2804
|
+
*/
|
|
2805
|
+
static extend<T extends Record<string, unknown>>(
|
|
2806
|
+
/**
|
|
2807
|
+
* Name of the class being created
|
|
2808
|
+
*/
|
|
2809
|
+
sClassName: string,
|
|
2810
|
+
/**
|
|
2811
|
+
* Object literal with information about the class
|
|
2812
|
+
*/
|
|
2813
|
+
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.charts.ChartToolBar>,
|
|
2814
|
+
/**
|
|
2815
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2816
|
+
* used by this class
|
|
2817
|
+
*/
|
|
2818
|
+
FNMetaImpl?: Function
|
|
2819
|
+
): Function;
|
|
2820
|
+
/**
|
|
2821
|
+
* Returns a metadata object for class sap.ca.ui.charts.ChartToolBar.
|
|
2822
|
+
*/
|
|
2823
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2799
2824
|
/**
|
|
2800
2825
|
* Adds some chart to the aggregation {@link #getCharts charts}.
|
|
2801
2826
|
*/
|
|
@@ -2994,27 +3019,6 @@ declare namespace sap {
|
|
|
2994
3019
|
*/
|
|
2995
3020
|
oListener?: object
|
|
2996
3021
|
): this;
|
|
2997
|
-
/**
|
|
2998
|
-
* Creates a new subclass of class sap.ca.ui.charts.ChartToolBar with name `sClassName` and enriches it
|
|
2999
|
-
* with the information contained in `oClassInfo`.
|
|
3000
|
-
*
|
|
3001
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
3002
|
-
*/
|
|
3003
|
-
static extend<T extends Record<string, unknown>>(
|
|
3004
|
-
/**
|
|
3005
|
-
* Name of the class being created
|
|
3006
|
-
*/
|
|
3007
|
-
sClassName: string,
|
|
3008
|
-
/**
|
|
3009
|
-
* Object literal with information about the class
|
|
3010
|
-
*/
|
|
3011
|
-
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.charts.ChartToolBar>,
|
|
3012
|
-
/**
|
|
3013
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3014
|
-
* used by this class
|
|
3015
|
-
*/
|
|
3016
|
-
FNMetaImpl?: Function
|
|
3017
|
-
): Function;
|
|
3018
3022
|
/**
|
|
3019
3023
|
* Fires event {@link #event:firstDimensionKeySelected firstDimensionKeySelected} to attached listeners.
|
|
3020
3024
|
*/
|
|
@@ -3096,10 +3100,6 @@ declare namespace sap {
|
|
|
3096
3100
|
* Default value is `false`.
|
|
3097
3101
|
*/
|
|
3098
3102
|
getFullScreen(): boolean;
|
|
3099
|
-
/**
|
|
3100
|
-
* Returns a metadata object for class sap.ca.ui.charts.ChartToolBar.
|
|
3101
|
-
*/
|
|
3102
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3103
3103
|
/**
|
|
3104
3104
|
* Gets current value of property {@link #getSecondDimensionKeyPath secondDimensionKeyPath}.
|
|
3105
3105
|
*
|
|
@@ -3470,16 +3470,16 @@ declare namespace sap {
|
|
|
3470
3470
|
*/
|
|
3471
3471
|
FNMetaImpl?: Function
|
|
3472
3472
|
): Function;
|
|
3473
|
+
/**
|
|
3474
|
+
* Returns a metadata object for class sap.ca.ui.charts.ClusterListItem.
|
|
3475
|
+
*/
|
|
3476
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3473
3477
|
/**
|
|
3474
3478
|
* Gets current value of property {@link #getItems items}.
|
|
3475
3479
|
*
|
|
3476
3480
|
* Items
|
|
3477
3481
|
*/
|
|
3478
3482
|
getItems(): object;
|
|
3479
|
-
/**
|
|
3480
|
-
* Returns a metadata object for class sap.ca.ui.charts.ClusterListItem.
|
|
3481
|
-
*/
|
|
3482
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3483
3483
|
/**
|
|
3484
3484
|
* Gets current value of property {@link #getTitle title}.
|
|
3485
3485
|
*
|
|
@@ -3553,10 +3553,6 @@ declare namespace sap {
|
|
|
3553
3553
|
mSettings?: sap.ca.ui.charts.$CombinedChartSettings
|
|
3554
3554
|
);
|
|
3555
3555
|
|
|
3556
|
-
/**
|
|
3557
|
-
* Destroys the scrollArea in the aggregation {@link #getScrollArea scrollArea}.
|
|
3558
|
-
*/
|
|
3559
|
-
destroyScrollArea(): this;
|
|
3560
3556
|
/**
|
|
3561
3557
|
* Creates a new subclass of class sap.ca.ui.charts.CombinedChart with name `sClassName` and enriches it
|
|
3562
3558
|
* with the information contained in `oClassInfo`.
|
|
@@ -3578,16 +3574,20 @@ declare namespace sap {
|
|
|
3578
3574
|
*/
|
|
3579
3575
|
FNMetaImpl?: Function
|
|
3580
3576
|
): Function;
|
|
3577
|
+
/**
|
|
3578
|
+
* Returns a metadata object for class sap.ca.ui.charts.CombinedChart.
|
|
3579
|
+
*/
|
|
3580
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3581
|
+
/**
|
|
3582
|
+
* Destroys the scrollArea in the aggregation {@link #getScrollArea scrollArea}.
|
|
3583
|
+
*/
|
|
3584
|
+
destroyScrollArea(): this;
|
|
3581
3585
|
/**
|
|
3582
3586
|
* Gets current value of property {@link #getData data}.
|
|
3583
3587
|
*
|
|
3584
3588
|
* Data of the Chart
|
|
3585
3589
|
*/
|
|
3586
3590
|
getData(): any;
|
|
3587
|
-
/**
|
|
3588
|
-
* Returns a metadata object for class sap.ca.ui.charts.CombinedChart.
|
|
3589
|
-
*/
|
|
3590
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3591
3591
|
/**
|
|
3592
3592
|
* Gets current value of property {@link #getPrimaryAxis primaryAxis}.
|
|
3593
3593
|
*
|
|
@@ -3695,22 +3695,6 @@ declare namespace sap {
|
|
|
3695
3695
|
mSettings?: sap.ca.ui.charts.$HorizontalBarChartSettings
|
|
3696
3696
|
);
|
|
3697
3697
|
|
|
3698
|
-
/**
|
|
3699
|
-
* Destroys the horizontalBarChart in the aggregation {@link #getHorizontalBarChart horizontalBarChart}.
|
|
3700
|
-
*/
|
|
3701
|
-
destroyHorizontalBarChart(): this;
|
|
3702
|
-
/**
|
|
3703
|
-
* @deprecated (since 7.20.0) - This method is deprecated now.
|
|
3704
|
-
*
|
|
3705
|
-
* Destroys the scroll in the aggregation {@link #getScroll scroll}.
|
|
3706
|
-
*/
|
|
3707
|
-
destroyScroll(): this;
|
|
3708
|
-
/**
|
|
3709
|
-
* @deprecated (since 7.20.0) - This method is deprecated now.
|
|
3710
|
-
*
|
|
3711
|
-
* Destroys the verticalArea in the aggregation {@link #getVerticalArea verticalArea}.
|
|
3712
|
-
*/
|
|
3713
|
-
destroyVerticalArea(): this;
|
|
3714
3698
|
/**
|
|
3715
3699
|
* Creates a new subclass of class sap.ca.ui.charts.HorizontalBarChart with name `sClassName` and enriches
|
|
3716
3700
|
* it with the information contained in `oClassInfo`.
|
|
@@ -3732,6 +3716,26 @@ declare namespace sap {
|
|
|
3732
3716
|
*/
|
|
3733
3717
|
FNMetaImpl?: Function
|
|
3734
3718
|
): Function;
|
|
3719
|
+
/**
|
|
3720
|
+
* Returns a metadata object for class sap.ca.ui.charts.HorizontalBarChart.
|
|
3721
|
+
*/
|
|
3722
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3723
|
+
/**
|
|
3724
|
+
* Destroys the horizontalBarChart in the aggregation {@link #getHorizontalBarChart horizontalBarChart}.
|
|
3725
|
+
*/
|
|
3726
|
+
destroyHorizontalBarChart(): this;
|
|
3727
|
+
/**
|
|
3728
|
+
* @deprecated (since 7.20.0) - This method is deprecated now.
|
|
3729
|
+
*
|
|
3730
|
+
* Destroys the scroll in the aggregation {@link #getScroll scroll}.
|
|
3731
|
+
*/
|
|
3732
|
+
destroyScroll(): this;
|
|
3733
|
+
/**
|
|
3734
|
+
* @deprecated (since 7.20.0) - This method is deprecated now.
|
|
3735
|
+
*
|
|
3736
|
+
* Destroys the verticalArea in the aggregation {@link #getVerticalArea verticalArea}.
|
|
3737
|
+
*/
|
|
3738
|
+
destroyVerticalArea(): this;
|
|
3735
3739
|
/**
|
|
3736
3740
|
* Gets current value of property {@link #getBarHeight barHeight}.
|
|
3737
3741
|
*
|
|
@@ -3760,10 +3764,6 @@ declare namespace sap {
|
|
|
3760
3764
|
* The internal chart
|
|
3761
3765
|
*/
|
|
3762
3766
|
getHorizontalBarChart(): sap.viz.ui5.Bar;
|
|
3763
|
-
/**
|
|
3764
|
-
* Returns a metadata object for class sap.ca.ui.charts.HorizontalBarChart.
|
|
3765
|
-
*/
|
|
3766
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3767
3767
|
/**
|
|
3768
3768
|
* @deprecated (since 7.20.0) - This method is deprecated now.
|
|
3769
3769
|
*
|
|
@@ -3896,6 +3896,31 @@ declare namespace sap {
|
|
|
3896
3896
|
mSettings?: sap.ca.ui.charts.$LineChartSettings
|
|
3897
3897
|
);
|
|
3898
3898
|
|
|
3899
|
+
/**
|
|
3900
|
+
* Creates a new subclass of class sap.ca.ui.charts.LineChart with name `sClassName` and enriches it with
|
|
3901
|
+
* the information contained in `oClassInfo`.
|
|
3902
|
+
*
|
|
3903
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ca.ui.charts.Chart.extend}.
|
|
3904
|
+
*/
|
|
3905
|
+
static extend<T extends Record<string, unknown>>(
|
|
3906
|
+
/**
|
|
3907
|
+
* Name of the class being created
|
|
3908
|
+
*/
|
|
3909
|
+
sClassName: string,
|
|
3910
|
+
/**
|
|
3911
|
+
* Object literal with information about the class
|
|
3912
|
+
*/
|
|
3913
|
+
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.charts.LineChart>,
|
|
3914
|
+
/**
|
|
3915
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3916
|
+
* used by this class
|
|
3917
|
+
*/
|
|
3918
|
+
FNMetaImpl?: Function
|
|
3919
|
+
): Function;
|
|
3920
|
+
/**
|
|
3921
|
+
* Returns a metadata object for class sap.ca.ui.charts.LineChart.
|
|
3922
|
+
*/
|
|
3923
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3899
3924
|
/**
|
|
3900
3925
|
* @deprecated (since 1.0.0) - Do not use as it will be removed in a future release.
|
|
3901
3926
|
*
|
|
@@ -3968,34 +3993,13 @@ declare namespace sap {
|
|
|
3968
3993
|
oListener?: object
|
|
3969
3994
|
): this;
|
|
3970
3995
|
/**
|
|
3971
|
-
*
|
|
3972
|
-
* the information contained in `oClassInfo`.
|
|
3996
|
+
* @deprecated (since 1.0.0) - Do not use as it will be removed in a future release.
|
|
3973
3997
|
*
|
|
3974
|
-
*
|
|
3998
|
+
* Fires event {@link #event:onDetailsSelected onDetailsSelected} to attached listeners.
|
|
3975
3999
|
*/
|
|
3976
|
-
|
|
3977
|
-
/**
|
|
3978
|
-
* Name of the class being created
|
|
3979
|
-
*/
|
|
3980
|
-
sClassName: string,
|
|
4000
|
+
fireOnDetailsSelected(
|
|
3981
4001
|
/**
|
|
3982
|
-
*
|
|
3983
|
-
*/
|
|
3984
|
-
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.charts.LineChart>,
|
|
3985
|
-
/**
|
|
3986
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3987
|
-
* used by this class
|
|
3988
|
-
*/
|
|
3989
|
-
FNMetaImpl?: Function
|
|
3990
|
-
): Function;
|
|
3991
|
-
/**
|
|
3992
|
-
* @deprecated (since 1.0.0) - Do not use as it will be removed in a future release.
|
|
3993
|
-
*
|
|
3994
|
-
* Fires event {@link #event:onDetailsSelected onDetailsSelected} to attached listeners.
|
|
3995
|
-
*/
|
|
3996
|
-
fireOnDetailsSelected(
|
|
3997
|
-
/**
|
|
3998
|
-
* Parameters to pass along with the event
|
|
4002
|
+
* Parameters to pass along with the event
|
|
3999
4003
|
*/
|
|
4000
4004
|
mParameters?: object
|
|
4001
4005
|
): this;
|
|
@@ -4077,10 +4081,6 @@ declare namespace sap {
|
|
|
4077
4081
|
* two datasets are created, one for the main chart and one for the scroll context)
|
|
4078
4082
|
*/
|
|
4079
4083
|
getDatasetSettings(): any;
|
|
4080
|
-
/**
|
|
4081
|
-
* Returns a metadata object for class sap.ca.ui.charts.LineChart.
|
|
4082
|
-
*/
|
|
4083
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4084
4084
|
/**
|
|
4085
4085
|
* @deprecated (since 1.0.0) - Please use the 'dataLabelFormatter' property, do not use as it will be removed
|
|
4086
4086
|
* in a future release.
|
|
@@ -4421,25 +4421,6 @@ declare namespace sap {
|
|
|
4421
4421
|
mSettings?: sap.ca.ui.charts.$StackedHorizontalBarChartSettings
|
|
4422
4422
|
);
|
|
4423
4423
|
|
|
4424
|
-
/**
|
|
4425
|
-
* @deprecated (since 1.16.3) - content has been deprecated since 1.16.3. The only visible content in the
|
|
4426
|
-
* chart now is the internalVizChart.
|
|
4427
|
-
*
|
|
4428
|
-
* Adds some content to the aggregation {@link #getContent content}.
|
|
4429
|
-
*/
|
|
4430
|
-
addContent(
|
|
4431
|
-
/**
|
|
4432
|
-
* The content to add; if empty, nothing is inserted
|
|
4433
|
-
*/
|
|
4434
|
-
oContent: sap.ui.core.Control
|
|
4435
|
-
): this;
|
|
4436
|
-
/**
|
|
4437
|
-
* @deprecated (since 1.16.3) - content has been deprecated since 1.16.3. The only visible content in the
|
|
4438
|
-
* chart now is the internalVizChart.
|
|
4439
|
-
*
|
|
4440
|
-
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
4441
|
-
*/
|
|
4442
|
-
destroyContent(): this;
|
|
4443
4424
|
/**
|
|
4444
4425
|
* Creates a new subclass of class sap.ca.ui.charts.StackedHorizontalBarChart with name `sClassName` and
|
|
4445
4426
|
* enriches it with the information contained in `oClassInfo`.
|
|
@@ -4464,6 +4445,29 @@ declare namespace sap {
|
|
|
4464
4445
|
*/
|
|
4465
4446
|
FNMetaImpl?: Function
|
|
4466
4447
|
): Function;
|
|
4448
|
+
/**
|
|
4449
|
+
* Returns a metadata object for class sap.ca.ui.charts.StackedHorizontalBarChart.
|
|
4450
|
+
*/
|
|
4451
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4452
|
+
/**
|
|
4453
|
+
* @deprecated (since 1.16.3) - content has been deprecated since 1.16.3. The only visible content in the
|
|
4454
|
+
* chart now is the internalVizChart.
|
|
4455
|
+
*
|
|
4456
|
+
* Adds some content to the aggregation {@link #getContent content}.
|
|
4457
|
+
*/
|
|
4458
|
+
addContent(
|
|
4459
|
+
/**
|
|
4460
|
+
* The content to add; if empty, nothing is inserted
|
|
4461
|
+
*/
|
|
4462
|
+
oContent: sap.ui.core.Control
|
|
4463
|
+
): this;
|
|
4464
|
+
/**
|
|
4465
|
+
* @deprecated (since 1.16.3) - content has been deprecated since 1.16.3. The only visible content in the
|
|
4466
|
+
* chart now is the internalVizChart.
|
|
4467
|
+
*
|
|
4468
|
+
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
4469
|
+
*/
|
|
4470
|
+
destroyContent(): this;
|
|
4467
4471
|
/**
|
|
4468
4472
|
* @deprecated (since 1.16.3) - content has been deprecated since 1.16.3. The only visible content in the
|
|
4469
4473
|
* chart now is the internalVizChart.
|
|
@@ -4481,10 +4485,6 @@ declare namespace sap {
|
|
|
4481
4485
|
* Default value is `...see text or source`.
|
|
4482
4486
|
*/
|
|
4483
4487
|
getDataLabelFormat(): any;
|
|
4484
|
-
/**
|
|
4485
|
-
* Returns a metadata object for class sap.ca.ui.charts.StackedHorizontalBarChart.
|
|
4486
|
-
*/
|
|
4487
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4488
4488
|
/**
|
|
4489
4489
|
* @deprecated (since 1.16.3) - minTouchSize has been deprecated since 1.16.3. Please use the minShapeSize
|
|
4490
4490
|
* instead.
|
|
@@ -4650,25 +4650,6 @@ declare namespace sap {
|
|
|
4650
4650
|
mSettings?: sap.ca.ui.charts.$StackedVerticalColumnChartSettings
|
|
4651
4651
|
);
|
|
4652
4652
|
|
|
4653
|
-
/**
|
|
4654
|
-
* @deprecated (since 1.16.3) - content has been deprecated since 1.16.3. The only visible content in the
|
|
4655
|
-
* chart now is the internalVizChart.
|
|
4656
|
-
*
|
|
4657
|
-
* Adds some content to the aggregation {@link #getContent content}.
|
|
4658
|
-
*/
|
|
4659
|
-
addContent(
|
|
4660
|
-
/**
|
|
4661
|
-
* The content to add; if empty, nothing is inserted
|
|
4662
|
-
*/
|
|
4663
|
-
oContent: sap.ui.core.Control
|
|
4664
|
-
): this;
|
|
4665
|
-
/**
|
|
4666
|
-
* @deprecated (since 1.16.3) - content has been deprecated since 1.16.3. The only visible content in the
|
|
4667
|
-
* chart now is the internalVizChart.
|
|
4668
|
-
*
|
|
4669
|
-
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
4670
|
-
*/
|
|
4671
|
-
destroyContent(): this;
|
|
4672
4653
|
/**
|
|
4673
4654
|
* Creates a new subclass of class sap.ca.ui.charts.StackedVerticalColumnChart with name `sClassName` and
|
|
4674
4655
|
* enriches it with the information contained in `oClassInfo`.
|
|
@@ -4693,6 +4674,29 @@ declare namespace sap {
|
|
|
4693
4674
|
*/
|
|
4694
4675
|
FNMetaImpl?: Function
|
|
4695
4676
|
): Function;
|
|
4677
|
+
/**
|
|
4678
|
+
* Returns a metadata object for class sap.ca.ui.charts.StackedVerticalColumnChart.
|
|
4679
|
+
*/
|
|
4680
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4681
|
+
/**
|
|
4682
|
+
* @deprecated (since 1.16.3) - content has been deprecated since 1.16.3. The only visible content in the
|
|
4683
|
+
* chart now is the internalVizChart.
|
|
4684
|
+
*
|
|
4685
|
+
* Adds some content to the aggregation {@link #getContent content}.
|
|
4686
|
+
*/
|
|
4687
|
+
addContent(
|
|
4688
|
+
/**
|
|
4689
|
+
* The content to add; if empty, nothing is inserted
|
|
4690
|
+
*/
|
|
4691
|
+
oContent: sap.ui.core.Control
|
|
4692
|
+
): this;
|
|
4693
|
+
/**
|
|
4694
|
+
* @deprecated (since 1.16.3) - content has been deprecated since 1.16.3. The only visible content in the
|
|
4695
|
+
* chart now is the internalVizChart.
|
|
4696
|
+
*
|
|
4697
|
+
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
4698
|
+
*/
|
|
4699
|
+
destroyContent(): this;
|
|
4696
4700
|
/**
|
|
4697
4701
|
* @deprecated (since 1.16.3) - content has been deprecated since 1.16.3. The only visible content in the
|
|
4698
4702
|
* chart now is the internalVizChart.
|
|
@@ -4713,10 +4717,6 @@ declare namespace sap {
|
|
|
4713
4717
|
* Default value is `...see text or source`.
|
|
4714
4718
|
*/
|
|
4715
4719
|
getDataLabelFormat(): any;
|
|
4716
|
-
/**
|
|
4717
|
-
* Returns a metadata object for class sap.ca.ui.charts.StackedVerticalColumnChart.
|
|
4718
|
-
*/
|
|
4719
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4720
4720
|
/**
|
|
4721
4721
|
* @deprecated (since 1.16.3) - minTouchSize has been deprecated since 1.16.3. Please use the minShapeSize
|
|
4722
4722
|
* instead.
|
|
@@ -4884,6 +4884,31 @@ declare namespace sap {
|
|
|
4884
4884
|
mSettings?: sap.ca.ui.charts.$VerticalBarChartSettings
|
|
4885
4885
|
);
|
|
4886
4886
|
|
|
4887
|
+
/**
|
|
4888
|
+
* Creates a new subclass of class sap.ca.ui.charts.VerticalBarChart with name `sClassName` and enriches
|
|
4889
|
+
* it with the information contained in `oClassInfo`.
|
|
4890
|
+
*
|
|
4891
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ca.ui.charts.Chart.extend}.
|
|
4892
|
+
*/
|
|
4893
|
+
static extend<T extends Record<string, unknown>>(
|
|
4894
|
+
/**
|
|
4895
|
+
* Name of the class being created
|
|
4896
|
+
*/
|
|
4897
|
+
sClassName: string,
|
|
4898
|
+
/**
|
|
4899
|
+
* Object literal with information about the class
|
|
4900
|
+
*/
|
|
4901
|
+
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.charts.VerticalBarChart>,
|
|
4902
|
+
/**
|
|
4903
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
4904
|
+
* used by this class
|
|
4905
|
+
*/
|
|
4906
|
+
FNMetaImpl?: Function
|
|
4907
|
+
): Function;
|
|
4908
|
+
/**
|
|
4909
|
+
* Returns a metadata object for class sap.ca.ui.charts.VerticalBarChart.
|
|
4910
|
+
*/
|
|
4911
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4887
4912
|
/**
|
|
4888
4913
|
* @deprecated (since 7.20.0) - This method is deprecated now.
|
|
4889
4914
|
*
|
|
@@ -4919,27 +4944,6 @@ declare namespace sap {
|
|
|
4919
4944
|
* Destroys the verticalBarChart in the aggregation {@link #getVerticalBarChart verticalBarChart}.
|
|
4920
4945
|
*/
|
|
4921
4946
|
destroyVerticalBarChart(): this;
|
|
4922
|
-
/**
|
|
4923
|
-
* Creates a new subclass of class sap.ca.ui.charts.VerticalBarChart with name `sClassName` and enriches
|
|
4924
|
-
* it with the information contained in `oClassInfo`.
|
|
4925
|
-
*
|
|
4926
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ca.ui.charts.Chart.extend}.
|
|
4927
|
-
*/
|
|
4928
|
-
static extend<T extends Record<string, unknown>>(
|
|
4929
|
-
/**
|
|
4930
|
-
* Name of the class being created
|
|
4931
|
-
*/
|
|
4932
|
-
sClassName: string,
|
|
4933
|
-
/**
|
|
4934
|
-
* Object literal with information about the class
|
|
4935
|
-
*/
|
|
4936
|
-
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.charts.VerticalBarChart>,
|
|
4937
|
-
/**
|
|
4938
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
4939
|
-
* used by this class
|
|
4940
|
-
*/
|
|
4941
|
-
FNMetaImpl?: Function
|
|
4942
|
-
): Function;
|
|
4943
4947
|
/**
|
|
4944
4948
|
* Gets current value of property {@link #getBarWidth barWidth}.
|
|
4945
4949
|
*
|
|
@@ -4970,10 +4974,6 @@ declare namespace sap {
|
|
|
4970
4974
|
* The data to be used by the chart
|
|
4971
4975
|
*/
|
|
4972
4976
|
getData(): object;
|
|
4973
|
-
/**
|
|
4974
|
-
* Returns a metadata object for class sap.ca.ui.charts.VerticalBarChart.
|
|
4975
|
-
*/
|
|
4976
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4977
4977
|
/**
|
|
4978
4978
|
* @deprecated (since 7.20.0) - This method is deprecated now.
|
|
4979
4979
|
*
|
|
@@ -5406,15 +5406,6 @@ declare namespace sap {
|
|
|
5406
5406
|
*/
|
|
5407
5407
|
constructor();
|
|
5408
5408
|
|
|
5409
|
-
/**
|
|
5410
|
-
* Format an amount according to the given format options.
|
|
5411
|
-
*/
|
|
5412
|
-
format(
|
|
5413
|
-
/**
|
|
5414
|
-
* the value to format
|
|
5415
|
-
*/
|
|
5416
|
-
oValue: number
|
|
5417
|
-
): string;
|
|
5418
5409
|
/**
|
|
5419
5410
|
* Convenience static function Format an amount in short Style. Number of decimals for values not "shortified"
|
|
5420
5411
|
* will be set : Using Decimals if specified else using the standard number of decimal for the given currency
|
|
@@ -5478,19 +5469,6 @@ declare namespace sap {
|
|
|
5478
5469
|
|
|
5479
5470
|
decimals: string
|
|
5480
5471
|
): string;
|
|
5481
|
-
/**
|
|
5482
|
-
* Format an amount with the currency code according to the cldr currency format.
|
|
5483
|
-
*/
|
|
5484
|
-
formatWithCurrency(
|
|
5485
|
-
/**
|
|
5486
|
-
* the string containing a formatted value
|
|
5487
|
-
*/
|
|
5488
|
-
sValue: string,
|
|
5489
|
-
/**
|
|
5490
|
-
* the string containing the currency code
|
|
5491
|
-
*/
|
|
5492
|
-
sCurrencyCode: string
|
|
5493
|
-
): string;
|
|
5494
5472
|
/**
|
|
5495
5473
|
* Get a instance of the AmountFormat, which can be used for formatting.
|
|
5496
5474
|
*/
|
|
@@ -5510,6 +5488,28 @@ declare namespace sap {
|
|
|
5510
5488
|
*/
|
|
5511
5489
|
oLocale?: sap.ui.core.Locale
|
|
5512
5490
|
): sap.ca.ui.model.format.AmountFormat;
|
|
5491
|
+
/**
|
|
5492
|
+
* Format an amount according to the given format options.
|
|
5493
|
+
*/
|
|
5494
|
+
format(
|
|
5495
|
+
/**
|
|
5496
|
+
* the value to format
|
|
5497
|
+
*/
|
|
5498
|
+
oValue: number
|
|
5499
|
+
): string;
|
|
5500
|
+
/**
|
|
5501
|
+
* Format an amount with the currency code according to the cldr currency format.
|
|
5502
|
+
*/
|
|
5503
|
+
formatWithCurrency(
|
|
5504
|
+
/**
|
|
5505
|
+
* the string containing a formatted value
|
|
5506
|
+
*/
|
|
5507
|
+
sValue: string,
|
|
5508
|
+
/**
|
|
5509
|
+
* the string containing the currency code
|
|
5510
|
+
*/
|
|
5511
|
+
sCurrencyCode: string
|
|
5512
|
+
): string;
|
|
5513
5513
|
/**
|
|
5514
5514
|
* Parse a string which is formatted according to the given format options.
|
|
5515
5515
|
*/
|
|
@@ -5547,22 +5547,6 @@ declare namespace sap {
|
|
|
5547
5547
|
*/
|
|
5548
5548
|
constructor();
|
|
5549
5549
|
|
|
5550
|
-
/**
|
|
5551
|
-
* Format a date according to the given format options.
|
|
5552
|
-
*
|
|
5553
|
-
* If oValue contains a JSON date ("/Date(milliseconds)/"), it will be converted to a Date before to be
|
|
5554
|
-
* formatted.
|
|
5555
|
-
*/
|
|
5556
|
-
format(
|
|
5557
|
-
/**
|
|
5558
|
-
* the vale to format
|
|
5559
|
-
*/
|
|
5560
|
-
oValue: Date | string,
|
|
5561
|
-
/**
|
|
5562
|
-
* whether to use UTC
|
|
5563
|
-
*/
|
|
5564
|
-
bUTC: boolean
|
|
5565
|
-
): string;
|
|
5566
5550
|
/**
|
|
5567
5551
|
* Get a date instance of the DateFormat, which can be used for formatting.
|
|
5568
5552
|
*/
|
|
@@ -5632,6 +5616,22 @@ declare namespace sap {
|
|
|
5632
5616
|
*/
|
|
5633
5617
|
oLocale?: sap.ui.core.Locale
|
|
5634
5618
|
): sap.ca.ui.model.format.DateFormat;
|
|
5619
|
+
/**
|
|
5620
|
+
* Format a date according to the given format options.
|
|
5621
|
+
*
|
|
5622
|
+
* If oValue contains a JSON date ("/Date(milliseconds)/"), it will be converted to a Date before to be
|
|
5623
|
+
* formatted.
|
|
5624
|
+
*/
|
|
5625
|
+
format(
|
|
5626
|
+
/**
|
|
5627
|
+
* the vale to format
|
|
5628
|
+
*/
|
|
5629
|
+
oValue: Date | string,
|
|
5630
|
+
/**
|
|
5631
|
+
* whether to use UTC
|
|
5632
|
+
*/
|
|
5633
|
+
bUTC: boolean
|
|
5634
|
+
): string;
|
|
5635
5635
|
/**
|
|
5636
5636
|
* Parse a string which is formatted according to the given format options. The strings specific to the
|
|
5637
5637
|
* daysAgo style will not be well-parsed.
|
|
@@ -5658,15 +5658,6 @@ declare namespace sap {
|
|
|
5658
5658
|
*/
|
|
5659
5659
|
constructor();
|
|
5660
5660
|
|
|
5661
|
-
/**
|
|
5662
|
-
* Format according to the given format options.
|
|
5663
|
-
*/
|
|
5664
|
-
format(
|
|
5665
|
-
/**
|
|
5666
|
-
* the value to format
|
|
5667
|
-
*/
|
|
5668
|
-
oValue: sap.ca.ui.model.type.FileSize
|
|
5669
|
-
): string;
|
|
5670
5661
|
/**
|
|
5671
5662
|
* Get a instance of the FileSizeFormat, which can be used for formatting.
|
|
5672
5663
|
*/
|
|
@@ -5685,6 +5676,15 @@ declare namespace sap {
|
|
|
5685
5676
|
*/
|
|
5686
5677
|
oLocale?: sap.ui.core.Locale
|
|
5687
5678
|
): sap.ca.ui.model.format.FileSizeFormat;
|
|
5679
|
+
/**
|
|
5680
|
+
* Format according to the given format options.
|
|
5681
|
+
*/
|
|
5682
|
+
format(
|
|
5683
|
+
/**
|
|
5684
|
+
* the value to format
|
|
5685
|
+
*/
|
|
5686
|
+
oValue: sap.ca.ui.model.type.FileSize
|
|
5687
|
+
): string;
|
|
5688
5688
|
/**
|
|
5689
5689
|
* Parse a string which is formatted according to the given format options.
|
|
5690
5690
|
*/
|
|
@@ -5712,17 +5712,8 @@ declare namespace sap {
|
|
|
5712
5712
|
constructor();
|
|
5713
5713
|
|
|
5714
5714
|
/**
|
|
5715
|
-
* Format
|
|
5716
|
-
|
|
5717
|
-
format(
|
|
5718
|
-
/**
|
|
5719
|
-
* the value to format
|
|
5720
|
-
*/
|
|
5721
|
-
oValue: object
|
|
5722
|
-
): string;
|
|
5723
|
-
/**
|
|
5724
|
-
* Convenience static function Format an quantity in short Style. Number of decimals will be set : Using
|
|
5725
|
-
* Decimals if specified else using the standard number of decimal for the given unit
|
|
5715
|
+
* Convenience static function Format an quantity in short Style. Number of decimals will be set : Using
|
|
5716
|
+
* Decimals if specified else using the standard number of decimal for the given unit
|
|
5726
5717
|
*/
|
|
5727
5718
|
static FormatQuantityShort(
|
|
5728
5719
|
/**
|
|
@@ -5767,6 +5758,15 @@ declare namespace sap {
|
|
|
5767
5758
|
*/
|
|
5768
5759
|
oLocale?: sap.ui.core.Locale
|
|
5769
5760
|
): sap.ca.ui.model.format.QuantityFormat;
|
|
5761
|
+
/**
|
|
5762
|
+
* Format a value according to the given format options.
|
|
5763
|
+
*/
|
|
5764
|
+
format(
|
|
5765
|
+
/**
|
|
5766
|
+
* the value to format
|
|
5767
|
+
*/
|
|
5768
|
+
oValue: object
|
|
5769
|
+
): string;
|
|
5770
5770
|
/**
|
|
5771
5771
|
* Parse a string which is formatted according to the given format options.
|
|
5772
5772
|
*/
|
|
@@ -5850,9 +5850,7 @@ declare namespace sap {
|
|
|
5850
5850
|
* Returns a metadata object for class sap.ca.ui.model.type.Date.
|
|
5851
5851
|
*/
|
|
5852
5852
|
static getMetadata(): sap.ui.base.Metadata;
|
|
5853
|
-
|
|
5854
|
-
*
|
|
5855
|
-
*/
|
|
5853
|
+
|
|
5856
5854
|
getOutputPattern(): void;
|
|
5857
5855
|
}
|
|
5858
5856
|
/**
|
|
@@ -6171,29 +6169,29 @@ declare namespace sap {
|
|
|
6171
6169
|
/**
|
|
6172
6170
|
* Indicates that the user wishes to view the picture
|
|
6173
6171
|
*/
|
|
6174
|
-
show?:
|
|
6172
|
+
show?: (oEvent: sap.ui.base.Event) => void;
|
|
6175
6173
|
|
|
6176
6174
|
/**
|
|
6177
6175
|
* Indicates that the image upload failed, only used as a fallback when FileReader is not supported by the
|
|
6178
6176
|
* browser
|
|
6179
6177
|
*/
|
|
6180
|
-
pictureAdded?:
|
|
6178
|
+
pictureAdded?: (oEvent: sap.ui.base.Event) => void;
|
|
6181
6179
|
|
|
6182
6180
|
/**
|
|
6183
6181
|
* Indicates that the limit number of pictures has been reached
|
|
6184
6182
|
*/
|
|
6185
|
-
maxPictureLimitReached?:
|
|
6183
|
+
maxPictureLimitReached?: (oEvent: sap.ui.base.Event) => void;
|
|
6186
6184
|
|
|
6187
6185
|
/**
|
|
6188
6186
|
* Indicates that the image upload failed, only used as a fallback when FileReader is not supported by the
|
|
6189
6187
|
* browser
|
|
6190
6188
|
*/
|
|
6191
|
-
imageUploadFailed?:
|
|
6189
|
+
imageUploadFailed?: (oEvent: sap.ui.base.Event) => void;
|
|
6192
6190
|
|
|
6193
6191
|
/**
|
|
6194
6192
|
* Image upload failed, only supports image format files
|
|
6195
6193
|
*/
|
|
6196
|
-
fileNotSupported?:
|
|
6194
|
+
fileNotSupported?: (oEvent: sap.ui.base.Event) => void;
|
|
6197
6195
|
}
|
|
6198
6196
|
|
|
6199
6197
|
interface $CustomerContextSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -6258,7 +6256,7 @@ declare namespace sap {
|
|
|
6258
6256
|
* Fired when a customer is selected in the list. The fired customer can be empty in case the user press
|
|
6259
6257
|
* the cancel button while the Customer Context has been open using select()
|
|
6260
6258
|
*/
|
|
6261
|
-
customerSelected?:
|
|
6259
|
+
customerSelected?: (oEvent: sap.ui.base.Event) => void;
|
|
6262
6260
|
}
|
|
6263
6261
|
|
|
6264
6262
|
interface $CustomerControlListItemSettings
|
|
@@ -6481,33 +6479,33 @@ declare namespace sap {
|
|
|
6481
6479
|
* Fired when a file deletion event occurs typically by clicking a the delete icon. The file descriptor
|
|
6482
6480
|
* json for the file to be deleted is passed in the event data
|
|
6483
6481
|
*/
|
|
6484
|
-
deleteFile?:
|
|
6482
|
+
deleteFile?: (oEvent: sap.ui.base.Event) => void;
|
|
6485
6483
|
|
|
6486
6484
|
/**
|
|
6487
6485
|
* Fired when a file is renamed. The file descripter json for the file to be renamed is passed in the event
|
|
6488
6486
|
* data and also a property, newFilename, that contains the new filename.
|
|
6489
6487
|
*/
|
|
6490
|
-
renameFile?:
|
|
6488
|
+
renameFile?: (oEvent: sap.ui.base.Event) => void;
|
|
6491
6489
|
|
|
6492
6490
|
/**
|
|
6493
6491
|
* Fired when a file is uploaded and the response comes back from service. The service response for the
|
|
6494
6492
|
* file to be added to the list is passed in the event data and the consumer must format it in the correct
|
|
6495
6493
|
* json structure and pass it back to the control using commitUploadFile method.
|
|
6496
6494
|
*/
|
|
6497
|
-
uploadFile?:
|
|
6495
|
+
uploadFile?: (oEvent: sap.ui.base.Event) => void;
|
|
6498
6496
|
|
|
6499
6497
|
/**
|
|
6500
6498
|
* Fired when a file fails to upload. The error code and response data is passed in this event. The consumer
|
|
6501
6499
|
* should handle the error by showing the appropriate message.
|
|
6502
6500
|
*/
|
|
6503
|
-
fileUploadFailed?:
|
|
6501
|
+
fileUploadFailed?: (oEvent: sap.ui.base.Event) => void;
|
|
6504
6502
|
|
|
6505
6503
|
/**
|
|
6506
6504
|
* Fired just before the control is about to make a file upload request. The data passed is the file object
|
|
6507
6505
|
* selected by the user. You may handle this event to attach custom headers for example if your service
|
|
6508
6506
|
* implementation requires it.
|
|
6509
6507
|
*/
|
|
6510
|
-
beforeUploadFile?:
|
|
6508
|
+
beforeUploadFile?: (oEvent: sap.ui.base.Event) => void;
|
|
6511
6509
|
|
|
6512
6510
|
/**
|
|
6513
6511
|
* @deprecated (since 1.21.1) - This method is deprecated now. The rename or delete event is enough and
|
|
@@ -6516,14 +6514,14 @@ declare namespace sap {
|
|
|
6516
6514
|
* Fired when the save button is clicked. The consumer should handle the event and save all the file renames
|
|
6517
6515
|
* to backend.
|
|
6518
6516
|
*/
|
|
6519
|
-
saveClicked?:
|
|
6517
|
+
saveClicked?: (oEvent: sap.ui.base.Event) => void;
|
|
6520
6518
|
|
|
6521
6519
|
/**
|
|
6522
6520
|
* @deprecated (since 1.21.1) - This method is deprecated now
|
|
6523
6521
|
*
|
|
6524
6522
|
* Fired when the cancel button is clicked. The consumer may handle the event if required.
|
|
6525
6523
|
*/
|
|
6526
|
-
cancelClicked?:
|
|
6524
|
+
cancelClicked?: (oEvent: sap.ui.base.Event) => void;
|
|
6527
6525
|
}
|
|
6528
6526
|
|
|
6529
6527
|
interface $GrowingTileContainerSettings
|
|
@@ -6560,12 +6558,12 @@ declare namespace sap {
|
|
|
6560
6558
|
/**
|
|
6561
6559
|
* Thrown when user selects an item
|
|
6562
6560
|
*/
|
|
6563
|
-
select?:
|
|
6561
|
+
select?: (oEvent: sap.ui.base.Event) => void;
|
|
6564
6562
|
|
|
6565
6563
|
/**
|
|
6566
6564
|
* Thrown when user clicks cancel
|
|
6567
6565
|
*/
|
|
6568
|
-
cancel?:
|
|
6566
|
+
cancel?: (oEvent: sap.ui.base.Event) => void;
|
|
6569
6567
|
}
|
|
6570
6568
|
|
|
6571
6569
|
interface $HierarchicalSelectDialogItemSettings
|
|
@@ -6642,7 +6640,7 @@ declare namespace sap {
|
|
|
6642
6640
|
/**
|
|
6643
6641
|
* Event when a link is pressed
|
|
6644
6642
|
*/
|
|
6645
|
-
linkPress?:
|
|
6643
|
+
linkPress?: (oEvent: sap.ui.base.Event) => void;
|
|
6646
6644
|
}
|
|
6647
6645
|
|
|
6648
6646
|
interface $InPlaceEditSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -6668,7 +6666,7 @@ declare namespace sap {
|
|
|
6668
6666
|
* Event is fired when the text in the field has changed AND the focus leaves the InPlaceEdit or the Enter
|
|
6669
6667
|
* key is pressed.
|
|
6670
6668
|
*/
|
|
6671
|
-
change?:
|
|
6669
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
6672
6670
|
}
|
|
6673
6671
|
|
|
6674
6672
|
interface $NotesSettings extends sap.m.$ListSettings {
|
|
@@ -6694,7 +6692,7 @@ declare namespace sap {
|
|
|
6694
6692
|
*
|
|
6695
6693
|
* fnListenerFunction or [fnListenerFunction, oListenerObject] or [oData, fnListenerFunction, oListenerObject]
|
|
6696
6694
|
*/
|
|
6697
|
-
addNote?:
|
|
6695
|
+
addNote?: (oEvent: sap.ui.base.Event) => void;
|
|
6698
6696
|
}
|
|
6699
6697
|
|
|
6700
6698
|
interface $OverflowContainerSettings
|
|
@@ -6787,7 +6785,7 @@ declare namespace sap {
|
|
|
6787
6785
|
/**
|
|
6788
6786
|
* This event is fired when the end user clicks on the contact link.
|
|
6789
6787
|
*/
|
|
6790
|
-
contactPress?:
|
|
6788
|
+
contactPress?: (oEvent: sap.ui.base.Event) => void;
|
|
6791
6789
|
}
|
|
6792
6790
|
|
|
6793
6791
|
interface $PictureItemSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -6827,7 +6825,7 @@ declare namespace sap {
|
|
|
6827
6825
|
/**
|
|
6828
6826
|
* Fired when the Image is really loaded
|
|
6829
6827
|
*/
|
|
6830
|
-
loaded?:
|
|
6828
|
+
loaded?: (oEvent: sap.ui.base.Event) => void;
|
|
6831
6829
|
}
|
|
6832
6830
|
|
|
6833
6831
|
interface $PictureTileSettings extends sap.m.$CustomTileSettings {
|
|
@@ -6853,7 +6851,7 @@ declare namespace sap {
|
|
|
6853
6851
|
/**
|
|
6854
6852
|
* Fired when the user deletes a picture
|
|
6855
6853
|
*/
|
|
6856
|
-
pictureDelete?:
|
|
6854
|
+
pictureDelete?: (oEvent: sap.ui.base.Event) => void;
|
|
6857
6855
|
}
|
|
6858
6856
|
|
|
6859
6857
|
interface $PictureViewerSettings extends sap.m.$TileContainerSettings {
|
|
@@ -6879,7 +6877,7 @@ declare namespace sap {
|
|
|
6879
6877
|
/**
|
|
6880
6878
|
* Thrown when user delete an image
|
|
6881
6879
|
*/
|
|
6882
|
-
pictureDeleted?:
|
|
6880
|
+
pictureDeleted?: (oEvent: sap.ui.base.Event) => void;
|
|
6883
6881
|
}
|
|
6884
6882
|
|
|
6885
6883
|
interface $PictureViewerItemSettings
|
|
@@ -6957,6 +6955,31 @@ declare namespace sap {
|
|
|
6957
6955
|
mSettings?: sap.ca.ui.$AddPictureSettings
|
|
6958
6956
|
);
|
|
6959
6957
|
|
|
6958
|
+
/**
|
|
6959
|
+
* Creates a new subclass of class sap.ca.ui.AddPicture with name `sClassName` and enriches it with the
|
|
6960
|
+
* information contained in `oClassInfo`.
|
|
6961
|
+
*
|
|
6962
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
6963
|
+
*/
|
|
6964
|
+
static extend<T extends Record<string, unknown>>(
|
|
6965
|
+
/**
|
|
6966
|
+
* Name of the class being created
|
|
6967
|
+
*/
|
|
6968
|
+
sClassName: string,
|
|
6969
|
+
/**
|
|
6970
|
+
* Object literal with information about the class
|
|
6971
|
+
*/
|
|
6972
|
+
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.AddPicture>,
|
|
6973
|
+
/**
|
|
6974
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
6975
|
+
* used by this class
|
|
6976
|
+
*/
|
|
6977
|
+
FNMetaImpl?: Function
|
|
6978
|
+
): Function;
|
|
6979
|
+
/**
|
|
6980
|
+
* Returns a metadata object for class sap.ca.ui.AddPicture.
|
|
6981
|
+
*/
|
|
6982
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
6960
6983
|
/**
|
|
6961
6984
|
* Adds some picture to the aggregation {@link #getPictures pictures}.
|
|
6962
6985
|
*/
|
|
@@ -7275,27 +7298,6 @@ declare namespace sap {
|
|
|
7275
7298
|
*/
|
|
7276
7299
|
oListener?: object
|
|
7277
7300
|
): this;
|
|
7278
|
-
/**
|
|
7279
|
-
* Creates a new subclass of class sap.ca.ui.AddPicture with name `sClassName` and enriches it with the
|
|
7280
|
-
* information contained in `oClassInfo`.
|
|
7281
|
-
*
|
|
7282
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
7283
|
-
*/
|
|
7284
|
-
static extend<T extends Record<string, unknown>>(
|
|
7285
|
-
/**
|
|
7286
|
-
* Name of the class being created
|
|
7287
|
-
*/
|
|
7288
|
-
sClassName: string,
|
|
7289
|
-
/**
|
|
7290
|
-
* Object literal with information about the class
|
|
7291
|
-
*/
|
|
7292
|
-
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.AddPicture>,
|
|
7293
|
-
/**
|
|
7294
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
7295
|
-
* used by this class
|
|
7296
|
-
*/
|
|
7297
|
-
FNMetaImpl?: Function
|
|
7298
|
-
): Function;
|
|
7299
7301
|
/**
|
|
7300
7302
|
* Fires event {@link #event:fileNotSupported fileNotSupported} to attached listeners.
|
|
7301
7303
|
*/
|
|
@@ -7387,10 +7389,6 @@ declare namespace sap {
|
|
|
7387
7389
|
* Default value is `10`.
|
|
7388
7390
|
*/
|
|
7389
7391
|
getMaxPictureNumber(): int;
|
|
7390
|
-
/**
|
|
7391
|
-
* Returns a metadata object for class sap.ca.ui.AddPicture.
|
|
7392
|
-
*/
|
|
7393
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
7394
7392
|
/**
|
|
7395
7393
|
* Gets current value of property {@link #getPictureAlign pictureAlign}.
|
|
7396
7394
|
*
|
|
@@ -7640,6 +7638,31 @@ declare namespace sap {
|
|
|
7640
7638
|
mSettings?: sap.ca.ui.$CustomerContextSettings
|
|
7641
7639
|
);
|
|
7642
7640
|
|
|
7641
|
+
/**
|
|
7642
|
+
* Creates a new subclass of class sap.ca.ui.CustomerContext with name `sClassName` and enriches it with
|
|
7643
|
+
* the information contained in `oClassInfo`.
|
|
7644
|
+
*
|
|
7645
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
7646
|
+
*/
|
|
7647
|
+
static extend<T extends Record<string, unknown>>(
|
|
7648
|
+
/**
|
|
7649
|
+
* Name of the class being created
|
|
7650
|
+
*/
|
|
7651
|
+
sClassName: string,
|
|
7652
|
+
/**
|
|
7653
|
+
* Object literal with information about the class
|
|
7654
|
+
*/
|
|
7655
|
+
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.CustomerContext>,
|
|
7656
|
+
/**
|
|
7657
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
7658
|
+
* used by this class
|
|
7659
|
+
*/
|
|
7660
|
+
FNMetaImpl?: Function
|
|
7661
|
+
): Function;
|
|
7662
|
+
/**
|
|
7663
|
+
* Returns a metadata object for class sap.ca.ui.CustomerContext.
|
|
7664
|
+
*/
|
|
7665
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
7643
7666
|
/**
|
|
7644
7667
|
* Attaches event handler `fnFunction` to the {@link #event:customerSelected customerSelected} event of
|
|
7645
7668
|
* this `sap.ca.ui.CustomerContext`.
|
|
@@ -7705,27 +7728,6 @@ declare namespace sap {
|
|
|
7705
7728
|
*/
|
|
7706
7729
|
oListener?: object
|
|
7707
7730
|
): this;
|
|
7708
|
-
/**
|
|
7709
|
-
* Creates a new subclass of class sap.ca.ui.CustomerContext with name `sClassName` and enriches it with
|
|
7710
|
-
* the information contained in `oClassInfo`.
|
|
7711
|
-
*
|
|
7712
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
7713
|
-
*/
|
|
7714
|
-
static extend<T extends Record<string, unknown>>(
|
|
7715
|
-
/**
|
|
7716
|
-
* Name of the class being created
|
|
7717
|
-
*/
|
|
7718
|
-
sClassName: string,
|
|
7719
|
-
/**
|
|
7720
|
-
* Object literal with information about the class
|
|
7721
|
-
*/
|
|
7722
|
-
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.CustomerContext>,
|
|
7723
|
-
/**
|
|
7724
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
7725
|
-
* used by this class
|
|
7726
|
-
*/
|
|
7727
|
-
FNMetaImpl?: Function
|
|
7728
|
-
): Function;
|
|
7729
7731
|
/**
|
|
7730
7732
|
* Fires event {@link #event:customerSelected customerSelected} to attached listeners.
|
|
7731
7733
|
*/
|
|
@@ -7773,10 +7775,6 @@ declare namespace sap {
|
|
|
7773
7775
|
* Default value is `'DivisionName'`.
|
|
7774
7776
|
*/
|
|
7775
7777
|
getDivisionNameProperty(): string;
|
|
7776
|
-
/**
|
|
7777
|
-
* Returns a metadata object for class sap.ca.ui.CustomerContext.
|
|
7778
|
-
*/
|
|
7779
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
7780
7778
|
/**
|
|
7781
7779
|
* Gets current value of property {@link #getPath path}.
|
|
7782
7780
|
*
|
|
@@ -8014,6 +8012,10 @@ declare namespace sap {
|
|
|
8014
8012
|
*/
|
|
8015
8013
|
FNMetaImpl?: Function
|
|
8016
8014
|
): Function;
|
|
8015
|
+
/**
|
|
8016
|
+
* Returns a metadata object for class sap.ca.ui.CustomerControlListItem.
|
|
8017
|
+
*/
|
|
8018
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
8017
8019
|
/**
|
|
8018
8020
|
* Gets current value of property {@link #getCustomerID customerID}.
|
|
8019
8021
|
*
|
|
@@ -8046,10 +8048,6 @@ declare namespace sap {
|
|
|
8046
8048
|
* Default value is `'DivisionName'`.
|
|
8047
8049
|
*/
|
|
8048
8050
|
getDivisionName(): string;
|
|
8049
|
-
/**
|
|
8050
|
-
* Returns a metadata object for class sap.ca.ui.CustomerControlListItem.
|
|
8051
|
-
*/
|
|
8052
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
8053
8051
|
/**
|
|
8054
8052
|
* Gets current value of property {@link #getSalesOrganizationName salesOrganizationName}.
|
|
8055
8053
|
*
|
|
@@ -8217,6 +8215,10 @@ declare namespace sap {
|
|
|
8217
8215
|
*/
|
|
8218
8216
|
FNMetaImpl?: Function
|
|
8219
8217
|
): Function;
|
|
8218
|
+
/**
|
|
8219
|
+
* Returns a metadata object for class sap.ca.ui.DatePicker.
|
|
8220
|
+
*/
|
|
8221
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
8220
8222
|
/**
|
|
8221
8223
|
* returns selected date as a Date object
|
|
8222
8224
|
*/
|
|
@@ -8236,10 +8238,6 @@ declare namespace sap {
|
|
|
8236
8238
|
* Default value is `0`.
|
|
8237
8239
|
*/
|
|
8238
8240
|
getFirstDayOffset(): int;
|
|
8239
|
-
/**
|
|
8240
|
-
* Returns a metadata object for class sap.ca.ui.DatePicker.
|
|
8241
|
-
*/
|
|
8242
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
8243
8241
|
/**
|
|
8244
8242
|
* Sets a new value for property {@link #getDateValue dateValue}.
|
|
8245
8243
|
*
|
|
@@ -8330,6 +8328,10 @@ declare namespace sap {
|
|
|
8330
8328
|
*/
|
|
8331
8329
|
FNMetaImpl?: Function
|
|
8332
8330
|
): Function;
|
|
8331
|
+
/**
|
|
8332
|
+
* Returns a metadata object for class sap.ca.ui.ExpansibleFeedListItem.
|
|
8333
|
+
*/
|
|
8334
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
8333
8335
|
/**
|
|
8334
8336
|
* Gets current value of property {@link #getMaxLines maxLines}.
|
|
8335
8337
|
*
|
|
@@ -8338,10 +8340,6 @@ declare namespace sap {
|
|
|
8338
8340
|
* Default value is `5`.
|
|
8339
8341
|
*/
|
|
8340
8342
|
getMaxLines(): int;
|
|
8341
|
-
/**
|
|
8342
|
-
* Returns a metadata object for class sap.ca.ui.ExpansibleFeedListItem.
|
|
8343
|
-
*/
|
|
8344
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
8345
8343
|
/**
|
|
8346
8344
|
* Sets a new value for property {@link #getMaxLines maxLines}.
|
|
8347
8345
|
*
|
|
@@ -8396,6 +8394,31 @@ declare namespace sap {
|
|
|
8396
8394
|
mSettings?: sap.ca.ui.$FileUploadSettings
|
|
8397
8395
|
);
|
|
8398
8396
|
|
|
8397
|
+
/**
|
|
8398
|
+
* Creates a new subclass of class sap.ca.ui.FileUpload with name `sClassName` and enriches it with the
|
|
8399
|
+
* information contained in `oClassInfo`.
|
|
8400
|
+
*
|
|
8401
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
8402
|
+
*/
|
|
8403
|
+
static extend<T extends Record<string, unknown>>(
|
|
8404
|
+
/**
|
|
8405
|
+
* Name of the class being created
|
|
8406
|
+
*/
|
|
8407
|
+
sClassName: string,
|
|
8408
|
+
/**
|
|
8409
|
+
* Object literal with information about the class
|
|
8410
|
+
*/
|
|
8411
|
+
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.FileUpload>,
|
|
8412
|
+
/**
|
|
8413
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8414
|
+
* used by this class
|
|
8415
|
+
*/
|
|
8416
|
+
FNMetaImpl?: Function
|
|
8417
|
+
): Function;
|
|
8418
|
+
/**
|
|
8419
|
+
* Returns a metadata object for class sap.ca.ui.FileUpload.
|
|
8420
|
+
*/
|
|
8421
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
8399
8422
|
/**
|
|
8400
8423
|
* Attaches event handler `fnFunction` to the {@link #event:beforeUploadFile beforeUploadFile} event of
|
|
8401
8424
|
* this `sap.ca.ui.FileUpload`.
|
|
@@ -8840,27 +8863,6 @@ declare namespace sap {
|
|
|
8840
8863
|
*/
|
|
8841
8864
|
oListener?: object
|
|
8842
8865
|
): this;
|
|
8843
|
-
/**
|
|
8844
|
-
* Creates a new subclass of class sap.ca.ui.FileUpload with name `sClassName` and enriches it with the
|
|
8845
|
-
* information contained in `oClassInfo`.
|
|
8846
|
-
*
|
|
8847
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
8848
|
-
*/
|
|
8849
|
-
static extend<T extends Record<string, unknown>>(
|
|
8850
|
-
/**
|
|
8851
|
-
* Name of the class being created
|
|
8852
|
-
*/
|
|
8853
|
-
sClassName: string,
|
|
8854
|
-
/**
|
|
8855
|
-
* Object literal with information about the class
|
|
8856
|
-
*/
|
|
8857
|
-
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.FileUpload>,
|
|
8858
|
-
/**
|
|
8859
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8860
|
-
* used by this class
|
|
8861
|
-
*/
|
|
8862
|
-
FNMetaImpl?: Function
|
|
8863
|
-
): Function;
|
|
8864
8866
|
/**
|
|
8865
8867
|
* Fires event {@link #event:beforeUploadFile beforeUploadFile} to attached listeners.
|
|
8866
8868
|
*/
|
|
@@ -8991,10 +8993,6 @@ declare namespace sap {
|
|
|
8991
8993
|
* The base path in the model for the control. Avoid trailing forward slashes in value, as per default value.
|
|
8992
8994
|
*/
|
|
8993
8995
|
getItems(): string;
|
|
8994
|
-
/**
|
|
8995
|
-
* Returns a metadata object for class sap.ca.ui.FileUpload.
|
|
8996
|
-
*/
|
|
8997
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
8998
8996
|
/**
|
|
8999
8997
|
* Gets current value of property {@link #getMimeType mimeType}.
|
|
9000
8998
|
*
|
|
@@ -9332,6 +9330,10 @@ declare namespace sap {
|
|
|
9332
9330
|
*/
|
|
9333
9331
|
FNMetaImpl?: Function
|
|
9334
9332
|
): Function;
|
|
9333
|
+
/**
|
|
9334
|
+
* Returns a metadata object for class sap.ca.ui.GrowingTileContainer.
|
|
9335
|
+
*/
|
|
9336
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9335
9337
|
/**
|
|
9336
9338
|
* Gets current value of property {@link #getGrowing growing}.
|
|
9337
9339
|
*
|
|
@@ -9356,10 +9358,6 @@ declare namespace sap {
|
|
|
9356
9358
|
* Default value is `20`.
|
|
9357
9359
|
*/
|
|
9358
9360
|
getGrowingThreshold(): int;
|
|
9359
|
-
/**
|
|
9360
|
-
* Returns a metadata object for class sap.ca.ui.GrowingTileContainer.
|
|
9361
|
-
*/
|
|
9362
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9363
9361
|
/**
|
|
9364
9362
|
* Sets a new value for property {@link #getGrowing growing}.
|
|
9365
9363
|
*
|
|
@@ -9444,6 +9442,31 @@ declare namespace sap {
|
|
|
9444
9442
|
mSettings?: sap.ca.ui.$HierarchicalSelectDialogSettings
|
|
9445
9443
|
);
|
|
9446
9444
|
|
|
9445
|
+
/**
|
|
9446
|
+
* Creates a new subclass of class sap.ca.ui.HierarchicalSelectDialog with name `sClassName` and enriches
|
|
9447
|
+
* it with the information contained in `oClassInfo`.
|
|
9448
|
+
*
|
|
9449
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.Dialog.extend}.
|
|
9450
|
+
*/
|
|
9451
|
+
static extend<T extends Record<string, unknown>>(
|
|
9452
|
+
/**
|
|
9453
|
+
* Name of the class being created
|
|
9454
|
+
*/
|
|
9455
|
+
sClassName: string,
|
|
9456
|
+
/**
|
|
9457
|
+
* Object literal with information about the class
|
|
9458
|
+
*/
|
|
9459
|
+
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.HierarchicalSelectDialog>,
|
|
9460
|
+
/**
|
|
9461
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9462
|
+
* used by this class
|
|
9463
|
+
*/
|
|
9464
|
+
FNMetaImpl?: Function
|
|
9465
|
+
): Function;
|
|
9466
|
+
/**
|
|
9467
|
+
* Returns a metadata object for class sap.ca.ui.HierarchicalSelectDialog.
|
|
9468
|
+
*/
|
|
9469
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9447
9470
|
/**
|
|
9448
9471
|
* Adds some item to the aggregation {@link #getItems items}.
|
|
9449
9472
|
*/
|
|
@@ -9573,27 +9596,6 @@ declare namespace sap {
|
|
|
9573
9596
|
*/
|
|
9574
9597
|
oListener?: object
|
|
9575
9598
|
): this;
|
|
9576
|
-
/**
|
|
9577
|
-
* Creates a new subclass of class sap.ca.ui.HierarchicalSelectDialog with name `sClassName` and enriches
|
|
9578
|
-
* it with the information contained in `oClassInfo`.
|
|
9579
|
-
*
|
|
9580
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.Dialog.extend}.
|
|
9581
|
-
*/
|
|
9582
|
-
static extend<T extends Record<string, unknown>>(
|
|
9583
|
-
/**
|
|
9584
|
-
* Name of the class being created
|
|
9585
|
-
*/
|
|
9586
|
-
sClassName: string,
|
|
9587
|
-
/**
|
|
9588
|
-
* Object literal with information about the class
|
|
9589
|
-
*/
|
|
9590
|
-
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.HierarchicalSelectDialog>,
|
|
9591
|
-
/**
|
|
9592
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9593
|
-
* used by this class
|
|
9594
|
-
*/
|
|
9595
|
-
FNMetaImpl?: Function
|
|
9596
|
-
): Function;
|
|
9597
9599
|
/**
|
|
9598
9600
|
* Fires event {@link #event:cancel cancel} to attached listeners.
|
|
9599
9601
|
*/
|
|
@@ -9619,10 +9621,6 @@ declare namespace sap {
|
|
|
9619
9621
|
* of the dialog
|
|
9620
9622
|
*/
|
|
9621
9623
|
getItems(): sap.ca.ui.HierarchicalSelectDialogItem[];
|
|
9622
|
-
/**
|
|
9623
|
-
* Returns a metadata object for class sap.ca.ui.HierarchicalSelectDialog.
|
|
9624
|
-
*/
|
|
9625
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9626
9624
|
/**
|
|
9627
9625
|
* Checks for the provided `sap.ca.ui.HierarchicalSelectDialogItem` in the aggregation {@link #getItems
|
|
9628
9626
|
* items}. and returns its index if found or -1 otherwise.
|
|
@@ -9688,10 +9686,6 @@ declare namespace sap {
|
|
|
9688
9686
|
mSettings?: sap.ca.ui.$HierarchicalSelectDialogItemSettings
|
|
9689
9687
|
);
|
|
9690
9688
|
|
|
9691
|
-
/**
|
|
9692
|
-
* Destroys the listItemTemplate in the aggregation {@link #getListItemTemplate listItemTemplate}.
|
|
9693
|
-
*/
|
|
9694
|
-
destroyListItemTemplate(): this;
|
|
9695
9689
|
/**
|
|
9696
9690
|
* Creates a new subclass of class sap.ca.ui.HierarchicalSelectDialogItem with name `sClassName` and enriches
|
|
9697
9691
|
* it with the information contained in `oClassInfo`.
|
|
@@ -9713,6 +9707,14 @@ declare namespace sap {
|
|
|
9713
9707
|
*/
|
|
9714
9708
|
FNMetaImpl?: Function
|
|
9715
9709
|
): Function;
|
|
9710
|
+
/**
|
|
9711
|
+
* Returns a metadata object for class sap.ca.ui.HierarchicalSelectDialogItem.
|
|
9712
|
+
*/
|
|
9713
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9714
|
+
/**
|
|
9715
|
+
* Destroys the listItemTemplate in the aggregation {@link #getListItemTemplate listItemTemplate}.
|
|
9716
|
+
*/
|
|
9717
|
+
destroyListItemTemplate(): this;
|
|
9716
9718
|
/**
|
|
9717
9719
|
* Gets current value of property {@link #getEntityName entityName}.
|
|
9718
9720
|
*
|
|
@@ -9725,10 +9727,6 @@ declare namespace sap {
|
|
|
9725
9727
|
* Used as a template for each list item of the page
|
|
9726
9728
|
*/
|
|
9727
9729
|
getListItemTemplate(): sap.m.ListItemBase;
|
|
9728
|
-
/**
|
|
9729
|
-
* Returns a metadata object for class sap.ca.ui.HierarchicalSelectDialogItem.
|
|
9730
|
-
*/
|
|
9731
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9732
9730
|
/**
|
|
9733
9731
|
* Gets current value of property {@link #getTitle title}.
|
|
9734
9732
|
*
|
|
@@ -9811,6 +9809,31 @@ declare namespace sap {
|
|
|
9811
9809
|
mSettings?: sap.ca.ui.$HierarchySettings
|
|
9812
9810
|
);
|
|
9813
9811
|
|
|
9812
|
+
/**
|
|
9813
|
+
* Creates a new subclass of class sap.ca.ui.Hierarchy with name `sClassName` and enriches it with the information
|
|
9814
|
+
* contained in `oClassInfo`.
|
|
9815
|
+
*
|
|
9816
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
9817
|
+
*/
|
|
9818
|
+
static extend<T extends Record<string, unknown>>(
|
|
9819
|
+
/**
|
|
9820
|
+
* Name of the class being created
|
|
9821
|
+
*/
|
|
9822
|
+
sClassName: string,
|
|
9823
|
+
/**
|
|
9824
|
+
* Object literal with information about the class
|
|
9825
|
+
*/
|
|
9826
|
+
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.Hierarchy>,
|
|
9827
|
+
/**
|
|
9828
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9829
|
+
* used by this class
|
|
9830
|
+
*/
|
|
9831
|
+
FNMetaImpl?: Function
|
|
9832
|
+
): Function;
|
|
9833
|
+
/**
|
|
9834
|
+
* Returns a metadata object for class sap.ca.ui.Hierarchy.
|
|
9835
|
+
*/
|
|
9836
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9814
9837
|
/**
|
|
9815
9838
|
* Adds some item to the aggregation {@link #getItems items}.
|
|
9816
9839
|
*/
|
|
@@ -9836,27 +9859,6 @@ declare namespace sap {
|
|
|
9836
9859
|
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
9837
9860
|
*/
|
|
9838
9861
|
destroyItems(): this;
|
|
9839
|
-
/**
|
|
9840
|
-
* Creates a new subclass of class sap.ca.ui.Hierarchy with name `sClassName` and enriches it with the information
|
|
9841
|
-
* contained in `oClassInfo`.
|
|
9842
|
-
*
|
|
9843
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
9844
|
-
*/
|
|
9845
|
-
static extend<T extends Record<string, unknown>>(
|
|
9846
|
-
/**
|
|
9847
|
-
* Name of the class being created
|
|
9848
|
-
*/
|
|
9849
|
-
sClassName: string,
|
|
9850
|
-
/**
|
|
9851
|
-
* Object literal with information about the class
|
|
9852
|
-
*/
|
|
9853
|
-
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.Hierarchy>,
|
|
9854
|
-
/**
|
|
9855
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9856
|
-
* used by this class
|
|
9857
|
-
*/
|
|
9858
|
-
FNMetaImpl?: Function
|
|
9859
|
-
): Function;
|
|
9860
9862
|
/**
|
|
9861
9863
|
* Gets current value of property {@link #getHideOptionalLevels hideOptionalLevels}.
|
|
9862
9864
|
*
|
|
@@ -9871,10 +9873,6 @@ declare namespace sap {
|
|
|
9871
9873
|
* The array of HierarchyItem ordered and starting from the root hierarchy
|
|
9872
9874
|
*/
|
|
9873
9875
|
getItems(): sap.ca.ui.HierarchyItem[];
|
|
9874
|
-
/**
|
|
9875
|
-
* Returns a metadata object for class sap.ca.ui.Hierarchy.
|
|
9876
|
-
*/
|
|
9877
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9878
9876
|
/**
|
|
9879
9877
|
* Checks for the provided `sap.ca.ui.HierarchyItem` in the aggregation {@link #getItems items}. and returns
|
|
9880
9878
|
* its index if found or -1 otherwise.
|
|
@@ -9975,6 +9973,31 @@ declare namespace sap {
|
|
|
9975
9973
|
mSettings?: sap.ca.ui.$HierarchyItemSettings
|
|
9976
9974
|
);
|
|
9977
9975
|
|
|
9976
|
+
/**
|
|
9977
|
+
* Creates a new subclass of class sap.ca.ui.HierarchyItem with name `sClassName` and enriches it with the
|
|
9978
|
+
* information contained in `oClassInfo`.
|
|
9979
|
+
*
|
|
9980
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
9981
|
+
*/
|
|
9982
|
+
static extend<T extends Record<string, unknown>>(
|
|
9983
|
+
/**
|
|
9984
|
+
* Name of the class being created
|
|
9985
|
+
*/
|
|
9986
|
+
sClassName: string,
|
|
9987
|
+
/**
|
|
9988
|
+
* Object literal with information about the class
|
|
9989
|
+
*/
|
|
9990
|
+
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.HierarchyItem>,
|
|
9991
|
+
/**
|
|
9992
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9993
|
+
* used by this class
|
|
9994
|
+
*/
|
|
9995
|
+
FNMetaImpl?: Function
|
|
9996
|
+
): Function;
|
|
9997
|
+
/**
|
|
9998
|
+
* Returns a metadata object for class sap.ca.ui.HierarchyItem.
|
|
9999
|
+
*/
|
|
10000
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9978
10001
|
/**
|
|
9979
10002
|
* Attaches event handler `fnFunction` to the {@link #event:linkPress linkPress} event of this `sap.ca.ui.HierarchyItem`.
|
|
9980
10003
|
*
|
|
@@ -10031,27 +10054,6 @@ declare namespace sap {
|
|
|
10031
10054
|
*/
|
|
10032
10055
|
oListener?: object
|
|
10033
10056
|
): this;
|
|
10034
|
-
/**
|
|
10035
|
-
* Creates a new subclass of class sap.ca.ui.HierarchyItem with name `sClassName` and enriches it with the
|
|
10036
|
-
* information contained in `oClassInfo`.
|
|
10037
|
-
*
|
|
10038
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
10039
|
-
*/
|
|
10040
|
-
static extend<T extends Record<string, unknown>>(
|
|
10041
|
-
/**
|
|
10042
|
-
* Name of the class being created
|
|
10043
|
-
*/
|
|
10044
|
-
sClassName: string,
|
|
10045
|
-
/**
|
|
10046
|
-
* Object literal with information about the class
|
|
10047
|
-
*/
|
|
10048
|
-
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.HierarchyItem>,
|
|
10049
|
-
/**
|
|
10050
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10051
|
-
* used by this class
|
|
10052
|
-
*/
|
|
10053
|
-
FNMetaImpl?: Function
|
|
10054
|
-
): Function;
|
|
10055
10057
|
/**
|
|
10056
10058
|
* Fires event {@link #event:linkPress linkPress} to attached listeners.
|
|
10057
10059
|
*/
|
|
@@ -10093,10 +10095,6 @@ declare namespace sap {
|
|
|
10093
10095
|
* Text of the link
|
|
10094
10096
|
*/
|
|
10095
10097
|
getLink(): string;
|
|
10096
|
-
/**
|
|
10097
|
-
* Returns a metadata object for class sap.ca.ui.HierarchyItem.
|
|
10098
|
-
*/
|
|
10099
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
10100
10098
|
/**
|
|
10101
10099
|
* Gets current value of property {@link #getOptional optional}.
|
|
10102
10100
|
*
|
|
@@ -10246,6 +10244,31 @@ declare namespace sap {
|
|
|
10246
10244
|
mSettings?: sap.ca.ui.$InPlaceEditSettings
|
|
10247
10245
|
);
|
|
10248
10246
|
|
|
10247
|
+
/**
|
|
10248
|
+
* Creates a new subclass of class sap.ca.ui.InPlaceEdit with name `sClassName` and enriches it with the
|
|
10249
|
+
* information contained in `oClassInfo`.
|
|
10250
|
+
*
|
|
10251
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
10252
|
+
*/
|
|
10253
|
+
static extend<T extends Record<string, unknown>>(
|
|
10254
|
+
/**
|
|
10255
|
+
* Name of the class being created
|
|
10256
|
+
*/
|
|
10257
|
+
sClassName: string,
|
|
10258
|
+
/**
|
|
10259
|
+
* Object literal with information about the class
|
|
10260
|
+
*/
|
|
10261
|
+
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.InPlaceEdit>,
|
|
10262
|
+
/**
|
|
10263
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10264
|
+
* used by this class
|
|
10265
|
+
*/
|
|
10266
|
+
FNMetaImpl?: Function
|
|
10267
|
+
): Function;
|
|
10268
|
+
/**
|
|
10269
|
+
* Returns a metadata object for class sap.ca.ui.InPlaceEdit.
|
|
10270
|
+
*/
|
|
10271
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
10249
10272
|
/**
|
|
10250
10273
|
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.ca.ui.InPlaceEdit`.
|
|
10251
10274
|
*
|
|
@@ -10313,27 +10336,6 @@ declare namespace sap {
|
|
|
10313
10336
|
*/
|
|
10314
10337
|
oListener?: object
|
|
10315
10338
|
): this;
|
|
10316
|
-
/**
|
|
10317
|
-
* Creates a new subclass of class sap.ca.ui.InPlaceEdit with name `sClassName` and enriches it with the
|
|
10318
|
-
* information contained in `oClassInfo`.
|
|
10319
|
-
*
|
|
10320
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
10321
|
-
*/
|
|
10322
|
-
static extend<T extends Record<string, unknown>>(
|
|
10323
|
-
/**
|
|
10324
|
-
* Name of the class being created
|
|
10325
|
-
*/
|
|
10326
|
-
sClassName: string,
|
|
10327
|
-
/**
|
|
10328
|
-
* Object literal with information about the class
|
|
10329
|
-
*/
|
|
10330
|
-
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.InPlaceEdit>,
|
|
10331
|
-
/**
|
|
10332
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10333
|
-
* used by this class
|
|
10334
|
-
*/
|
|
10335
|
-
FNMetaImpl?: Function
|
|
10336
|
-
): Function;
|
|
10337
10339
|
/**
|
|
10338
10340
|
* Fires event {@link #event:change change} to attached listeners.
|
|
10339
10341
|
*/
|
|
@@ -10354,10 +10356,6 @@ declare namespace sap {
|
|
|
10354
10356
|
* Content control of the InPlaceEdit. The following control is allowed: sap.m.Input, sap.m.Link
|
|
10355
10357
|
*/
|
|
10356
10358
|
getContent(): sap.ui.core.Control;
|
|
10357
|
-
/**
|
|
10358
|
-
* Returns a metadata object for class sap.ca.ui.InPlaceEdit.
|
|
10359
|
-
*/
|
|
10360
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
10361
10359
|
/**
|
|
10362
10360
|
* Returns the tooltip for this InPlaceEdit if any or an undefined value. The tooltip can either be a simple
|
|
10363
10361
|
* string or a subclass of {@link sap.ui.core.TooltipBase}.
|
|
@@ -10480,6 +10478,31 @@ declare namespace sap {
|
|
|
10480
10478
|
mSettings?: sap.ca.ui.$NotesSettings
|
|
10481
10479
|
);
|
|
10482
10480
|
|
|
10481
|
+
/**
|
|
10482
|
+
* Creates a new subclass of class sap.ca.ui.Notes with name `sClassName` and enriches it with the information
|
|
10483
|
+
* contained in `oClassInfo`.
|
|
10484
|
+
*
|
|
10485
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.List.extend}.
|
|
10486
|
+
*/
|
|
10487
|
+
static extend<T extends Record<string, unknown>>(
|
|
10488
|
+
/**
|
|
10489
|
+
* Name of the class being created
|
|
10490
|
+
*/
|
|
10491
|
+
sClassName: string,
|
|
10492
|
+
/**
|
|
10493
|
+
* Object literal with information about the class
|
|
10494
|
+
*/
|
|
10495
|
+
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.Notes>,
|
|
10496
|
+
/**
|
|
10497
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10498
|
+
* used by this class
|
|
10499
|
+
*/
|
|
10500
|
+
FNMetaImpl?: Function
|
|
10501
|
+
): Function;
|
|
10502
|
+
/**
|
|
10503
|
+
* Returns a metadata object for class sap.ca.ui.Notes.
|
|
10504
|
+
*/
|
|
10505
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
10483
10506
|
/**
|
|
10484
10507
|
* Attaches event handler `fnFunction` to the {@link #event:addNote addNote} event of this `sap.ca.ui.Notes`.
|
|
10485
10508
|
*
|
|
@@ -10544,27 +10567,6 @@ declare namespace sap {
|
|
|
10544
10567
|
*/
|
|
10545
10568
|
oListener?: object
|
|
10546
10569
|
): this;
|
|
10547
|
-
/**
|
|
10548
|
-
* Creates a new subclass of class sap.ca.ui.Notes with name `sClassName` and enriches it with the information
|
|
10549
|
-
* contained in `oClassInfo`.
|
|
10550
|
-
*
|
|
10551
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.List.extend}.
|
|
10552
|
-
*/
|
|
10553
|
-
static extend<T extends Record<string, unknown>>(
|
|
10554
|
-
/**
|
|
10555
|
-
* Name of the class being created
|
|
10556
|
-
*/
|
|
10557
|
-
sClassName: string,
|
|
10558
|
-
/**
|
|
10559
|
-
* Object literal with information about the class
|
|
10560
|
-
*/
|
|
10561
|
-
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.Notes>,
|
|
10562
|
-
/**
|
|
10563
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10564
|
-
* used by this class
|
|
10565
|
-
*/
|
|
10566
|
-
FNMetaImpl?: Function
|
|
10567
|
-
): Function;
|
|
10568
10570
|
/**
|
|
10569
10571
|
* Fires event {@link #event:addNote addNote} to attached listeners.
|
|
10570
10572
|
*/
|
|
@@ -10574,10 +10576,6 @@ declare namespace sap {
|
|
|
10574
10576
|
*/
|
|
10575
10577
|
mParameters?: object
|
|
10576
10578
|
): this;
|
|
10577
|
-
/**
|
|
10578
|
-
* Returns a metadata object for class sap.ca.ui.Notes.
|
|
10579
|
-
*/
|
|
10580
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
10581
10579
|
/**
|
|
10582
10580
|
* Gets current value of property {@link #getPlaceholder placeholder}.
|
|
10583
10581
|
*
|
|
@@ -10683,19 +10681,6 @@ declare namespace sap {
|
|
|
10683
10681
|
mSettings?: sap.ca.ui.$OverflowContainerSettings
|
|
10684
10682
|
);
|
|
10685
10683
|
|
|
10686
|
-
/**
|
|
10687
|
-
* Adds some content to the aggregation {@link #getContent content}.
|
|
10688
|
-
*/
|
|
10689
|
-
addContent(
|
|
10690
|
-
/**
|
|
10691
|
-
* The content to add; if empty, nothing is inserted
|
|
10692
|
-
*/
|
|
10693
|
-
oContent: sap.ui.core.Control
|
|
10694
|
-
): this;
|
|
10695
|
-
/**
|
|
10696
|
-
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
10697
|
-
*/
|
|
10698
|
-
destroyContent(): this;
|
|
10699
10684
|
/**
|
|
10700
10685
|
* Creates a new subclass of class sap.ca.ui.OverflowContainer with name `sClassName` and enriches it with
|
|
10701
10686
|
* the information contained in `oClassInfo`.
|
|
@@ -10717,6 +10702,23 @@ declare namespace sap {
|
|
|
10717
10702
|
*/
|
|
10718
10703
|
FNMetaImpl?: Function
|
|
10719
10704
|
): Function;
|
|
10705
|
+
/**
|
|
10706
|
+
* Returns a metadata object for class sap.ca.ui.OverflowContainer.
|
|
10707
|
+
*/
|
|
10708
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
10709
|
+
/**
|
|
10710
|
+
* Adds some content to the aggregation {@link #getContent content}.
|
|
10711
|
+
*/
|
|
10712
|
+
addContent(
|
|
10713
|
+
/**
|
|
10714
|
+
* The content to add; if empty, nothing is inserted
|
|
10715
|
+
*/
|
|
10716
|
+
oContent: sap.ui.core.Control
|
|
10717
|
+
): this;
|
|
10718
|
+
/**
|
|
10719
|
+
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
10720
|
+
*/
|
|
10721
|
+
destroyContent(): this;
|
|
10720
10722
|
/**
|
|
10721
10723
|
* Gets content of aggregation {@link #getContent content}.
|
|
10722
10724
|
*
|
|
@@ -10731,10 +10733,6 @@ declare namespace sap {
|
|
|
10731
10733
|
* Default value is `false`.
|
|
10732
10734
|
*/
|
|
10733
10735
|
getExpanded(): boolean;
|
|
10734
|
-
/**
|
|
10735
|
-
* Returns a metadata object for class sap.ca.ui.OverflowContainer.
|
|
10736
|
-
*/
|
|
10737
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
10738
10736
|
/**
|
|
10739
10737
|
* Gets current value of property {@link #getOverflowHeight overflowHeight}.
|
|
10740
10738
|
*
|
|
@@ -10854,6 +10852,31 @@ declare namespace sap {
|
|
|
10854
10852
|
mSettings?: sap.ca.ui.$OverviewTileSettings
|
|
10855
10853
|
);
|
|
10856
10854
|
|
|
10855
|
+
/**
|
|
10856
|
+
* Creates a new subclass of class sap.ca.ui.OverviewTile with name `sClassName` and enriches it with the
|
|
10857
|
+
* information contained in `oClassInfo`.
|
|
10858
|
+
*
|
|
10859
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.Tile.extend}.
|
|
10860
|
+
*/
|
|
10861
|
+
static extend<T extends Record<string, unknown>>(
|
|
10862
|
+
/**
|
|
10863
|
+
* Name of the class being created
|
|
10864
|
+
*/
|
|
10865
|
+
sClassName: string,
|
|
10866
|
+
/**
|
|
10867
|
+
* Object literal with information about the class
|
|
10868
|
+
*/
|
|
10869
|
+
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.OverviewTile>,
|
|
10870
|
+
/**
|
|
10871
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10872
|
+
* used by this class
|
|
10873
|
+
*/
|
|
10874
|
+
FNMetaImpl?: Function
|
|
10875
|
+
): Function;
|
|
10876
|
+
/**
|
|
10877
|
+
* Returns a metadata object for class sap.ca.ui.OverviewTile.
|
|
10878
|
+
*/
|
|
10879
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
10857
10880
|
/**
|
|
10858
10881
|
* Attaches event handler `fnFunction` to the {@link #event:contactPress contactPress} event of this `sap.ca.ui.OverviewTile`.
|
|
10859
10882
|
*
|
|
@@ -10910,27 +10933,6 @@ declare namespace sap {
|
|
|
10910
10933
|
*/
|
|
10911
10934
|
oListener?: object
|
|
10912
10935
|
): this;
|
|
10913
|
-
/**
|
|
10914
|
-
* Creates a new subclass of class sap.ca.ui.OverviewTile with name `sClassName` and enriches it with the
|
|
10915
|
-
* information contained in `oClassInfo`.
|
|
10916
|
-
*
|
|
10917
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.Tile.extend}.
|
|
10918
|
-
*/
|
|
10919
|
-
static extend<T extends Record<string, unknown>>(
|
|
10920
|
-
/**
|
|
10921
|
-
* Name of the class being created
|
|
10922
|
-
*/
|
|
10923
|
-
sClassName: string,
|
|
10924
|
-
/**
|
|
10925
|
-
* Object literal with information about the class
|
|
10926
|
-
*/
|
|
10927
|
-
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.OverviewTile>,
|
|
10928
|
-
/**
|
|
10929
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10930
|
-
* used by this class
|
|
10931
|
-
*/
|
|
10932
|
-
FNMetaImpl?: Function
|
|
10933
|
-
): Function;
|
|
10934
10936
|
/**
|
|
10935
10937
|
* Fires event {@link #event:contactPress contactPress} to attached listeners.
|
|
10936
10938
|
*/
|
|
@@ -10972,10 +10974,6 @@ declare namespace sap {
|
|
|
10972
10974
|
* Default value is `'null'`.
|
|
10973
10975
|
*/
|
|
10974
10976
|
getLastContact(): string;
|
|
10975
|
-
/**
|
|
10976
|
-
* Returns a metadata object for class sap.ca.ui.OverviewTile.
|
|
10977
|
-
*/
|
|
10978
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
10979
10977
|
/**
|
|
10980
10978
|
* Gets current value of property {@link #getNextContact nextContact}.
|
|
10981
10979
|
*
|
|
@@ -11251,6 +11249,31 @@ declare namespace sap {
|
|
|
11251
11249
|
mSettings?: sap.ca.ui.$PictureItemSettings
|
|
11252
11250
|
);
|
|
11253
11251
|
|
|
11252
|
+
/**
|
|
11253
|
+
* Creates a new subclass of class sap.ca.ui.PictureItem with name `sClassName` and enriches it with the
|
|
11254
|
+
* information contained in `oClassInfo`.
|
|
11255
|
+
*
|
|
11256
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
11257
|
+
*/
|
|
11258
|
+
static extend<T extends Record<string, unknown>>(
|
|
11259
|
+
/**
|
|
11260
|
+
* Name of the class being created
|
|
11261
|
+
*/
|
|
11262
|
+
sClassName: string,
|
|
11263
|
+
/**
|
|
11264
|
+
* Object literal with information about the class
|
|
11265
|
+
*/
|
|
11266
|
+
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.PictureItem>,
|
|
11267
|
+
/**
|
|
11268
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11269
|
+
* used by this class
|
|
11270
|
+
*/
|
|
11271
|
+
FNMetaImpl?: Function
|
|
11272
|
+
): Function;
|
|
11273
|
+
/**
|
|
11274
|
+
* Returns a metadata object for class sap.ca.ui.PictureItem.
|
|
11275
|
+
*/
|
|
11276
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
11254
11277
|
/**
|
|
11255
11278
|
* Attaches event handler `fnFunction` to the {@link #event:loaded loaded} event of this `sap.ca.ui.PictureItem`.
|
|
11256
11279
|
*
|
|
@@ -11307,27 +11330,6 @@ declare namespace sap {
|
|
|
11307
11330
|
*/
|
|
11308
11331
|
oListener?: object
|
|
11309
11332
|
): this;
|
|
11310
|
-
/**
|
|
11311
|
-
* Creates a new subclass of class sap.ca.ui.PictureItem with name `sClassName` and enriches it with the
|
|
11312
|
-
* information contained in `oClassInfo`.
|
|
11313
|
-
*
|
|
11314
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
11315
|
-
*/
|
|
11316
|
-
static extend<T extends Record<string, unknown>>(
|
|
11317
|
-
/**
|
|
11318
|
-
* Name of the class being created
|
|
11319
|
-
*/
|
|
11320
|
-
sClassName: string,
|
|
11321
|
-
/**
|
|
11322
|
-
* Object literal with information about the class
|
|
11323
|
-
*/
|
|
11324
|
-
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.PictureItem>,
|
|
11325
|
-
/**
|
|
11326
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11327
|
-
* used by this class
|
|
11328
|
-
*/
|
|
11329
|
-
FNMetaImpl?: Function
|
|
11330
|
-
): Function;
|
|
11331
11333
|
/**
|
|
11332
11334
|
* Fires event {@link #event:loaded loaded} to attached listeners.
|
|
11333
11335
|
*/
|
|
@@ -11347,10 +11349,6 @@ declare namespace sap {
|
|
|
11347
11349
|
* Default value is `'62px'`.
|
|
11348
11350
|
*/
|
|
11349
11351
|
getHeight(): sap.ui.core.CSSSize;
|
|
11350
|
-
/**
|
|
11351
|
-
* Returns a metadata object for class sap.ca.ui.PictureItem.
|
|
11352
|
-
*/
|
|
11353
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
11354
11352
|
/**
|
|
11355
11353
|
* Gets current value of property {@link #getName name}.
|
|
11356
11354
|
*
|
|
@@ -11499,6 +11497,31 @@ declare namespace sap {
|
|
|
11499
11497
|
mSettings?: sap.ca.ui.$PictureTileSettings
|
|
11500
11498
|
);
|
|
11501
11499
|
|
|
11500
|
+
/**
|
|
11501
|
+
* Creates a new subclass of class sap.ca.ui.PictureTile with name `sClassName` and enriches it with the
|
|
11502
|
+
* information contained in `oClassInfo`.
|
|
11503
|
+
*
|
|
11504
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.CustomTile.extend}.
|
|
11505
|
+
*/
|
|
11506
|
+
static extend<T extends Record<string, unknown>>(
|
|
11507
|
+
/**
|
|
11508
|
+
* Name of the class being created
|
|
11509
|
+
*/
|
|
11510
|
+
sClassName: string,
|
|
11511
|
+
/**
|
|
11512
|
+
* Object literal with information about the class
|
|
11513
|
+
*/
|
|
11514
|
+
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.PictureTile>,
|
|
11515
|
+
/**
|
|
11516
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11517
|
+
* used by this class
|
|
11518
|
+
*/
|
|
11519
|
+
FNMetaImpl?: Function
|
|
11520
|
+
): Function;
|
|
11521
|
+
/**
|
|
11522
|
+
* Returns a metadata object for class sap.ca.ui.PictureTile.
|
|
11523
|
+
*/
|
|
11524
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
11502
11525
|
/**
|
|
11503
11526
|
* Attaches event handler `fnFunction` to the {@link #event:pictureDelete pictureDelete} event of this `sap.ca.ui.PictureTile`.
|
|
11504
11527
|
*
|
|
@@ -11556,27 +11579,6 @@ declare namespace sap {
|
|
|
11556
11579
|
*/
|
|
11557
11580
|
oListener?: object
|
|
11558
11581
|
): this;
|
|
11559
|
-
/**
|
|
11560
|
-
* Creates a new subclass of class sap.ca.ui.PictureTile with name `sClassName` and enriches it with the
|
|
11561
|
-
* information contained in `oClassInfo`.
|
|
11562
|
-
*
|
|
11563
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.CustomTile.extend}.
|
|
11564
|
-
*/
|
|
11565
|
-
static extend<T extends Record<string, unknown>>(
|
|
11566
|
-
/**
|
|
11567
|
-
* Name of the class being created
|
|
11568
|
-
*/
|
|
11569
|
-
sClassName: string,
|
|
11570
|
-
/**
|
|
11571
|
-
* Object literal with information about the class
|
|
11572
|
-
*/
|
|
11573
|
-
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.PictureTile>,
|
|
11574
|
-
/**
|
|
11575
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11576
|
-
* used by this class
|
|
11577
|
-
*/
|
|
11578
|
-
FNMetaImpl?: Function
|
|
11579
|
-
): Function;
|
|
11580
11582
|
/**
|
|
11581
11583
|
* Fires event {@link #event:pictureDelete pictureDelete} to attached listeners.
|
|
11582
11584
|
*/
|
|
@@ -11594,10 +11596,6 @@ declare namespace sap {
|
|
|
11594
11596
|
* Default value is `'32px'`.
|
|
11595
11597
|
*/
|
|
11596
11598
|
getHeight(): sap.ui.core.CSSSize;
|
|
11597
|
-
/**
|
|
11598
|
-
* Returns a metadata object for class sap.ca.ui.PictureTile.
|
|
11599
|
-
*/
|
|
11600
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
11601
11599
|
/**
|
|
11602
11600
|
* ID of the element which is the current target of the association {@link #getTileContent tileContent},
|
|
11603
11601
|
* or `null`.
|
|
@@ -11691,6 +11689,31 @@ declare namespace sap {
|
|
|
11691
11689
|
mSettings?: sap.ca.ui.$PictureViewerSettings
|
|
11692
11690
|
);
|
|
11693
11691
|
|
|
11692
|
+
/**
|
|
11693
|
+
* Creates a new subclass of class sap.ca.ui.PictureViewer with name `sClassName` and enriches it with the
|
|
11694
|
+
* information contained in `oClassInfo`.
|
|
11695
|
+
*
|
|
11696
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.TileContainer.extend}.
|
|
11697
|
+
*/
|
|
11698
|
+
static extend<T extends Record<string, unknown>>(
|
|
11699
|
+
/**
|
|
11700
|
+
* Name of the class being created
|
|
11701
|
+
*/
|
|
11702
|
+
sClassName: string,
|
|
11703
|
+
/**
|
|
11704
|
+
* Object literal with information about the class
|
|
11705
|
+
*/
|
|
11706
|
+
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.PictureViewer>,
|
|
11707
|
+
/**
|
|
11708
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11709
|
+
* used by this class
|
|
11710
|
+
*/
|
|
11711
|
+
FNMetaImpl?: Function
|
|
11712
|
+
): Function;
|
|
11713
|
+
/**
|
|
11714
|
+
* Returns a metadata object for class sap.ca.ui.PictureViewer.
|
|
11715
|
+
*/
|
|
11716
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
11694
11717
|
/**
|
|
11695
11718
|
* @deprecated - Use aggregation "tiles"
|
|
11696
11719
|
*
|
|
@@ -11775,27 +11798,6 @@ declare namespace sap {
|
|
|
11775
11798
|
*/
|
|
11776
11799
|
oListener?: object
|
|
11777
11800
|
): this;
|
|
11778
|
-
/**
|
|
11779
|
-
* Creates a new subclass of class sap.ca.ui.PictureViewer with name `sClassName` and enriches it with the
|
|
11780
|
-
* information contained in `oClassInfo`.
|
|
11781
|
-
*
|
|
11782
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.TileContainer.extend}.
|
|
11783
|
-
*/
|
|
11784
|
-
static extend<T extends Record<string, unknown>>(
|
|
11785
|
-
/**
|
|
11786
|
-
* Name of the class being created
|
|
11787
|
-
*/
|
|
11788
|
-
sClassName: string,
|
|
11789
|
-
/**
|
|
11790
|
-
* Object literal with information about the class
|
|
11791
|
-
*/
|
|
11792
|
-
oClassInfo?: sap.ClassInfo<T, sap.ca.ui.PictureViewer>,
|
|
11793
|
-
/**
|
|
11794
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11795
|
-
* used by this class
|
|
11796
|
-
*/
|
|
11797
|
-
FNMetaImpl?: Function
|
|
11798
|
-
): Function;
|
|
11799
11801
|
/**
|
|
11800
11802
|
* Fires event {@link #event:pictureDeleted pictureDeleted} to attached listeners.
|
|
11801
11803
|
*/
|
|
@@ -11815,10 +11817,6 @@ declare namespace sap {
|
|
|
11815
11817
|
* Aggregation of PictureViewerItem that contains either a picture URI or the actual Image control.
|
|
11816
11818
|
*/
|
|
11817
11819
|
getItems(): sap.ca.ui.PictureViewerItem[];
|
|
11818
|
-
/**
|
|
11819
|
-
* Returns a metadata object for class sap.ca.ui.PictureViewer.
|
|
11820
|
-
*/
|
|
11821
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
11822
11820
|
/**
|
|
11823
11821
|
* Gets current value of property {@link #getRemovable removable}.
|
|
11824
11822
|
*
|
|
@@ -11942,10 +11940,6 @@ declare namespace sap {
|
|
|
11942
11940
|
mSettings?: sap.ca.ui.$PictureViewerItemSettings
|
|
11943
11941
|
);
|
|
11944
11942
|
|
|
11945
|
-
/**
|
|
11946
|
-
* Destroys the image in the aggregation {@link #getImage image}.
|
|
11947
|
-
*/
|
|
11948
|
-
destroyImage(): this;
|
|
11949
11943
|
/**
|
|
11950
11944
|
* Creates a new subclass of class sap.ca.ui.PictureViewerItem with name `sClassName` and enriches it with
|
|
11951
11945
|
* the information contained in `oClassInfo`.
|
|
@@ -11967,16 +11961,20 @@ declare namespace sap {
|
|
|
11967
11961
|
*/
|
|
11968
11962
|
FNMetaImpl?: Function
|
|
11969
11963
|
): Function;
|
|
11964
|
+
/**
|
|
11965
|
+
* Returns a metadata object for class sap.ca.ui.PictureViewerItem.
|
|
11966
|
+
*/
|
|
11967
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
11968
|
+
/**
|
|
11969
|
+
* Destroys the image in the aggregation {@link #getImage image}.
|
|
11970
|
+
*/
|
|
11971
|
+
destroyImage(): this;
|
|
11970
11972
|
/**
|
|
11971
11973
|
* Gets content of aggregation {@link #getImage image}.
|
|
11972
11974
|
*
|
|
11973
11975
|
* Pass in an existing Image control to be used inside the PictureViewer
|
|
11974
11976
|
*/
|
|
11975
11977
|
getImage(): sap.m.Image;
|
|
11976
|
-
/**
|
|
11977
|
-
* Returns a metadata object for class sap.ca.ui.PictureViewerItem.
|
|
11978
|
-
*/
|
|
11979
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
11980
11978
|
/**
|
|
11981
11979
|
* Gets current value of property {@link #getSrc src}.
|
|
11982
11980
|
*
|
|
@@ -12065,6 +12063,10 @@ declare namespace sap {
|
|
|
12065
12063
|
*/
|
|
12066
12064
|
FNMetaImpl?: Function
|
|
12067
12065
|
): Function;
|
|
12066
|
+
/**
|
|
12067
|
+
* Returns a metadata object for class sap.ca.ui.ZoomableScrollContainer.
|
|
12068
|
+
*/
|
|
12069
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
12068
12070
|
/**
|
|
12069
12071
|
* Gets current value of property {@link #getInitialScale initialScale}.
|
|
12070
12072
|
*
|
|
@@ -12081,10 +12083,6 @@ declare namespace sap {
|
|
|
12081
12083
|
* Default value is `4`.
|
|
12082
12084
|
*/
|
|
12083
12085
|
getMaxScale(): float;
|
|
12084
|
-
/**
|
|
12085
|
-
* Returns a metadata object for class sap.ca.ui.ZoomableScrollContainer.
|
|
12086
|
-
*/
|
|
12087
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
12088
12086
|
/**
|
|
12089
12087
|
* Gets current value of property {@link #getMinScale minScale}.
|
|
12090
12088
|
*
|