@sapui5/types 1.120.11 → 1.120.13
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/LICENSE.txt +13 -10
- package/README.md +1 -1
- package/package.json +1 -1
- package/types/sap.chart.d.ts +58 -6
- package/types/sap.esh.search.ui.d.ts +16 -2
- package/types/sap.f.d.ts +372 -54
- package/types/sap.fe.core.d.ts +11 -3
- package/types/sap.fe.macros.d.ts +96 -12
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.gantt.d.ts +1001 -139
- package/types/sap.insights.d.ts +4 -2
- package/types/sap.m.d.ts +3123 -276
- 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.sac.df.d.ts +294 -44
- package/types/sap.suite.ui.commons.d.ts +1148 -118
- package/types/sap.suite.ui.generic.template.d.ts +10 -2
- package/types/sap.suite.ui.microchart.d.ts +184 -28
- package/types/sap.tnt.d.ts +40 -8
- package/types/sap.ui.codeeditor.d.ts +16 -2
- package/types/sap.ui.commons.d.ts +756 -90
- package/types/sap.ui.comp.d.ts +884 -50
- package/types/sap.ui.core.d.ts +1112 -135
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +19 -4
- package/types/sap.ui.fl.d.ts +44 -3
- package/types/sap.ui.integration.d.ts +144 -6
- package/types/sap.ui.layout.d.ts +166 -41
- package/types/sap.ui.mdc.d.ts +430 -38
- 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 +222 -19
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +431 -35
- package/types/sap.ui.ux3.d.ts +524 -31
- package/types/sap.ui.vbm.d.ts +6427 -3308
- 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 +147 -12
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +118 -18
- package/types/sap.viz.d.ts +2619 -130
- package/types/sap.zen.commons.d.ts +104 -23
- package/types/sap.zen.crosstab.d.ts +96 -16
- package/types/sap.zen.dsh.d.ts +255 -149
package/types/sap.makit.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.13
|
|
2
2
|
|
|
3
3
|
declare module "sap/makit/library" {
|
|
4
4
|
/**
|
|
@@ -369,7 +369,12 @@ declare module "sap/makit/Axis" {
|
|
|
369
369
|
fThickness?: float
|
|
370
370
|
): this;
|
|
371
371
|
}
|
|
372
|
-
|
|
372
|
+
/**
|
|
373
|
+
* Describes the settings that can be provided to the Axis constructor.
|
|
374
|
+
*
|
|
375
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
376
|
+
* will not be supported anymore from 1.38.
|
|
377
|
+
*/
|
|
373
378
|
export interface $AxisSettings extends $ElementSettings {
|
|
374
379
|
/**
|
|
375
380
|
* Indicates whether to show label of the Axis by the primary line
|
|
@@ -554,7 +559,12 @@ declare module "sap/makit/Category" {
|
|
|
554
559
|
sFormat?: string
|
|
555
560
|
): this;
|
|
556
561
|
}
|
|
557
|
-
|
|
562
|
+
/**
|
|
563
|
+
* Describes the settings that can be provided to the Category constructor.
|
|
564
|
+
*
|
|
565
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
566
|
+
* will not be supported anymore from 1.38.
|
|
567
|
+
*/
|
|
558
568
|
export interface $CategorySettings extends $ElementSettings {
|
|
559
569
|
/**
|
|
560
570
|
* Specify the name of the column to be mapped to the Category Axis's value.
|
|
@@ -741,7 +751,12 @@ declare module "sap/makit/CategoryAxis" {
|
|
|
741
751
|
sSortOrder?: SortOrder | keyof typeof SortOrder
|
|
742
752
|
): this;
|
|
743
753
|
}
|
|
744
|
-
|
|
754
|
+
/**
|
|
755
|
+
* Describes the settings that can be provided to the CategoryAxis constructor.
|
|
756
|
+
*
|
|
757
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
758
|
+
* will not be supported anymore from 1.38.
|
|
759
|
+
*/
|
|
745
760
|
export interface $CategoryAxisSettings extends $AxisSettings {
|
|
746
761
|
/**
|
|
747
762
|
* Sort order of the chart
|
|
@@ -1785,7 +1800,12 @@ declare module "sap/makit/Chart" {
|
|
|
1785
1800
|
*/
|
|
1786
1801
|
unbindRows(): this;
|
|
1787
1802
|
}
|
|
1788
|
-
|
|
1803
|
+
/**
|
|
1804
|
+
* Describes the settings that can be provided to the Chart constructor.
|
|
1805
|
+
*
|
|
1806
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and VizFrame in 1.38. This control
|
|
1807
|
+
* will not be supported anymore from 1.38.
|
|
1808
|
+
*/
|
|
1789
1809
|
export interface $ChartSettings extends $ControlSettings {
|
|
1790
1810
|
/**
|
|
1791
1811
|
* The width of the Chart
|
|
@@ -1958,22 +1978,40 @@ declare module "sap/makit/Chart" {
|
|
|
1958
1978
|
longpress?: (oEvent: Event) => void;
|
|
1959
1979
|
}
|
|
1960
1980
|
|
|
1981
|
+
/**
|
|
1982
|
+
* Parameters of the Chart#doubletap event.
|
|
1983
|
+
*/
|
|
1961
1984
|
export interface Chart$DoubletapEventParameters {}
|
|
1962
1985
|
|
|
1986
|
+
/**
|
|
1987
|
+
* Event object of the Chart#doubletap event.
|
|
1988
|
+
*/
|
|
1963
1989
|
export type Chart$DoubletapEvent = Event<
|
|
1964
1990
|
Chart$DoubletapEventParameters,
|
|
1965
1991
|
Chart
|
|
1966
1992
|
>;
|
|
1967
1993
|
|
|
1994
|
+
/**
|
|
1995
|
+
* Parameters of the Chart#longpress event.
|
|
1996
|
+
*/
|
|
1968
1997
|
export interface Chart$LongpressEventParameters {}
|
|
1969
1998
|
|
|
1999
|
+
/**
|
|
2000
|
+
* Event object of the Chart#longpress event.
|
|
2001
|
+
*/
|
|
1970
2002
|
export type Chart$LongpressEvent = Event<
|
|
1971
2003
|
Chart$LongpressEventParameters,
|
|
1972
2004
|
Chart
|
|
1973
2005
|
>;
|
|
1974
2006
|
|
|
2007
|
+
/**
|
|
2008
|
+
* Parameters of the Chart#tap event.
|
|
2009
|
+
*/
|
|
1975
2010
|
export interface Chart$TapEventParameters {}
|
|
1976
2011
|
|
|
2012
|
+
/**
|
|
2013
|
+
* Event object of the Chart#tap event.
|
|
2014
|
+
*/
|
|
1977
2015
|
export type Chart$TapEvent = Event<Chart$TapEventParameters, Chart>;
|
|
1978
2016
|
}
|
|
1979
2017
|
|
|
@@ -2134,7 +2172,12 @@ declare module "sap/makit/Column" {
|
|
|
2134
2172
|
oValue?: any
|
|
2135
2173
|
): this;
|
|
2136
2174
|
}
|
|
2137
|
-
|
|
2175
|
+
/**
|
|
2176
|
+
* Describes the settings that can be provided to the Column constructor.
|
|
2177
|
+
*
|
|
2178
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
2179
|
+
* will not be supported anymore from 1.38.
|
|
2180
|
+
*/
|
|
2138
2181
|
export interface $ColumnSettings extends $ElementSettings {
|
|
2139
2182
|
/**
|
|
2140
2183
|
* The name representing the Column
|
|
@@ -2893,7 +2936,12 @@ declare module "sap/makit/CombinationChart" {
|
|
|
2893
2936
|
sWidth?: CSSSize
|
|
2894
2937
|
): this;
|
|
2895
2938
|
}
|
|
2896
|
-
|
|
2939
|
+
/**
|
|
2940
|
+
* Describes the settings that can be provided to the CombinationChart constructor.
|
|
2941
|
+
*
|
|
2942
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
2943
|
+
* will not be supported anymore from 1.38.
|
|
2944
|
+
*/
|
|
2897
2945
|
export interface $CombinationChartSettings extends $ControlSettings {
|
|
2898
2946
|
/**
|
|
2899
2947
|
* The width of the Chart
|
|
@@ -3016,22 +3064,40 @@ declare module "sap/makit/CombinationChart" {
|
|
|
3016
3064
|
longpress?: (oEvent: Event) => void;
|
|
3017
3065
|
}
|
|
3018
3066
|
|
|
3067
|
+
/**
|
|
3068
|
+
* Parameters of the CombinationChart#doubletap event.
|
|
3069
|
+
*/
|
|
3019
3070
|
export interface CombinationChart$DoubletapEventParameters {}
|
|
3020
3071
|
|
|
3072
|
+
/**
|
|
3073
|
+
* Event object of the CombinationChart#doubletap event.
|
|
3074
|
+
*/
|
|
3021
3075
|
export type CombinationChart$DoubletapEvent = Event<
|
|
3022
3076
|
CombinationChart$DoubletapEventParameters,
|
|
3023
3077
|
CombinationChart
|
|
3024
3078
|
>;
|
|
3025
3079
|
|
|
3080
|
+
/**
|
|
3081
|
+
* Parameters of the CombinationChart#longpress event.
|
|
3082
|
+
*/
|
|
3026
3083
|
export interface CombinationChart$LongpressEventParameters {}
|
|
3027
3084
|
|
|
3085
|
+
/**
|
|
3086
|
+
* Event object of the CombinationChart#longpress event.
|
|
3087
|
+
*/
|
|
3028
3088
|
export type CombinationChart$LongpressEvent = Event<
|
|
3029
3089
|
CombinationChart$LongpressEventParameters,
|
|
3030
3090
|
CombinationChart
|
|
3031
3091
|
>;
|
|
3032
3092
|
|
|
3093
|
+
/**
|
|
3094
|
+
* Parameters of the CombinationChart#tap event.
|
|
3095
|
+
*/
|
|
3033
3096
|
export interface CombinationChart$TapEventParameters {}
|
|
3034
3097
|
|
|
3098
|
+
/**
|
|
3099
|
+
* Event object of the CombinationChart#tap event.
|
|
3100
|
+
*/
|
|
3035
3101
|
export type CombinationChart$TapEvent = Event<
|
|
3036
3102
|
CombinationChart$TapEventParameters,
|
|
3037
3103
|
CombinationChart
|
|
@@ -3469,7 +3535,12 @@ declare module "sap/makit/Layer" {
|
|
|
3469
3535
|
*/
|
|
3470
3536
|
unbindRows(): this;
|
|
3471
3537
|
}
|
|
3472
|
-
|
|
3538
|
+
/**
|
|
3539
|
+
* Describes the settings that can be provided to the Layer constructor.
|
|
3540
|
+
*
|
|
3541
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
3542
|
+
* will not be supported anymore from 1.38.
|
|
3543
|
+
*/
|
|
3473
3544
|
export interface $LayerSettings extends $ElementSettings {
|
|
3474
3545
|
/**
|
|
3475
3546
|
* Chart type
|
|
@@ -3601,7 +3672,12 @@ declare module "sap/makit/MakitLib" {
|
|
|
3601
3672
|
*/
|
|
3602
3673
|
static getMetadata(): ElementMetadata;
|
|
3603
3674
|
}
|
|
3604
|
-
|
|
3675
|
+
/**
|
|
3676
|
+
* Describes the settings that can be provided to the MakitLib constructor.
|
|
3677
|
+
*
|
|
3678
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
3679
|
+
* will not be supported anymore from 1.38.
|
|
3680
|
+
*/
|
|
3605
3681
|
export interface $MakitLibSettings extends $ElementSettings {}
|
|
3606
3682
|
}
|
|
3607
3683
|
|
|
@@ -3763,7 +3839,12 @@ declare module "sap/makit/Row" {
|
|
|
3763
3839
|
vCell: int | string | Column
|
|
3764
3840
|
): Column | null;
|
|
3765
3841
|
}
|
|
3766
|
-
|
|
3842
|
+
/**
|
|
3843
|
+
* Describes the settings that can be provided to the Row constructor.
|
|
3844
|
+
*
|
|
3845
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
3846
|
+
* will not be supported anymore from 1.38.
|
|
3847
|
+
*/
|
|
3767
3848
|
export interface $RowSettings extends $ElementSettings {
|
|
3768
3849
|
/**
|
|
3769
3850
|
* Representing the cells of the row. User should not add individual cells. The cells will be added automatically
|
|
@@ -3928,7 +4009,12 @@ declare module "sap/makit/Series" {
|
|
|
3928
4009
|
sFormat?: string
|
|
3929
4010
|
): this;
|
|
3930
4011
|
}
|
|
3931
|
-
|
|
4012
|
+
/**
|
|
4013
|
+
* Describes the settings that can be provided to the Series constructor.
|
|
4014
|
+
*
|
|
4015
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
4016
|
+
* will not be supported anymore from 1.38.
|
|
4017
|
+
*/
|
|
3932
4018
|
export interface $SeriesSettings extends $ElementSettings {
|
|
3933
4019
|
/**
|
|
3934
4020
|
* The name of the column that will be mapped to the chart's Series value
|
|
@@ -4144,7 +4230,12 @@ declare module "sap/makit/Value" {
|
|
|
4144
4230
|
sLocale?: string
|
|
4145
4231
|
): this;
|
|
4146
4232
|
}
|
|
4147
|
-
|
|
4233
|
+
/**
|
|
4234
|
+
* Describes the settings that can be provided to the Value constructor.
|
|
4235
|
+
*
|
|
4236
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
4237
|
+
* will not be supported anymore from 1.38.
|
|
4238
|
+
*/
|
|
4148
4239
|
export interface $ValueSettings extends $ElementSettings {
|
|
4149
4240
|
/**
|
|
4150
4241
|
* The user should map the column on this property. The expression allows more advanced column mapping.
|
|
@@ -4309,7 +4400,12 @@ declare module "sap/makit/ValueAxis" {
|
|
|
4309
4400
|
sMin?: string
|
|
4310
4401
|
): this;
|
|
4311
4402
|
}
|
|
4312
|
-
|
|
4403
|
+
/**
|
|
4404
|
+
* Describes the settings that can be provided to the ValueAxis constructor.
|
|
4405
|
+
*
|
|
4406
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
4407
|
+
* will not be supported anymore from 1.38.
|
|
4408
|
+
*/
|
|
4313
4409
|
export interface $ValueAxisSettings extends $AxisSettings {
|
|
4314
4410
|
/**
|
|
4315
4411
|
* Highest displayed value on the Value Axis (this value will be automatically adjusted to nearest major
|
|
@@ -4666,7 +4762,12 @@ declare module "sap/makit/ValueBubble" {
|
|
|
4666
4762
|
bVisible?: boolean
|
|
4667
4763
|
): this;
|
|
4668
4764
|
}
|
|
4669
|
-
|
|
4765
|
+
/**
|
|
4766
|
+
* Describes the settings that can be provided to the ValueBubble constructor.
|
|
4767
|
+
*
|
|
4768
|
+
* @deprecated (since 1.38) - MAKIT charts have been replaced with sap.viz and vizFrame in 1.38. This control
|
|
4769
|
+
* will not be supported anymore from 1.38.
|
|
4770
|
+
*/
|
|
4670
4771
|
export interface $ValueBubbleSettings extends $ElementSettings {
|
|
4671
4772
|
/**
|
|
4672
4773
|
* 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.120.
|
|
1
|
+
// For Library Version: 1.120.13
|
|
2
2
|
|
|
3
3
|
declare module "sap/me/library" {
|
|
4
4
|
/**
|
|
@@ -1028,7 +1028,12 @@ declare module "sap/me/Calendar" {
|
|
|
1028
1028
|
*/
|
|
1029
1029
|
unselectAllDates(): void;
|
|
1030
1030
|
}
|
|
1031
|
-
|
|
1031
|
+
/**
|
|
1032
|
+
* Describes the settings that can be provided to the Calendar constructor.
|
|
1033
|
+
*
|
|
1034
|
+
* @deprecated (since 1.26.0) - This control was experimental since 1.12. Please use the sap.ui.unified.Calendar
|
|
1035
|
+
* instead!
|
|
1036
|
+
*/
|
|
1032
1037
|
export interface $CalendarSettings extends $ControlSettings {
|
|
1033
1038
|
/**
|
|
1034
1039
|
* visibility of the control
|
|
@@ -1156,6 +1161,9 @@ declare module "sap/me/Calendar" {
|
|
|
1156
1161
|
changeRange?: (oEvent: Calendar$ChangeRangeEvent) => void;
|
|
1157
1162
|
}
|
|
1158
1163
|
|
|
1164
|
+
/**
|
|
1165
|
+
* Parameters of the Calendar#changeCurrentDate event.
|
|
1166
|
+
*/
|
|
1159
1167
|
export interface Calendar$ChangeCurrentDateEventParameters {
|
|
1160
1168
|
/**
|
|
1161
1169
|
* new date
|
|
@@ -1163,11 +1171,17 @@ declare module "sap/me/Calendar" {
|
|
|
1163
1171
|
currentDate?: string;
|
|
1164
1172
|
}
|
|
1165
1173
|
|
|
1174
|
+
/**
|
|
1175
|
+
* Event object of the Calendar#changeCurrentDate event.
|
|
1176
|
+
*/
|
|
1166
1177
|
export type Calendar$ChangeCurrentDateEvent = Event<
|
|
1167
1178
|
Calendar$ChangeCurrentDateEventParameters,
|
|
1168
1179
|
Calendar
|
|
1169
1180
|
>;
|
|
1170
1181
|
|
|
1182
|
+
/**
|
|
1183
|
+
* Parameters of the Calendar#changeRange event.
|
|
1184
|
+
*/
|
|
1171
1185
|
export interface Calendar$ChangeRangeEventParameters {
|
|
1172
1186
|
/**
|
|
1173
1187
|
* from date
|
|
@@ -1180,11 +1194,17 @@ declare module "sap/me/Calendar" {
|
|
|
1180
1194
|
toDate?: string;
|
|
1181
1195
|
}
|
|
1182
1196
|
|
|
1197
|
+
/**
|
|
1198
|
+
* Event object of the Calendar#changeRange event.
|
|
1199
|
+
*/
|
|
1183
1200
|
export type Calendar$ChangeRangeEvent = Event<
|
|
1184
1201
|
Calendar$ChangeRangeEventParameters,
|
|
1185
1202
|
Calendar
|
|
1186
1203
|
>;
|
|
1187
1204
|
|
|
1205
|
+
/**
|
|
1206
|
+
* Parameters of the Calendar#tapOnDate event.
|
|
1207
|
+
*/
|
|
1188
1208
|
export interface Calendar$TapOnDateEventParameters {
|
|
1189
1209
|
/**
|
|
1190
1210
|
* date tapped
|
|
@@ -1197,6 +1217,9 @@ declare module "sap/me/Calendar" {
|
|
|
1197
1217
|
didSelect?: boolean;
|
|
1198
1218
|
}
|
|
1199
1219
|
|
|
1220
|
+
/**
|
|
1221
|
+
* Event object of the Calendar#tapOnDate event.
|
|
1222
|
+
*/
|
|
1200
1223
|
export type Calendar$TapOnDateEvent = Event<
|
|
1201
1224
|
Calendar$TapOnDateEventParameters,
|
|
1202
1225
|
Calendar
|
|
@@ -1683,7 +1706,12 @@ declare module "sap/me/CalendarLegend" {
|
|
|
1683
1706
|
sWidth?: CSSSize
|
|
1684
1707
|
): this;
|
|
1685
1708
|
}
|
|
1686
|
-
|
|
1709
|
+
/**
|
|
1710
|
+
* Describes the settings that can be provided to the CalendarLegend constructor.
|
|
1711
|
+
*
|
|
1712
|
+
* @deprecated (since 1.34.0) - This control was experimental since 1.12. Please use the sap.ui.unified.CalendarLegend
|
|
1713
|
+
* instead!
|
|
1714
|
+
*/
|
|
1687
1715
|
export interface $CalendarLegendSettings extends $ControlSettings {
|
|
1688
1716
|
/**
|
|
1689
1717
|
* legend for type 00
|
|
@@ -2262,7 +2290,12 @@ declare module "sap/me/OverlapCalendar" {
|
|
|
2262
2290
|
sWidth?: CSSSize
|
|
2263
2291
|
): this;
|
|
2264
2292
|
}
|
|
2265
|
-
|
|
2293
|
+
/**
|
|
2294
|
+
* Describes the settings that can be provided to the OverlapCalendar constructor.
|
|
2295
|
+
*
|
|
2296
|
+
* @deprecated (since 1.34.0) - This control was experimental since 1.12. Please use the sap.m.PlanningCalendar
|
|
2297
|
+
* instead!
|
|
2298
|
+
*/
|
|
2266
2299
|
export interface $OverlapCalendarSettings extends $ControlSettings {
|
|
2267
2300
|
/**
|
|
2268
2301
|
* The first date to display for the calendar
|
|
@@ -2319,6 +2352,9 @@ declare module "sap/me/OverlapCalendar" {
|
|
|
2319
2352
|
changeDate?: (oEvent: OverlapCalendar$ChangeDateEvent) => void;
|
|
2320
2353
|
}
|
|
2321
2354
|
|
|
2355
|
+
/**
|
|
2356
|
+
* Parameters of the OverlapCalendar#changeDate event.
|
|
2357
|
+
*/
|
|
2322
2358
|
export interface OverlapCalendar$ChangeDateEventParameters {
|
|
2323
2359
|
/**
|
|
2324
2360
|
* The first date displayed in the calendar
|
|
@@ -2331,11 +2367,17 @@ declare module "sap/me/OverlapCalendar" {
|
|
|
2331
2367
|
lastDate?: object;
|
|
2332
2368
|
}
|
|
2333
2369
|
|
|
2370
|
+
/**
|
|
2371
|
+
* Event object of the OverlapCalendar#changeDate event.
|
|
2372
|
+
*/
|
|
2334
2373
|
export type OverlapCalendar$ChangeDateEvent = Event<
|
|
2335
2374
|
OverlapCalendar$ChangeDateEventParameters,
|
|
2336
2375
|
OverlapCalendar
|
|
2337
2376
|
>;
|
|
2338
2377
|
|
|
2378
|
+
/**
|
|
2379
|
+
* Parameters of the OverlapCalendar#endOfData event.
|
|
2380
|
+
*/
|
|
2339
2381
|
export interface OverlapCalendar$EndOfDataEventParameters {
|
|
2340
2382
|
/**
|
|
2341
2383
|
* Indicates if the data missing are before the start date or at the end
|
|
@@ -2343,6 +2385,9 @@ declare module "sap/me/OverlapCalendar" {
|
|
|
2343
2385
|
before?: boolean;
|
|
2344
2386
|
}
|
|
2345
2387
|
|
|
2388
|
+
/**
|
|
2389
|
+
* Event object of the OverlapCalendar#endOfData event.
|
|
2390
|
+
*/
|
|
2346
2391
|
export type OverlapCalendar$EndOfDataEvent = Event<
|
|
2347
2392
|
OverlapCalendar$EndOfDataEventParameters,
|
|
2348
2393
|
OverlapCalendar
|
|
@@ -2810,7 +2855,12 @@ declare module "sap/me/OverlapCalendarEvent" {
|
|
|
2810
2855
|
*/
|
|
2811
2856
|
unbindTypeName(): this;
|
|
2812
2857
|
}
|
|
2813
|
-
|
|
2858
|
+
/**
|
|
2859
|
+
* Describes the settings that can be provided to the OverlapCalendarEvent constructor.
|
|
2860
|
+
*
|
|
2861
|
+
* @deprecated (since 1.34.0) - This control was experimental since 1.12. Please use the sap.ui.unified.CalendarAppointment
|
|
2862
|
+
* instead!
|
|
2863
|
+
*/
|
|
2814
2864
|
export interface $OverlapCalendarEventSettings extends $ElementSettings {
|
|
2815
2865
|
/**
|
|
2816
2866
|
* The first day of the event
|
|
@@ -3128,7 +3178,11 @@ declare module "sap/me/ProgressIndicator" {
|
|
|
3128
3178
|
sWidth?: CSSSize
|
|
3129
3179
|
): this;
|
|
3130
3180
|
}
|
|
3131
|
-
|
|
3181
|
+
/**
|
|
3182
|
+
* Describes the settings that can be provided to the ProgressIndicator constructor.
|
|
3183
|
+
*
|
|
3184
|
+
* @deprecated (since 1.14) - This control is replaced by sap.m.ProgressIndicator
|
|
3185
|
+
*/
|
|
3132
3186
|
export interface $ProgressIndicatorSettings extends $ControlSettings {
|
|
3133
3187
|
/**
|
|
3134
3188
|
* Invisible controls are not rendered
|
|
@@ -3799,7 +3853,12 @@ declare module "sap/me/TabContainer" {
|
|
|
3799
3853
|
bVisible?: boolean
|
|
3800
3854
|
): this;
|
|
3801
3855
|
}
|
|
3802
|
-
|
|
3856
|
+
/**
|
|
3857
|
+
* Describes the settings that can be provided to the TabContainer constructor.
|
|
3858
|
+
*
|
|
3859
|
+
* @deprecated (since 1.15.0) - The functionality of this control is merged with the sap.m.IconTabBar. Please
|
|
3860
|
+
* use the sap.m.IconTabBar instead! This control will not be supported anymore.
|
|
3861
|
+
*/
|
|
3803
3862
|
export interface $TabContainerSettings extends $ControlSettings {
|
|
3804
3863
|
/**
|
|
3805
3864
|
* Return the index of the selected tab
|
|
@@ -3877,22 +3936,40 @@ declare module "sap/me/TabContainer" {
|
|
|
3877
3936
|
collapse?: (oEvent: Event) => void;
|
|
3878
3937
|
}
|
|
3879
3938
|
|
|
3939
|
+
/**
|
|
3940
|
+
* Parameters of the TabContainer#collapse event.
|
|
3941
|
+
*/
|
|
3880
3942
|
export interface TabContainer$CollapseEventParameters {}
|
|
3881
3943
|
|
|
3944
|
+
/**
|
|
3945
|
+
* Event object of the TabContainer#collapse event.
|
|
3946
|
+
*/
|
|
3882
3947
|
export type TabContainer$CollapseEvent = Event<
|
|
3883
3948
|
TabContainer$CollapseEventParameters,
|
|
3884
3949
|
TabContainer
|
|
3885
3950
|
>;
|
|
3886
3951
|
|
|
3952
|
+
/**
|
|
3953
|
+
* Parameters of the TabContainer#expand event.
|
|
3954
|
+
*/
|
|
3887
3955
|
export interface TabContainer$ExpandEventParameters {}
|
|
3888
3956
|
|
|
3957
|
+
/**
|
|
3958
|
+
* Event object of the TabContainer#expand event.
|
|
3959
|
+
*/
|
|
3889
3960
|
export type TabContainer$ExpandEvent = Event<
|
|
3890
3961
|
TabContainer$ExpandEventParameters,
|
|
3891
3962
|
TabContainer
|
|
3892
3963
|
>;
|
|
3893
3964
|
|
|
3965
|
+
/**
|
|
3966
|
+
* Parameters of the TabContainer#select event.
|
|
3967
|
+
*/
|
|
3894
3968
|
export interface TabContainer$SelectEventParameters {}
|
|
3895
3969
|
|
|
3970
|
+
/**
|
|
3971
|
+
* Event object of the TabContainer#select event.
|
|
3972
|
+
*/
|
|
3896
3973
|
export type TabContainer$SelectEvent = Event<
|
|
3897
3974
|
TabContainer$SelectEventParameters,
|
|
3898
3975
|
TabContainer
|
package/types/sap.ndc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.13
|
|
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