@sapui5/types 1.122.1 → 1.123.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/index.d.ts +7 -7
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +408 -32
- package/types/sap.chart.d.ts +58 -6
- package/types/sap.collaboration.d.ts +52 -9
- package/types/sap.esh.search.ui.d.ts +2066 -2
- package/types/sap.f.d.ts +435 -98
- package/types/sap.fe.core.d.ts +9 -3
- package/types/sap.fe.macros.d.ts +1075 -70
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +8 -6
- package/types/sap.fe.test.d.ts +309 -7
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1066 -146
- package/types/sap.insights.d.ts +4 -2
- package/types/{mobile-1.122.0-esm-d.ts → sap.m.d.ts} +3961 -399
- package/types/sap.makit.d.ts +115 -14
- package/types/sap.me.d.ts +84 -7
- package/types/sap.ndc.d.ts +22 -2
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +44 -11
- package/types/sap.sac.df.d.ts +119 -67
- package/types/sap.suite.ui.commons.d.ts +1146 -2474
- package/types/sap.suite.ui.generic.template.d.ts +10 -2
- package/types/sap.suite.ui.microchart.d.ts +190 -28
- package/types/{tnt-1.122.0-esm-d.ts → sap.tnt.d.ts} +46 -10
- package/types/sap.ui.codeeditor.d.ts +16 -2
- package/types/{commons-1.122.0-esm-d.ts → sap.ui.commons.d.ts} +797 -121
- package/types/sap.ui.comp.d.ts +964 -124
- package/types/{core-1.122.0-esm-d.ts → sap.ui.core.d.ts} +13204 -12618
- package/types/sap.ui.dt.d.ts +3 -0
- package/types/sap.ui.export.d.ts +22 -5
- package/types/sap.ui.fl.d.ts +40 -3
- package/types/sap.ui.generic.app.d.ts +217 -201
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +147 -9
- package/types/sap.ui.layout.d.ts +171 -47
- package/types/{mdc-1.122.0-esm-d.ts → sap.ui.mdc.d.ts} +554 -71
- package/types/sap.ui.richtexteditor.d.ts +28 -2
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +27 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +278 -74
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +481 -42
- package/types/{ux3-1.122.0-esm-d.ts → sap.ui.ux3.d.ts} +527 -34
- package/types/sap.ui.vbm.d.ts +544 -48
- package/types/sap.ui.vk.d.ts +1588 -133
- package/types/sap.ui.vtm.d.ts +373 -27
- package/types/sap.ui.webc.common.d.ts +7 -1
- package/types/sap.ui.webc.fiori.d.ts +351 -29
- package/types/sap.ui.webc.main.d.ts +1035 -83
- package/types/sap.uiext.inbox.d.ts +124 -13
- package/types/sap.ushell.d.ts +1081 -383
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +123 -23
- package/types/sap.viz.d.ts +2619 -130
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +35 -15
- package/types/sap.zen.crosstab.d.ts +22 -10
- package/types/sap.zen.dsh.d.ts +64 -9
- package/types/dt-1.122.0-esm-d.ts +0 -3
package/types/sap.makit.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.123.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/makit/library" {
|
|
4
4
|
/**
|
|
@@ -379,7 +379,12 @@ declare module "sap/makit/Axis" {
|
|
|
379
379
|
fThickness?: float
|
|
380
380
|
): this;
|
|
381
381
|
}
|
|
382
|
-
|
|
382
|
+
/**
|
|
383
|
+
* Describes the settings that can be provided to the Axis constructor.
|
|
384
|
+
*
|
|
385
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
386
|
+
* will not be supported anymore from 1.38.
|
|
387
|
+
*/
|
|
383
388
|
export interface $AxisSettings extends $ElementSettings {
|
|
384
389
|
/**
|
|
385
390
|
* Indicates whether to show label of the Axis by the primary line
|
|
@@ -564,7 +569,12 @@ declare module "sap/makit/Category" {
|
|
|
564
569
|
sFormat?: string
|
|
565
570
|
): this;
|
|
566
571
|
}
|
|
567
|
-
|
|
572
|
+
/**
|
|
573
|
+
* Describes the settings that can be provided to the Category constructor.
|
|
574
|
+
*
|
|
575
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
576
|
+
* will not be supported anymore from 1.38.
|
|
577
|
+
*/
|
|
568
578
|
export interface $CategorySettings extends $ElementSettings {
|
|
569
579
|
/**
|
|
570
580
|
* Specify the name of the column to be mapped to the Category Axis's value.
|
|
@@ -751,7 +761,12 @@ declare module "sap/makit/CategoryAxis" {
|
|
|
751
761
|
sSortOrder?: SortOrder | keyof typeof SortOrder
|
|
752
762
|
): this;
|
|
753
763
|
}
|
|
754
|
-
|
|
764
|
+
/**
|
|
765
|
+
* Describes the settings that can be provided to the CategoryAxis constructor.
|
|
766
|
+
*
|
|
767
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
768
|
+
* will not be supported anymore from 1.38.
|
|
769
|
+
*/
|
|
755
770
|
export interface $CategoryAxisSettings extends $AxisSettings {
|
|
756
771
|
/**
|
|
757
772
|
* Sort order of the chart
|
|
@@ -1795,7 +1810,12 @@ declare module "sap/makit/Chart" {
|
|
|
1795
1810
|
*/
|
|
1796
1811
|
unbindRows(): this;
|
|
1797
1812
|
}
|
|
1798
|
-
|
|
1813
|
+
/**
|
|
1814
|
+
* Describes the settings that can be provided to the Chart constructor.
|
|
1815
|
+
*
|
|
1816
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and VizFrame in 1.38. This control
|
|
1817
|
+
* will not be supported anymore from 1.38.
|
|
1818
|
+
*/
|
|
1799
1819
|
export interface $ChartSettings extends $ControlSettings {
|
|
1800
1820
|
/**
|
|
1801
1821
|
* The width of the Chart
|
|
@@ -1968,22 +1988,40 @@ declare module "sap/makit/Chart" {
|
|
|
1968
1988
|
longpress?: (oEvent: Event) => void;
|
|
1969
1989
|
}
|
|
1970
1990
|
|
|
1991
|
+
/**
|
|
1992
|
+
* Parameters of the Chart#doubletap event.
|
|
1993
|
+
*/
|
|
1971
1994
|
export interface Chart$DoubletapEventParameters {}
|
|
1972
1995
|
|
|
1996
|
+
/**
|
|
1997
|
+
* Event object of the Chart#doubletap event.
|
|
1998
|
+
*/
|
|
1973
1999
|
export type Chart$DoubletapEvent = Event<
|
|
1974
2000
|
Chart$DoubletapEventParameters,
|
|
1975
2001
|
Chart
|
|
1976
2002
|
>;
|
|
1977
2003
|
|
|
2004
|
+
/**
|
|
2005
|
+
* Parameters of the Chart#longpress event.
|
|
2006
|
+
*/
|
|
1978
2007
|
export interface Chart$LongpressEventParameters {}
|
|
1979
2008
|
|
|
2009
|
+
/**
|
|
2010
|
+
* Event object of the Chart#longpress event.
|
|
2011
|
+
*/
|
|
1980
2012
|
export type Chart$LongpressEvent = Event<
|
|
1981
2013
|
Chart$LongpressEventParameters,
|
|
1982
2014
|
Chart
|
|
1983
2015
|
>;
|
|
1984
2016
|
|
|
2017
|
+
/**
|
|
2018
|
+
* Parameters of the Chart#tap event.
|
|
2019
|
+
*/
|
|
1985
2020
|
export interface Chart$TapEventParameters {}
|
|
1986
2021
|
|
|
2022
|
+
/**
|
|
2023
|
+
* Event object of the Chart#tap event.
|
|
2024
|
+
*/
|
|
1987
2025
|
export type Chart$TapEvent = Event<Chart$TapEventParameters, Chart>;
|
|
1988
2026
|
}
|
|
1989
2027
|
|
|
@@ -2144,7 +2182,12 @@ declare module "sap/makit/Column" {
|
|
|
2144
2182
|
oValue?: any
|
|
2145
2183
|
): this;
|
|
2146
2184
|
}
|
|
2147
|
-
|
|
2185
|
+
/**
|
|
2186
|
+
* Describes the settings that can be provided to the Column constructor.
|
|
2187
|
+
*
|
|
2188
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
2189
|
+
* will not be supported anymore from 1.38.
|
|
2190
|
+
*/
|
|
2148
2191
|
export interface $ColumnSettings extends $ElementSettings {
|
|
2149
2192
|
/**
|
|
2150
2193
|
* The name representing the Column
|
|
@@ -2903,7 +2946,12 @@ declare module "sap/makit/CombinationChart" {
|
|
|
2903
2946
|
sWidth?: CSSSize
|
|
2904
2947
|
): this;
|
|
2905
2948
|
}
|
|
2906
|
-
|
|
2949
|
+
/**
|
|
2950
|
+
* Describes the settings that can be provided to the CombinationChart constructor.
|
|
2951
|
+
*
|
|
2952
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
2953
|
+
* will not be supported anymore from 1.38.
|
|
2954
|
+
*/
|
|
2907
2955
|
export interface $CombinationChartSettings extends $ControlSettings {
|
|
2908
2956
|
/**
|
|
2909
2957
|
* The width of the Chart
|
|
@@ -3026,22 +3074,40 @@ declare module "sap/makit/CombinationChart" {
|
|
|
3026
3074
|
longpress?: (oEvent: Event) => void;
|
|
3027
3075
|
}
|
|
3028
3076
|
|
|
3077
|
+
/**
|
|
3078
|
+
* Parameters of the CombinationChart#doubletap event.
|
|
3079
|
+
*/
|
|
3029
3080
|
export interface CombinationChart$DoubletapEventParameters {}
|
|
3030
3081
|
|
|
3082
|
+
/**
|
|
3083
|
+
* Event object of the CombinationChart#doubletap event.
|
|
3084
|
+
*/
|
|
3031
3085
|
export type CombinationChart$DoubletapEvent = Event<
|
|
3032
3086
|
CombinationChart$DoubletapEventParameters,
|
|
3033
3087
|
CombinationChart
|
|
3034
3088
|
>;
|
|
3035
3089
|
|
|
3090
|
+
/**
|
|
3091
|
+
* Parameters of the CombinationChart#longpress event.
|
|
3092
|
+
*/
|
|
3036
3093
|
export interface CombinationChart$LongpressEventParameters {}
|
|
3037
3094
|
|
|
3095
|
+
/**
|
|
3096
|
+
* Event object of the CombinationChart#longpress event.
|
|
3097
|
+
*/
|
|
3038
3098
|
export type CombinationChart$LongpressEvent = Event<
|
|
3039
3099
|
CombinationChart$LongpressEventParameters,
|
|
3040
3100
|
CombinationChart
|
|
3041
3101
|
>;
|
|
3042
3102
|
|
|
3103
|
+
/**
|
|
3104
|
+
* Parameters of the CombinationChart#tap event.
|
|
3105
|
+
*/
|
|
3043
3106
|
export interface CombinationChart$TapEventParameters {}
|
|
3044
3107
|
|
|
3108
|
+
/**
|
|
3109
|
+
* Event object of the CombinationChart#tap event.
|
|
3110
|
+
*/
|
|
3045
3111
|
export type CombinationChart$TapEvent = Event<
|
|
3046
3112
|
CombinationChart$TapEventParameters,
|
|
3047
3113
|
CombinationChart
|
|
@@ -3479,7 +3545,12 @@ declare module "sap/makit/Layer" {
|
|
|
3479
3545
|
*/
|
|
3480
3546
|
unbindRows(): this;
|
|
3481
3547
|
}
|
|
3482
|
-
|
|
3548
|
+
/**
|
|
3549
|
+
* Describes the settings that can be provided to the Layer constructor.
|
|
3550
|
+
*
|
|
3551
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
3552
|
+
* will not be supported anymore from 1.38.
|
|
3553
|
+
*/
|
|
3483
3554
|
export interface $LayerSettings extends $ElementSettings {
|
|
3484
3555
|
/**
|
|
3485
3556
|
* Chart type
|
|
@@ -3611,7 +3682,12 @@ declare module "sap/makit/MakitLib" {
|
|
|
3611
3682
|
*/
|
|
3612
3683
|
static getMetadata(): ElementMetadata;
|
|
3613
3684
|
}
|
|
3614
|
-
|
|
3685
|
+
/**
|
|
3686
|
+
* Describes the settings that can be provided to the MakitLib constructor.
|
|
3687
|
+
*
|
|
3688
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
3689
|
+
* will not be supported anymore from 1.38.
|
|
3690
|
+
*/
|
|
3615
3691
|
export interface $MakitLibSettings extends $ElementSettings {}
|
|
3616
3692
|
}
|
|
3617
3693
|
|
|
@@ -3773,7 +3849,12 @@ declare module "sap/makit/Row" {
|
|
|
3773
3849
|
vCell: int | string | Column
|
|
3774
3850
|
): Column | null;
|
|
3775
3851
|
}
|
|
3776
|
-
|
|
3852
|
+
/**
|
|
3853
|
+
* Describes the settings that can be provided to the Row constructor.
|
|
3854
|
+
*
|
|
3855
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
3856
|
+
* will not be supported anymore from 1.38.
|
|
3857
|
+
*/
|
|
3777
3858
|
export interface $RowSettings extends $ElementSettings {
|
|
3778
3859
|
/**
|
|
3779
3860
|
* Representing the cells of the row. User should not add individual cells. The cells will be added automatically
|
|
@@ -3938,7 +4019,12 @@ declare module "sap/makit/Series" {
|
|
|
3938
4019
|
sFormat?: string
|
|
3939
4020
|
): this;
|
|
3940
4021
|
}
|
|
3941
|
-
|
|
4022
|
+
/**
|
|
4023
|
+
* Describes the settings that can be provided to the Series constructor.
|
|
4024
|
+
*
|
|
4025
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
4026
|
+
* will not be supported anymore from 1.38.
|
|
4027
|
+
*/
|
|
3942
4028
|
export interface $SeriesSettings extends $ElementSettings {
|
|
3943
4029
|
/**
|
|
3944
4030
|
* The name of the column that will be mapped to the chart's Series value
|
|
@@ -4154,7 +4240,12 @@ declare module "sap/makit/Value" {
|
|
|
4154
4240
|
sLocale?: string
|
|
4155
4241
|
): this;
|
|
4156
4242
|
}
|
|
4157
|
-
|
|
4243
|
+
/**
|
|
4244
|
+
* Describes the settings that can be provided to the Value constructor.
|
|
4245
|
+
*
|
|
4246
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
4247
|
+
* will not be supported anymore from 1.38.
|
|
4248
|
+
*/
|
|
4158
4249
|
export interface $ValueSettings extends $ElementSettings {
|
|
4159
4250
|
/**
|
|
4160
4251
|
* The user should map the column on this property. The expression allows more advanced column mapping.
|
|
@@ -4319,7 +4410,12 @@ declare module "sap/makit/ValueAxis" {
|
|
|
4319
4410
|
sMin?: string
|
|
4320
4411
|
): this;
|
|
4321
4412
|
}
|
|
4322
|
-
|
|
4413
|
+
/**
|
|
4414
|
+
* Describes the settings that can be provided to the ValueAxis constructor.
|
|
4415
|
+
*
|
|
4416
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
4417
|
+
* will not be supported anymore from 1.38.
|
|
4418
|
+
*/
|
|
4323
4419
|
export interface $ValueAxisSettings extends $AxisSettings {
|
|
4324
4420
|
/**
|
|
4325
4421
|
* Highest displayed value on the Value Axis (this value will be automatically adjusted to nearest major
|
|
@@ -4676,7 +4772,12 @@ declare module "sap/makit/ValueBubble" {
|
|
|
4676
4772
|
bVisible?: boolean
|
|
4677
4773
|
): this;
|
|
4678
4774
|
}
|
|
4679
|
-
|
|
4775
|
+
/**
|
|
4776
|
+
* Describes the settings that can be provided to the ValueBubble constructor.
|
|
4777
|
+
*
|
|
4778
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
4779
|
+
* will not be supported anymore from 1.38.
|
|
4780
|
+
*/
|
|
4680
4781
|
export interface $ValueBubbleSettings extends $ElementSettings {
|
|
4681
4782
|
/**
|
|
4682
4783
|
* Whether to display category's text on the Value Bubble
|
package/types/sap.me.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.123.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/me/library" {
|
|
4
4
|
/**
|
|
@@ -1034,7 +1034,12 @@ declare module "sap/me/Calendar" {
|
|
|
1034
1034
|
*/
|
|
1035
1035
|
unselectAllDates(): void;
|
|
1036
1036
|
}
|
|
1037
|
-
|
|
1037
|
+
/**
|
|
1038
|
+
* Describes the settings that can be provided to the Calendar constructor.
|
|
1039
|
+
*
|
|
1040
|
+
* @deprecated (since 1.26.0) - This control was experimental since 1.12. Please use the sap.ui.unified.Calendar
|
|
1041
|
+
* instead!
|
|
1042
|
+
*/
|
|
1038
1043
|
export interface $CalendarSettings extends $ControlSettings {
|
|
1039
1044
|
/**
|
|
1040
1045
|
* visibility of the control
|
|
@@ -1162,6 +1167,9 @@ declare module "sap/me/Calendar" {
|
|
|
1162
1167
|
changeRange?: (oEvent: Calendar$ChangeRangeEvent) => void;
|
|
1163
1168
|
}
|
|
1164
1169
|
|
|
1170
|
+
/**
|
|
1171
|
+
* Parameters of the Calendar#changeCurrentDate event.
|
|
1172
|
+
*/
|
|
1165
1173
|
export interface Calendar$ChangeCurrentDateEventParameters {
|
|
1166
1174
|
/**
|
|
1167
1175
|
* new date
|
|
@@ -1169,11 +1177,17 @@ declare module "sap/me/Calendar" {
|
|
|
1169
1177
|
currentDate?: string;
|
|
1170
1178
|
}
|
|
1171
1179
|
|
|
1180
|
+
/**
|
|
1181
|
+
* Event object of the Calendar#changeCurrentDate event.
|
|
1182
|
+
*/
|
|
1172
1183
|
export type Calendar$ChangeCurrentDateEvent = Event<
|
|
1173
1184
|
Calendar$ChangeCurrentDateEventParameters,
|
|
1174
1185
|
Calendar
|
|
1175
1186
|
>;
|
|
1176
1187
|
|
|
1188
|
+
/**
|
|
1189
|
+
* Parameters of the Calendar#changeRange event.
|
|
1190
|
+
*/
|
|
1177
1191
|
export interface Calendar$ChangeRangeEventParameters {
|
|
1178
1192
|
/**
|
|
1179
1193
|
* from date
|
|
@@ -1186,11 +1200,17 @@ declare module "sap/me/Calendar" {
|
|
|
1186
1200
|
toDate?: string;
|
|
1187
1201
|
}
|
|
1188
1202
|
|
|
1203
|
+
/**
|
|
1204
|
+
* Event object of the Calendar#changeRange event.
|
|
1205
|
+
*/
|
|
1189
1206
|
export type Calendar$ChangeRangeEvent = Event<
|
|
1190
1207
|
Calendar$ChangeRangeEventParameters,
|
|
1191
1208
|
Calendar
|
|
1192
1209
|
>;
|
|
1193
1210
|
|
|
1211
|
+
/**
|
|
1212
|
+
* Parameters of the Calendar#tapOnDate event.
|
|
1213
|
+
*/
|
|
1194
1214
|
export interface Calendar$TapOnDateEventParameters {
|
|
1195
1215
|
/**
|
|
1196
1216
|
* date tapped
|
|
@@ -1203,6 +1223,9 @@ declare module "sap/me/Calendar" {
|
|
|
1203
1223
|
didSelect?: boolean;
|
|
1204
1224
|
}
|
|
1205
1225
|
|
|
1226
|
+
/**
|
|
1227
|
+
* Event object of the Calendar#tapOnDate event.
|
|
1228
|
+
*/
|
|
1206
1229
|
export type Calendar$TapOnDateEvent = Event<
|
|
1207
1230
|
Calendar$TapOnDateEventParameters,
|
|
1208
1231
|
Calendar
|
|
@@ -1689,7 +1712,12 @@ declare module "sap/me/CalendarLegend" {
|
|
|
1689
1712
|
sWidth?: CSSSize
|
|
1690
1713
|
): this;
|
|
1691
1714
|
}
|
|
1692
|
-
|
|
1715
|
+
/**
|
|
1716
|
+
* Describes the settings that can be provided to the CalendarLegend constructor.
|
|
1717
|
+
*
|
|
1718
|
+
* @deprecated (since 1.34.0) - This control was experimental since 1.12. Please use the sap.ui.unified.CalendarLegend
|
|
1719
|
+
* instead!
|
|
1720
|
+
*/
|
|
1693
1721
|
export interface $CalendarLegendSettings extends $ControlSettings {
|
|
1694
1722
|
/**
|
|
1695
1723
|
* legend for type 00
|
|
@@ -2268,7 +2296,12 @@ declare module "sap/me/OverlapCalendar" {
|
|
|
2268
2296
|
sWidth?: CSSSize
|
|
2269
2297
|
): this;
|
|
2270
2298
|
}
|
|
2271
|
-
|
|
2299
|
+
/**
|
|
2300
|
+
* Describes the settings that can be provided to the OverlapCalendar constructor.
|
|
2301
|
+
*
|
|
2302
|
+
* @deprecated (since 1.34.0) - This control was experimental since 1.12. Please use the sap.m.PlanningCalendar
|
|
2303
|
+
* instead!
|
|
2304
|
+
*/
|
|
2272
2305
|
export interface $OverlapCalendarSettings extends $ControlSettings {
|
|
2273
2306
|
/**
|
|
2274
2307
|
* The first date to display for the calendar
|
|
@@ -2325,6 +2358,9 @@ declare module "sap/me/OverlapCalendar" {
|
|
|
2325
2358
|
changeDate?: (oEvent: OverlapCalendar$ChangeDateEvent) => void;
|
|
2326
2359
|
}
|
|
2327
2360
|
|
|
2361
|
+
/**
|
|
2362
|
+
* Parameters of the OverlapCalendar#changeDate event.
|
|
2363
|
+
*/
|
|
2328
2364
|
export interface OverlapCalendar$ChangeDateEventParameters {
|
|
2329
2365
|
/**
|
|
2330
2366
|
* The first date displayed in the calendar
|
|
@@ -2337,11 +2373,17 @@ declare module "sap/me/OverlapCalendar" {
|
|
|
2337
2373
|
lastDate?: object;
|
|
2338
2374
|
}
|
|
2339
2375
|
|
|
2376
|
+
/**
|
|
2377
|
+
* Event object of the OverlapCalendar#changeDate event.
|
|
2378
|
+
*/
|
|
2340
2379
|
export type OverlapCalendar$ChangeDateEvent = Event<
|
|
2341
2380
|
OverlapCalendar$ChangeDateEventParameters,
|
|
2342
2381
|
OverlapCalendar
|
|
2343
2382
|
>;
|
|
2344
2383
|
|
|
2384
|
+
/**
|
|
2385
|
+
* Parameters of the OverlapCalendar#endOfData event.
|
|
2386
|
+
*/
|
|
2345
2387
|
export interface OverlapCalendar$EndOfDataEventParameters {
|
|
2346
2388
|
/**
|
|
2347
2389
|
* Indicates if the data missing are before the start date or at the end
|
|
@@ -2349,6 +2391,9 @@ declare module "sap/me/OverlapCalendar" {
|
|
|
2349
2391
|
before?: boolean;
|
|
2350
2392
|
}
|
|
2351
2393
|
|
|
2394
|
+
/**
|
|
2395
|
+
* Event object of the OverlapCalendar#endOfData event.
|
|
2396
|
+
*/
|
|
2352
2397
|
export type OverlapCalendar$EndOfDataEvent = Event<
|
|
2353
2398
|
OverlapCalendar$EndOfDataEventParameters,
|
|
2354
2399
|
OverlapCalendar
|
|
@@ -2816,7 +2861,12 @@ declare module "sap/me/OverlapCalendarEvent" {
|
|
|
2816
2861
|
*/
|
|
2817
2862
|
unbindTypeName(): this;
|
|
2818
2863
|
}
|
|
2819
|
-
|
|
2864
|
+
/**
|
|
2865
|
+
* Describes the settings that can be provided to the OverlapCalendarEvent constructor.
|
|
2866
|
+
*
|
|
2867
|
+
* @deprecated (since 1.34.0) - This control was experimental since 1.12. Please use the sap.ui.unified.CalendarAppointment
|
|
2868
|
+
* instead!
|
|
2869
|
+
*/
|
|
2820
2870
|
export interface $OverlapCalendarEventSettings extends $ElementSettings {
|
|
2821
2871
|
/**
|
|
2822
2872
|
* The first day of the event
|
|
@@ -3134,7 +3184,11 @@ declare module "sap/me/ProgressIndicator" {
|
|
|
3134
3184
|
sWidth?: CSSSize
|
|
3135
3185
|
): this;
|
|
3136
3186
|
}
|
|
3137
|
-
|
|
3187
|
+
/**
|
|
3188
|
+
* Describes the settings that can be provided to the ProgressIndicator constructor.
|
|
3189
|
+
*
|
|
3190
|
+
* @deprecated (since 1.14) - This control is replaced by sap.m.ProgressIndicator
|
|
3191
|
+
*/
|
|
3138
3192
|
export interface $ProgressIndicatorSettings extends $ControlSettings {
|
|
3139
3193
|
/**
|
|
3140
3194
|
* Invisible controls are not rendered
|
|
@@ -3805,7 +3859,12 @@ declare module "sap/me/TabContainer" {
|
|
|
3805
3859
|
bVisible?: boolean
|
|
3806
3860
|
): this;
|
|
3807
3861
|
}
|
|
3808
|
-
|
|
3862
|
+
/**
|
|
3863
|
+
* Describes the settings that can be provided to the TabContainer constructor.
|
|
3864
|
+
*
|
|
3865
|
+
* @deprecated (since 1.15.0) - The functionality of this control is merged with the sap.m.IconTabBar. Please
|
|
3866
|
+
* use the sap.m.IconTabBar instead! This control will not be supported anymore.
|
|
3867
|
+
*/
|
|
3809
3868
|
export interface $TabContainerSettings extends $ControlSettings {
|
|
3810
3869
|
/**
|
|
3811
3870
|
* Return the index of the selected tab
|
|
@@ -3883,22 +3942,40 @@ declare module "sap/me/TabContainer" {
|
|
|
3883
3942
|
collapse?: (oEvent: Event) => void;
|
|
3884
3943
|
}
|
|
3885
3944
|
|
|
3945
|
+
/**
|
|
3946
|
+
* Parameters of the TabContainer#collapse event.
|
|
3947
|
+
*/
|
|
3886
3948
|
export interface TabContainer$CollapseEventParameters {}
|
|
3887
3949
|
|
|
3950
|
+
/**
|
|
3951
|
+
* Event object of the TabContainer#collapse event.
|
|
3952
|
+
*/
|
|
3888
3953
|
export type TabContainer$CollapseEvent = Event<
|
|
3889
3954
|
TabContainer$CollapseEventParameters,
|
|
3890
3955
|
TabContainer
|
|
3891
3956
|
>;
|
|
3892
3957
|
|
|
3958
|
+
/**
|
|
3959
|
+
* Parameters of the TabContainer#expand event.
|
|
3960
|
+
*/
|
|
3893
3961
|
export interface TabContainer$ExpandEventParameters {}
|
|
3894
3962
|
|
|
3963
|
+
/**
|
|
3964
|
+
* Event object of the TabContainer#expand event.
|
|
3965
|
+
*/
|
|
3895
3966
|
export type TabContainer$ExpandEvent = Event<
|
|
3896
3967
|
TabContainer$ExpandEventParameters,
|
|
3897
3968
|
TabContainer
|
|
3898
3969
|
>;
|
|
3899
3970
|
|
|
3971
|
+
/**
|
|
3972
|
+
* Parameters of the TabContainer#select event.
|
|
3973
|
+
*/
|
|
3900
3974
|
export interface TabContainer$SelectEventParameters {}
|
|
3901
3975
|
|
|
3976
|
+
/**
|
|
3977
|
+
* Event object of the TabContainer#select event.
|
|
3978
|
+
*/
|
|
3902
3979
|
export type TabContainer$SelectEvent = Event<
|
|
3903
3980
|
TabContainer$SelectEventParameters,
|
|
3904
3981
|
TabContainer
|
package/types/sap.ndc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.123.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ndc/library" {}
|
|
4
4
|
|
|
@@ -805,7 +805,9 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
805
805
|
fZoom: float
|
|
806
806
|
): this;
|
|
807
807
|
}
|
|
808
|
-
|
|
808
|
+
/**
|
|
809
|
+
* Describes the settings that can be provided to the BarcodeScannerButton constructor.
|
|
810
|
+
*/
|
|
809
811
|
export interface $BarcodeScannerButtonSettings extends $ControlSettings {
|
|
810
812
|
/**
|
|
811
813
|
* If set to true, the button remains visible if the scanner is not available and triggers a dialog to enter
|
|
@@ -866,6 +868,9 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
866
868
|
) => void;
|
|
867
869
|
}
|
|
868
870
|
|
|
871
|
+
/**
|
|
872
|
+
* Parameters of the BarcodeScannerButton#inputLiveUpdate event.
|
|
873
|
+
*/
|
|
869
874
|
export interface BarcodeScannerButton$InputLiveUpdateEventParameters {
|
|
870
875
|
/**
|
|
871
876
|
* The new value of the input field.
|
|
@@ -873,18 +878,30 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
873
878
|
newValue?: string;
|
|
874
879
|
}
|
|
875
880
|
|
|
881
|
+
/**
|
|
882
|
+
* Event object of the BarcodeScannerButton#inputLiveUpdate event.
|
|
883
|
+
*/
|
|
876
884
|
export type BarcodeScannerButton$InputLiveUpdateEvent = Event<
|
|
877
885
|
BarcodeScannerButton$InputLiveUpdateEventParameters,
|
|
878
886
|
BarcodeScannerButton
|
|
879
887
|
>;
|
|
880
888
|
|
|
889
|
+
/**
|
|
890
|
+
* Parameters of the BarcodeScannerButton#scanFail event.
|
|
891
|
+
*/
|
|
881
892
|
export interface BarcodeScannerButton$ScanFailEventParameters {}
|
|
882
893
|
|
|
894
|
+
/**
|
|
895
|
+
* Event object of the BarcodeScannerButton#scanFail event.
|
|
896
|
+
*/
|
|
883
897
|
export type BarcodeScannerButton$ScanFailEvent = Event<
|
|
884
898
|
BarcodeScannerButton$ScanFailEventParameters,
|
|
885
899
|
BarcodeScannerButton
|
|
886
900
|
>;
|
|
887
901
|
|
|
902
|
+
/**
|
|
903
|
+
* Parameters of the BarcodeScannerButton#scanSuccess event.
|
|
904
|
+
*/
|
|
888
905
|
export interface BarcodeScannerButton$ScanSuccessEventParameters {
|
|
889
906
|
/**
|
|
890
907
|
* The the text representation of the barcode data.
|
|
@@ -902,6 +919,9 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
902
919
|
cancelled?: boolean;
|
|
903
920
|
}
|
|
904
921
|
|
|
922
|
+
/**
|
|
923
|
+
* Event object of the BarcodeScannerButton#scanSuccess event.
|
|
924
|
+
*/
|
|
905
925
|
export type BarcodeScannerButton$ScanSuccessEvent = Event<
|
|
906
926
|
BarcodeScannerButton$ScanSuccessEventParameters,
|
|
907
927
|
BarcodeScannerButton
|
package/types/sap.ovp.d.ts
CHANGED