@openui5/ts-types 1.109.0 → 1.110.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 +1 -1
- package/types/sap.f.d.ts +49 -28
- package/types/sap.m.d.ts +4272 -712
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +4 -2
- package/types/sap.ui.commons.d.ts +86 -32
- package/types/sap.ui.core.d.ts +4160 -3750
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +12 -2
- package/types/sap.ui.integration.d.ts +60 -41
- package/types/sap.ui.layout.d.ts +12 -12
- package/types/sap.ui.mdc.d.ts +11 -7
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +51 -349
- package/types/sap.ui.table.d.ts +66 -10
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +102 -322
- package/types/sap.ui.ux3.d.ts +7 -3
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +6 -6
- package/types/sap.ui.webc.main.d.ts +5 -5
- package/types/sap.uxap.d.ts +8 -29
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.110.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -42,6 +42,18 @@ declare namespace sap {
|
|
|
42
42
|
| boolean
|
|
43
43
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
44
44
|
| `{${string}}`;
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* @SINCE 1.110.0
|
|
48
|
+
*
|
|
49
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
50
|
+
* global configuration is used. Note: This property should not be used with `Month.prototype.firstDayOfWeek`
|
|
51
|
+
* property.
|
|
52
|
+
*/
|
|
53
|
+
calendarWeekNumbering?:
|
|
54
|
+
| sap.ui.core.date.CalendarWeekNumbering
|
|
55
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
56
|
+
| `{${string}}`;
|
|
45
57
|
}
|
|
46
58
|
|
|
47
59
|
interface $HeaderSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -912,14 +924,26 @@ declare namespace sap {
|
|
|
912
924
|
* Property `date` date to be focused or displayed. It must be in the displayed date range beginning with
|
|
913
925
|
* `startDate` and `days` days So set this properties before setting the date.
|
|
914
926
|
*
|
|
915
|
-
* @returns `this`
|
|
927
|
+
* @returns Reference to `this` for method chaining
|
|
916
928
|
*/
|
|
917
929
|
displayDate(
|
|
918
930
|
/**
|
|
919
931
|
* JavaScript date object for focused date.
|
|
920
932
|
*/
|
|
921
|
-
oDate:
|
|
933
|
+
oDate: Date
|
|
922
934
|
): this;
|
|
935
|
+
/**
|
|
936
|
+
* @SINCE 1.110.0
|
|
937
|
+
*
|
|
938
|
+
* Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
939
|
+
*
|
|
940
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
941
|
+
* global configuration is used. Note: This property should not be used with `Month.prototype.firstDayOfWeek`
|
|
942
|
+
* property.
|
|
943
|
+
*
|
|
944
|
+
* @returns Value of property `calendarWeekNumbering`
|
|
945
|
+
*/
|
|
946
|
+
getCalendarWeekNumbering(): sap.ui.core.date.CalendarWeekNumbering;
|
|
923
947
|
/**
|
|
924
948
|
* Gets current value of property {@link #getDays days}.
|
|
925
949
|
*
|
|
@@ -953,19 +977,38 @@ declare namespace sap {
|
|
|
953
977
|
* @returns Value of property `startDate`
|
|
954
978
|
*/
|
|
955
979
|
getStartDate(): object;
|
|
980
|
+
/**
|
|
981
|
+
* @SINCE 1.110.0
|
|
982
|
+
*
|
|
983
|
+
* Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
984
|
+
*
|
|
985
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
986
|
+
* global configuration is used. Note: This property should not be used with `Month.prototype.firstDayOfWeek`
|
|
987
|
+
* property.
|
|
988
|
+
*
|
|
989
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
990
|
+
*
|
|
991
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
992
|
+
*/
|
|
993
|
+
setCalendarWeekNumbering(
|
|
994
|
+
/**
|
|
995
|
+
* New value for property `calendarWeekNumbering`
|
|
996
|
+
*/
|
|
997
|
+
sCalendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering
|
|
998
|
+
): this;
|
|
956
999
|
/**
|
|
957
1000
|
* Setter for property `date`.
|
|
958
1001
|
*
|
|
959
1002
|
* Property `date` date to be focused or displayed. It must be in the displayed date range beginning with
|
|
960
1003
|
* `startDate` and `days` days So set this properties before setting the date.
|
|
961
1004
|
*
|
|
962
|
-
* @returns `this`
|
|
1005
|
+
* @returns Reference to `this` for method chaining
|
|
963
1006
|
*/
|
|
964
1007
|
setDate(
|
|
965
1008
|
/**
|
|
966
1009
|
* JavaScript date object for start date.
|
|
967
1010
|
*/
|
|
968
|
-
oDate:
|
|
1011
|
+
oDate: Date
|
|
969
1012
|
): this;
|
|
970
1013
|
/**
|
|
971
1014
|
* Sets a new value for property {@link #getDays days}.
|
|
@@ -1004,23 +1047,6 @@ declare namespace sap {
|
|
|
1004
1047
|
*/
|
|
1005
1048
|
bShowDayNamesLine?: boolean
|
|
1006
1049
|
): this;
|
|
1007
|
-
/**
|
|
1008
|
-
* Sets a new value for property {@link #getStartDate startDate}.
|
|
1009
|
-
*
|
|
1010
|
-
* Start date of the row If in rendering phase the date property is not in the range startDate + days, it
|
|
1011
|
-
* is set to the start date So after setting the start date the date should be set to be in the range of
|
|
1012
|
-
* the start date
|
|
1013
|
-
*
|
|
1014
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1015
|
-
*
|
|
1016
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
1017
|
-
*/
|
|
1018
|
-
setStartDate(
|
|
1019
|
-
/**
|
|
1020
|
-
* New value for property `startDate`
|
|
1021
|
-
*/
|
|
1022
|
-
oStartDate: object
|
|
1023
|
-
): this;
|
|
1024
1050
|
}
|
|
1025
1051
|
/**
|
|
1026
1052
|
* @SINCE 1.28.0
|
|
@@ -2220,16 +2246,16 @@ declare namespace sap {
|
|
|
2220
2246
|
oListener?: object
|
|
2221
2247
|
): this;
|
|
2222
2248
|
/**
|
|
2223
|
-
*
|
|
2249
|
+
* Checks if a date is focusable in the current rendered output. So if not rendered or in other month it
|
|
2224
2250
|
* is not focusable.
|
|
2225
2251
|
*
|
|
2226
2252
|
* @returns flag if focusable
|
|
2227
2253
|
*/
|
|
2228
2254
|
checkDateFocusable(
|
|
2229
2255
|
/**
|
|
2230
|
-
* JavaScript date object for focused date
|
|
2256
|
+
* JavaScript date object for focused date
|
|
2231
2257
|
*/
|
|
2232
|
-
oDate:
|
|
2258
|
+
oDate: Date
|
|
2233
2259
|
): boolean;
|
|
2234
2260
|
/**
|
|
2235
2261
|
* @SINCE 1.38.0
|
|
@@ -2306,15 +2332,15 @@ declare namespace sap {
|
|
|
2306
2332
|
oListener?: object
|
|
2307
2333
|
): this;
|
|
2308
2334
|
/**
|
|
2309
|
-
*
|
|
2335
|
+
* Displays the month of a given date without setting the focus.
|
|
2310
2336
|
*
|
|
2311
|
-
* @returns `this`
|
|
2337
|
+
* @returns Reference to `this` for method chaining
|
|
2312
2338
|
*/
|
|
2313
2339
|
displayDate(
|
|
2314
2340
|
/**
|
|
2315
|
-
* JavaScript date object for focused date
|
|
2341
|
+
* JavaScript date object for focused date
|
|
2316
2342
|
*/
|
|
2317
|
-
oDate:
|
|
2343
|
+
oDate: Date
|
|
2318
2344
|
): this;
|
|
2319
2345
|
/**
|
|
2320
2346
|
* Fires event {@link #event:focus focus} to attached listeners.
|
|
@@ -2722,22 +2748,6 @@ declare namespace sap {
|
|
|
2722
2748
|
*/
|
|
2723
2749
|
sCalendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering
|
|
2724
2750
|
): this;
|
|
2725
|
-
/**
|
|
2726
|
-
* Sets a new value for property {@link #getDate date}.
|
|
2727
|
-
*
|
|
2728
|
-
* A date as JavaScript Date object. The month including this date is rendered and this date is focused
|
|
2729
|
-
* initially (if no other focus is set).
|
|
2730
|
-
*
|
|
2731
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2732
|
-
*
|
|
2733
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
2734
|
-
*/
|
|
2735
|
-
setDate(
|
|
2736
|
-
/**
|
|
2737
|
-
* New value for property `date`
|
|
2738
|
-
*/
|
|
2739
|
-
oDate: object
|
|
2740
|
-
): this;
|
|
2741
2751
|
/**
|
|
2742
2752
|
* @SINCE 1.28.9
|
|
2743
2753
|
*
|
|
@@ -3687,7 +3697,7 @@ declare namespace sap {
|
|
|
3687
3697
|
/**
|
|
3688
3698
|
* JavaScript Date object for focused date.
|
|
3689
3699
|
*/
|
|
3690
|
-
oDateTime:
|
|
3700
|
+
oDateTime: Date
|
|
3691
3701
|
): boolean;
|
|
3692
3702
|
/**
|
|
3693
3703
|
* Destroys all the selectedDates in the aggregation {@link #getSelectedDates selectedDates}.
|
|
@@ -3738,13 +3748,13 @@ declare namespace sap {
|
|
|
3738
3748
|
/**
|
|
3739
3749
|
* Displays the month of a given date without setting the focus
|
|
3740
3750
|
*
|
|
3741
|
-
* @returns `this`
|
|
3751
|
+
* @returns Reference to `this` for method chaining
|
|
3742
3752
|
*/
|
|
3743
3753
|
displayDate(
|
|
3744
3754
|
/**
|
|
3745
3755
|
* JavaScript Date object for focused date.
|
|
3746
3756
|
*/
|
|
3747
|
-
oDate:
|
|
3757
|
+
oDate: Date
|
|
3748
3758
|
): this;
|
|
3749
3759
|
/**
|
|
3750
3760
|
* Fires event {@link #event:focus focus} to attached listeners.
|
|
@@ -4067,7 +4077,7 @@ declare namespace sap {
|
|
|
4067
4077
|
/**
|
|
4068
4078
|
* New value for property `primaryCalendarType`
|
|
4069
4079
|
*/
|
|
4070
|
-
sPrimaryCalendarType
|
|
4080
|
+
sPrimaryCalendarType: sap.ui.core.CalendarType
|
|
4071
4081
|
): this;
|
|
4072
4082
|
/**
|
|
4073
4083
|
* @SINCE 1.109.0
|
|
@@ -4085,7 +4095,7 @@ declare namespace sap {
|
|
|
4085
4095
|
/**
|
|
4086
4096
|
* New value for property `secondaryCalendarType`
|
|
4087
4097
|
*/
|
|
4088
|
-
sSecondaryCalendarType
|
|
4098
|
+
sSecondaryCalendarType: sap.ui.core.CalendarType
|
|
4089
4099
|
): this;
|
|
4090
4100
|
/**
|
|
4091
4101
|
* Sets a new value for property {@link #getShowHeader showHeader}.
|
|
@@ -4123,22 +4133,6 @@ declare namespace sap {
|
|
|
4123
4133
|
*/
|
|
4124
4134
|
bSingleSelection?: boolean
|
|
4125
4135
|
): this;
|
|
4126
|
-
/**
|
|
4127
|
-
* Sets a new value for property {@link #getStartDate startDate}.
|
|
4128
|
-
*
|
|
4129
|
-
* Start date, as JavaScript Date object, of the row. The month of this date is the first month of the displayed
|
|
4130
|
-
* row.
|
|
4131
|
-
*
|
|
4132
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4133
|
-
*
|
|
4134
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4135
|
-
*/
|
|
4136
|
-
setStartDate(
|
|
4137
|
-
/**
|
|
4138
|
-
* New value for property `startDate`
|
|
4139
|
-
*/
|
|
4140
|
-
oStartDate: object
|
|
4141
|
-
): this;
|
|
4142
4136
|
}
|
|
4143
4137
|
/**
|
|
4144
4138
|
* @SINCE 1.32.0
|
|
@@ -4348,7 +4342,7 @@ declare namespace sap {
|
|
|
4348
4342
|
/**
|
|
4349
4343
|
* JavaScript Date object for focused date.
|
|
4350
4344
|
*/
|
|
4351
|
-
oDate:
|
|
4345
|
+
oDate: Date
|
|
4352
4346
|
): boolean;
|
|
4353
4347
|
/**
|
|
4354
4348
|
* Destroys all the selectedDates in the aggregation {@link #getSelectedDates selectedDates}.
|
|
@@ -4397,15 +4391,15 @@ declare namespace sap {
|
|
|
4397
4391
|
oListener?: object
|
|
4398
4392
|
): this;
|
|
4399
4393
|
/**
|
|
4400
|
-
* Displays the given date without setting the focus
|
|
4394
|
+
* Displays the given date without setting the focus.
|
|
4401
4395
|
*
|
|
4402
|
-
* @returns `this`
|
|
4396
|
+
* @returns Reference to `this` for method chaining
|
|
4403
4397
|
*/
|
|
4404
4398
|
displayDate(
|
|
4405
4399
|
/**
|
|
4406
|
-
* JavaScript Date
|
|
4400
|
+
* A JavaScript Date
|
|
4407
4401
|
*/
|
|
4408
|
-
oDate:
|
|
4402
|
+
oDate: Date
|
|
4409
4403
|
): this;
|
|
4410
4404
|
/**
|
|
4411
4405
|
* Fires event {@link #event:focus focus} to attached listeners.
|
|
@@ -4674,24 +4668,6 @@ declare namespace sap {
|
|
|
4674
4668
|
*/
|
|
4675
4669
|
vSpecialDate: int | string | sap.ui.unified.DateTypeRange
|
|
4676
4670
|
): sap.ui.unified.DateTypeRange | null;
|
|
4677
|
-
/**
|
|
4678
|
-
* Sets a new value for property {@link #getDate date}.
|
|
4679
|
-
*
|
|
4680
|
-
* A date as JavaScript Date object. The month including this date is rendered and this date is focused
|
|
4681
|
-
* initially (if no other focus is set). If the date property is not in the range `startDate` + `items`
|
|
4682
|
-
* in the rendering phase, it is set to the `startDate`. So after setting the `startDate` the date should
|
|
4683
|
-
* be set to be in the visible range.
|
|
4684
|
-
*
|
|
4685
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4686
|
-
*
|
|
4687
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4688
|
-
*/
|
|
4689
|
-
setDate(
|
|
4690
|
-
/**
|
|
4691
|
-
* New value for property `date`
|
|
4692
|
-
*/
|
|
4693
|
-
oDate: object
|
|
4694
|
-
): this;
|
|
4695
4671
|
/**
|
|
4696
4672
|
* Sets a new value for property {@link #getIntervalMinutes intervalMinutes}.
|
|
4697
4673
|
*
|
|
@@ -4779,7 +4755,7 @@ declare namespace sap {
|
|
|
4779
4755
|
/**
|
|
4780
4756
|
* New value for property `primaryCalendarType`
|
|
4781
4757
|
*/
|
|
4782
|
-
sPrimaryCalendarType
|
|
4758
|
+
sPrimaryCalendarType: sap.ui.core.CalendarType
|
|
4783
4759
|
): this;
|
|
4784
4760
|
/**
|
|
4785
4761
|
* @SINCE 1.109.0
|
|
@@ -4797,7 +4773,7 @@ declare namespace sap {
|
|
|
4797
4773
|
/**
|
|
4798
4774
|
* New value for property `secondaryCalendarType`
|
|
4799
4775
|
*/
|
|
4800
|
-
sSecondaryCalendarType
|
|
4776
|
+
sSecondaryCalendarType: sap.ui.core.CalendarType
|
|
4801
4777
|
): this;
|
|
4802
4778
|
/**
|
|
4803
4779
|
* Sets a new value for property {@link #getShowHeader showHeader}.
|
|
@@ -4835,21 +4811,6 @@ declare namespace sap {
|
|
|
4835
4811
|
*/
|
|
4836
4812
|
bSingleSelection?: boolean
|
|
4837
4813
|
): this;
|
|
4838
|
-
/**
|
|
4839
|
-
* Sets a new value for property {@link #getStartDate startDate}.
|
|
4840
|
-
*
|
|
4841
|
-
* Start date, as JavaScript Date object, of the row.
|
|
4842
|
-
*
|
|
4843
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4844
|
-
*
|
|
4845
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4846
|
-
*/
|
|
4847
|
-
setStartDate(
|
|
4848
|
-
/**
|
|
4849
|
-
* New value for property `startDate`
|
|
4850
|
-
*/
|
|
4851
|
-
oStartDate: object
|
|
4852
|
-
): this;
|
|
4853
4814
|
}
|
|
4854
4815
|
/**
|
|
4855
4816
|
* @SINCE 1.28.0
|
|
@@ -5124,12 +5085,12 @@ declare namespace sap {
|
|
|
5124
5085
|
/**
|
|
5125
5086
|
* @SINCE 1.38.0
|
|
5126
5087
|
*
|
|
5127
|
-
*
|
|
5088
|
+
* Return the first date of the first rendered year **Note:** If the YearPicker is not rendered no date
|
|
5128
5089
|
* is returned
|
|
5129
5090
|
*
|
|
5130
|
-
* @returns JavaScript Date
|
|
5091
|
+
* @returns A JavaScript Date
|
|
5131
5092
|
*/
|
|
5132
|
-
getFirstRenderedDate():
|
|
5093
|
+
getFirstRenderedDate(): Date;
|
|
5133
5094
|
/**
|
|
5134
5095
|
* @SINCE 1.74
|
|
5135
5096
|
*
|
|
@@ -5232,13 +5193,13 @@ declare namespace sap {
|
|
|
5232
5193
|
/**
|
|
5233
5194
|
* displays the next page
|
|
5234
5195
|
*
|
|
5235
|
-
* @returns `this`
|
|
5196
|
+
* @returns Reference to `this` for method chaining
|
|
5236
5197
|
*/
|
|
5237
5198
|
nextPage(): this;
|
|
5238
5199
|
/**
|
|
5239
5200
|
* displays the previous page
|
|
5240
5201
|
*
|
|
5241
|
-
* @returns `this`
|
|
5202
|
+
* @returns Reference to `this` for method chaining
|
|
5242
5203
|
*/
|
|
5243
5204
|
previousPage(): this;
|
|
5244
5205
|
/**
|
|
@@ -8027,13 +7988,13 @@ declare namespace sap {
|
|
|
8027
7988
|
*
|
|
8028
7989
|
* Displays a date in the calendar but doesn't set the focus.
|
|
8029
7990
|
*
|
|
8030
|
-
* @returns `this`
|
|
7991
|
+
* @returns Reference to `this` for method chaining
|
|
8031
7992
|
*/
|
|
8032
7993
|
displayDate(
|
|
8033
7994
|
/**
|
|
8034
|
-
* JavaScript date object for focused date
|
|
7995
|
+
* JavaScript date object for focused date
|
|
8035
7996
|
*/
|
|
8036
|
-
oDate:
|
|
7997
|
+
oDate: Date
|
|
8037
7998
|
): this;
|
|
8038
7999
|
/**
|
|
8039
8000
|
* Fires event {@link #event:cancel cancel} to attached listeners.
|
|
@@ -8098,13 +8059,13 @@ declare namespace sap {
|
|
|
8098
8059
|
/**
|
|
8099
8060
|
* Displays and sets the focused date of the calendar.
|
|
8100
8061
|
*
|
|
8101
|
-
* @returns `this`
|
|
8062
|
+
* @returns Reference to `this` for method chaining
|
|
8102
8063
|
*/
|
|
8103
8064
|
focusDate(
|
|
8104
8065
|
/**
|
|
8105
8066
|
* A JavaScript date object for focused date
|
|
8106
8067
|
*/
|
|
8107
|
-
oDate:
|
|
8068
|
+
oDate: Date
|
|
8108
8069
|
): this;
|
|
8109
8070
|
/**
|
|
8110
8071
|
* @SINCE 1.28.0
|
|
@@ -8297,22 +8258,6 @@ declare namespace sap {
|
|
|
8297
8258
|
* @returns Value of property `singleSelection`
|
|
8298
8259
|
*/
|
|
8299
8260
|
getSingleSelection(): boolean;
|
|
8300
|
-
/**
|
|
8301
|
-
* @SINCE 1.24.0
|
|
8302
|
-
*
|
|
8303
|
-
* Gets content of aggregation {@link #getSpecialDates specialDates}.
|
|
8304
|
-
*
|
|
8305
|
-
* Dates or date ranges with type, to visualize special days in the `Calendar`. If one day is assigned to
|
|
8306
|
-
* more than one Type, only the first one will be used.
|
|
8307
|
-
*
|
|
8308
|
-
* To set a single date (instead of a range), set only the `startDate` property of the {@link sap.ui.unified.DateRange}
|
|
8309
|
-
* class.
|
|
8310
|
-
*
|
|
8311
|
-
* **Note:** Keep in mind that the `NonWorking` type is for marking specific dates or date ranges as non-working,
|
|
8312
|
-
* where if you need a weekly-reccuring non-working days (weekend), you should use the `nonWorkingDays`
|
|
8313
|
-
* property. Both the non-working days (from property) and dates (from aggregation) are visualized the same.
|
|
8314
|
-
*/
|
|
8315
|
-
getSpecialDates(): sap.ui.unified.DateTypeRange[];
|
|
8316
8261
|
/**
|
|
8317
8262
|
* @SINCE 1.34.1
|
|
8318
8263
|
*
|
|
@@ -8320,9 +8265,9 @@ declare namespace sap {
|
|
|
8320
8265
|
*
|
|
8321
8266
|
* There might be some days of the previous month shown, but they can not be focused.
|
|
8322
8267
|
*
|
|
8323
|
-
* @returns JavaScript date object for start date
|
|
8268
|
+
* @returns JavaScript date object for start date
|
|
8324
8269
|
*/
|
|
8325
|
-
getStartDate():
|
|
8270
|
+
getStartDate(): Date;
|
|
8326
8271
|
/**
|
|
8327
8272
|
* @SINCE 1.38.0
|
|
8328
8273
|
*
|
|
@@ -8589,7 +8534,7 @@ declare namespace sap {
|
|
|
8589
8534
|
/**
|
|
8590
8535
|
* Sets a maximum date for the calendar.
|
|
8591
8536
|
*
|
|
8592
|
-
* @returns `this` for method chaining
|
|
8537
|
+
* @returns Reference to `this` for method chaining
|
|
8593
8538
|
*/
|
|
8594
8539
|
setMaxDate(
|
|
8595
8540
|
/**
|
|
@@ -8600,7 +8545,7 @@ declare namespace sap {
|
|
|
8600
8545
|
/**
|
|
8601
8546
|
* Sets a minimum date for the calendar.
|
|
8602
8547
|
*
|
|
8603
|
-
* @returns `this` for method chaining
|
|
8548
|
+
* @returns Reference to `this` for method chaining
|
|
8604
8549
|
*/
|
|
8605
8550
|
setMinDate(
|
|
8606
8551
|
/**
|
|
@@ -8692,7 +8637,7 @@ declare namespace sap {
|
|
|
8692
8637
|
/**
|
|
8693
8638
|
* Sets the visibility of the Current date button in the calendar.
|
|
8694
8639
|
*
|
|
8695
|
-
* @returns `this` for method chaining
|
|
8640
|
+
* @returns Reference to `this` for method chaining
|
|
8696
8641
|
*/
|
|
8697
8642
|
setShowCurrentDateButton(
|
|
8698
8643
|
/**
|
|
@@ -9251,14 +9196,6 @@ declare namespace sap {
|
|
|
9251
9196
|
* @returns Value of property `showDayNamesLine`
|
|
9252
9197
|
*/
|
|
9253
9198
|
getShowDayNamesLine(): boolean;
|
|
9254
|
-
/**
|
|
9255
|
-
* Gets current value of property {@link #getStartDate startDate}.
|
|
9256
|
-
*
|
|
9257
|
-
* Start date of the Interval
|
|
9258
|
-
*
|
|
9259
|
-
* @returns Value of property `startDate`
|
|
9260
|
-
*/
|
|
9261
|
-
getStartDate(): object;
|
|
9262
9199
|
/**
|
|
9263
9200
|
* Sets a new value for property {@link #getDays days}.
|
|
9264
9201
|
*
|
|
@@ -9281,7 +9218,7 @@ declare namespace sap {
|
|
|
9281
9218
|
*
|
|
9282
9219
|
* Property `firstDayOfWeek` is not supported in `sap.ui.unified.CalendarDateInterval` control.
|
|
9283
9220
|
*
|
|
9284
|
-
* @returns `this`
|
|
9221
|
+
* @returns Reference to `this` for method chaining
|
|
9285
9222
|
*/
|
|
9286
9223
|
setFirstDayOfWeek(
|
|
9287
9224
|
/**
|
|
@@ -9294,7 +9231,7 @@ declare namespace sap {
|
|
|
9294
9231
|
*
|
|
9295
9232
|
* Property `months` is not supported in `sap.ui.unified.CalendarDateInterval` control.
|
|
9296
9233
|
*
|
|
9297
|
-
* @returns `this`
|
|
9234
|
+
* @returns Reference to `this` for method chaining
|
|
9298
9235
|
*/
|
|
9299
9236
|
setMonths(
|
|
9300
9237
|
/**
|
|
@@ -9341,21 +9278,6 @@ declare namespace sap {
|
|
|
9341
9278
|
*/
|
|
9342
9279
|
bShowDayNamesLine?: boolean
|
|
9343
9280
|
): this;
|
|
9344
|
-
/**
|
|
9345
|
-
* Sets a new value for property {@link #getStartDate startDate}.
|
|
9346
|
-
*
|
|
9347
|
-
* Start date of the Interval
|
|
9348
|
-
*
|
|
9349
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9350
|
-
*
|
|
9351
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
9352
|
-
*/
|
|
9353
|
-
setStartDate(
|
|
9354
|
-
/**
|
|
9355
|
-
* New value for property `startDate`
|
|
9356
|
-
*/
|
|
9357
|
-
oStartDate: object
|
|
9358
|
-
): this;
|
|
9359
9281
|
}
|
|
9360
9282
|
/**
|
|
9361
9283
|
* @SINCE 1.24.0
|
|
@@ -10027,13 +9949,13 @@ declare namespace sap {
|
|
|
10027
9949
|
/**
|
|
10028
9950
|
* Displays a month in the `CalendarMonthInterval` but doesn't set the focus.
|
|
10029
9951
|
*
|
|
10030
|
-
* @returns `this`
|
|
9952
|
+
* @returns Reference to `this` for method chaining
|
|
10031
9953
|
*/
|
|
10032
9954
|
displayDate(
|
|
10033
9955
|
/**
|
|
10034
9956
|
* JavaScript date object for displayed date. (The month of this date will be displayed.)
|
|
10035
9957
|
*/
|
|
10036
|
-
oDatetime:
|
|
9958
|
+
oDatetime: Date
|
|
10037
9959
|
): this;
|
|
10038
9960
|
/**
|
|
10039
9961
|
* Fires event {@link #event:cancel cancel} to attached listeners.
|
|
@@ -10079,7 +10001,7 @@ declare namespace sap {
|
|
|
10079
10001
|
/**
|
|
10080
10002
|
* JavaScript date object for focused date. (The month of this date will be focused.)
|
|
10081
10003
|
*/
|
|
10082
|
-
oDatetime:
|
|
10004
|
+
oDatetime: Date
|
|
10083
10005
|
): sap.ui.unified.Calendar;
|
|
10084
10006
|
/**
|
|
10085
10007
|
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
|
|
@@ -10345,46 +10267,6 @@ declare namespace sap {
|
|
|
10345
10267
|
*/
|
|
10346
10268
|
oLegend: sap.ui.core.ID | sap.ui.unified.CalendarLegend
|
|
10347
10269
|
): this;
|
|
10348
|
-
/**
|
|
10349
|
-
* @SINCE 1.38.0
|
|
10350
|
-
*
|
|
10351
|
-
* Sets a new value for property {@link #getMaxDate maxDate}.
|
|
10352
|
-
*
|
|
10353
|
-
* Maximum date that can be shown and selected in the Calendar. This must be a JavaScript date object.
|
|
10354
|
-
*
|
|
10355
|
-
* **Note:** If the `maxDate` is set to be before the `minDate`, the `minDate` is set to the begin of the
|
|
10356
|
-
* month of the `maxDate`.
|
|
10357
|
-
*
|
|
10358
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10359
|
-
*
|
|
10360
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
10361
|
-
*/
|
|
10362
|
-
setMaxDate(
|
|
10363
|
-
/**
|
|
10364
|
-
* New value for property `maxDate`
|
|
10365
|
-
*/
|
|
10366
|
-
oMaxDate?: object
|
|
10367
|
-
): this;
|
|
10368
|
-
/**
|
|
10369
|
-
* @SINCE 1.38.0
|
|
10370
|
-
*
|
|
10371
|
-
* Sets a new value for property {@link #getMinDate minDate}.
|
|
10372
|
-
*
|
|
10373
|
-
* Minimum date that can be shown and selected in the Calendar. This must be a JavaScript date object.
|
|
10374
|
-
*
|
|
10375
|
-
* **Note:** If the `minDate` is set to be after the `maxDate`, the `maxDate` is set to the end of the month
|
|
10376
|
-
* of the `minDate`.
|
|
10377
|
-
*
|
|
10378
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10379
|
-
*
|
|
10380
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
10381
|
-
*/
|
|
10382
|
-
setMinDate(
|
|
10383
|
-
/**
|
|
10384
|
-
* New value for property `minDate`
|
|
10385
|
-
*/
|
|
10386
|
-
oMinDate?: object
|
|
10387
|
-
): this;
|
|
10388
10270
|
/**
|
|
10389
10271
|
* Sets a new value for property {@link #getMonths months}.
|
|
10390
10272
|
*
|
|
@@ -10916,7 +10798,7 @@ declare namespace sap {
|
|
|
10916
10798
|
/**
|
|
10917
10799
|
* Focus the given `CalendarAppointment` in the `CalendarRow`.
|
|
10918
10800
|
*
|
|
10919
|
-
* @returns `this`
|
|
10801
|
+
* @returns Reference to `this` for method chaining
|
|
10920
10802
|
*/
|
|
10921
10803
|
focusAppointment(
|
|
10922
10804
|
/**
|
|
@@ -10927,13 +10809,13 @@ declare namespace sap {
|
|
|
10927
10809
|
/**
|
|
10928
10810
|
* Focus the `CalendarAppointment` in the `CalendarRow` that is nearest to the given date.
|
|
10929
10811
|
*
|
|
10930
|
-
* @returns `this`
|
|
10812
|
+
* @returns Reference to `this` for method chaining
|
|
10931
10813
|
*/
|
|
10932
10814
|
focusNearestAppointment(
|
|
10933
10815
|
/**
|
|
10934
10816
|
* Javascript Date object.
|
|
10935
10817
|
*/
|
|
10936
|
-
oDate:
|
|
10818
|
+
oDate: Date
|
|
10937
10819
|
): this;
|
|
10938
10820
|
/**
|
|
10939
10821
|
* @SINCE 1.81.0
|
|
@@ -11219,7 +11101,7 @@ declare namespace sap {
|
|
|
11219
11101
|
* are used in one container (e.g. `PlanningCalendar`), it is better if the container triggers the resize
|
|
11220
11102
|
* check once and then calls this function of each `CalendarRow`.
|
|
11221
11103
|
*
|
|
11222
|
-
* @returns `this`
|
|
11104
|
+
* @returns Reference to `this` for method chaining
|
|
11223
11105
|
*/
|
|
11224
11106
|
handleResize(
|
|
11225
11107
|
/**
|
|
@@ -11671,21 +11553,6 @@ declare namespace sap {
|
|
|
11671
11553
|
*/
|
|
11672
11554
|
bShowSubIntervals?: boolean
|
|
11673
11555
|
): this;
|
|
11674
|
-
/**
|
|
11675
|
-
* Sets a new value for property {@link #getStartDate startDate}.
|
|
11676
|
-
*
|
|
11677
|
-
* Start date, as JavaScript Date object, of the row. As default, the current date is used.
|
|
11678
|
-
*
|
|
11679
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
11680
|
-
*
|
|
11681
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
11682
|
-
*/
|
|
11683
|
-
setStartDate(
|
|
11684
|
-
/**
|
|
11685
|
-
* New value for property `startDate`
|
|
11686
|
-
*/
|
|
11687
|
-
oStartDate: object
|
|
11688
|
-
): this;
|
|
11689
11556
|
/**
|
|
11690
11557
|
* Sets a new value for property {@link #getUpdateCurrentTime updateCurrentTime}.
|
|
11691
11558
|
*
|
|
@@ -11730,7 +11597,7 @@ declare namespace sap {
|
|
|
11730
11597
|
* (e.G. `PlanningCalendar`), it is better if the container triggers the interval once and then calls this
|
|
11731
11598
|
* function of each `CalendarRow`.
|
|
11732
11599
|
*
|
|
11733
|
-
* @returns `this`
|
|
11600
|
+
* @returns Reference to `this` for method chaining
|
|
11734
11601
|
*/
|
|
11735
11602
|
updateCurrentTimeVisualization(): this;
|
|
11736
11603
|
}
|
|
@@ -12049,14 +11916,14 @@ declare namespace sap {
|
|
|
12049
11916
|
/**
|
|
12050
11917
|
* Displays an item in the `CalendarTimeInterval` but doesn't set the focus.
|
|
12051
11918
|
*
|
|
12052
|
-
* @returns `this`
|
|
11919
|
+
* @returns Reference to `this` for method chaining
|
|
12053
11920
|
*/
|
|
12054
11921
|
displayDate(
|
|
12055
11922
|
/**
|
|
12056
11923
|
* JavaScript date object for displayed item.
|
|
12057
11924
|
*/
|
|
12058
|
-
oDate:
|
|
12059
|
-
):
|
|
11925
|
+
oDate: Date
|
|
11926
|
+
): this;
|
|
12060
11927
|
/**
|
|
12061
11928
|
* Fires event {@link #event:cancel cancel} to attached listeners.
|
|
12062
11929
|
*
|
|
@@ -12095,14 +11962,14 @@ declare namespace sap {
|
|
|
12095
11962
|
/**
|
|
12096
11963
|
* Sets the focused item of the `CalendarTimeInterval`.
|
|
12097
11964
|
*
|
|
12098
|
-
* @returns `this`
|
|
11965
|
+
* @returns Reference to `this` for method chaining
|
|
12099
11966
|
*/
|
|
12100
11967
|
focusDate(
|
|
12101
11968
|
/**
|
|
12102
|
-
* JavaScript date object for focused item
|
|
11969
|
+
* JavaScript date object for focused item
|
|
12103
11970
|
*/
|
|
12104
|
-
oDate:
|
|
12105
|
-
):
|
|
11971
|
+
oDate: Date
|
|
11972
|
+
): this;
|
|
12106
11973
|
/**
|
|
12107
11974
|
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
|
|
12108
11975
|
* ariaLabelledBy}.
|
|
@@ -12420,46 +12287,6 @@ declare namespace sap {
|
|
|
12420
12287
|
*/
|
|
12421
12288
|
oLegend: sap.ui.core.ID | sap.ui.unified.CalendarLegend
|
|
12422
12289
|
): this;
|
|
12423
|
-
/**
|
|
12424
|
-
* @SINCE 1.38.0
|
|
12425
|
-
*
|
|
12426
|
-
* Sets a new value for property {@link #getMaxDate maxDate}.
|
|
12427
|
-
*
|
|
12428
|
-
* Maximum date that can be shown and selected in the Calendar. This must be a JavaScript date object.
|
|
12429
|
-
*
|
|
12430
|
-
* **Note:** If the `maxDate` is set to be before the `minDate`, the `minDate` is set to the begin of the
|
|
12431
|
-
* month of the `maxDate`.
|
|
12432
|
-
*
|
|
12433
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
12434
|
-
*
|
|
12435
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
12436
|
-
*/
|
|
12437
|
-
setMaxDate(
|
|
12438
|
-
/**
|
|
12439
|
-
* New value for property `maxDate`
|
|
12440
|
-
*/
|
|
12441
|
-
oMaxDate?: object
|
|
12442
|
-
): this;
|
|
12443
|
-
/**
|
|
12444
|
-
* @SINCE 1.38.0
|
|
12445
|
-
*
|
|
12446
|
-
* Sets a new value for property {@link #getMinDate minDate}.
|
|
12447
|
-
*
|
|
12448
|
-
* Minimum date that can be shown and selected in the Calendar. This must be a JavaScript date object.
|
|
12449
|
-
*
|
|
12450
|
-
* **Note:** If the `minDate` is set to be after the `maxDate`, the `maxDate` is set to the end of the month
|
|
12451
|
-
* of the `minDate`.
|
|
12452
|
-
*
|
|
12453
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
12454
|
-
*
|
|
12455
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
12456
|
-
*/
|
|
12457
|
-
setMinDate(
|
|
12458
|
-
/**
|
|
12459
|
-
* New value for property `minDate`
|
|
12460
|
-
*/
|
|
12461
|
-
oMinDate?: object
|
|
12462
|
-
): this;
|
|
12463
12290
|
/**
|
|
12464
12291
|
* @SINCE 1.34.0
|
|
12465
12292
|
*
|
|
@@ -12498,22 +12325,6 @@ declare namespace sap {
|
|
|
12498
12325
|
*/
|
|
12499
12326
|
bSingleSelection?: boolean
|
|
12500
12327
|
): this;
|
|
12501
|
-
/**
|
|
12502
|
-
* Sets a new value for property {@link #getStartDate startDate}.
|
|
12503
|
-
*
|
|
12504
|
-
* Start date of the Interval as JavaScript Date object. The time interval corresponding to this Date and
|
|
12505
|
-
* `items` and `intervalMinutes` will be the first time in the displayed row.
|
|
12506
|
-
*
|
|
12507
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
12508
|
-
*
|
|
12509
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
12510
|
-
*/
|
|
12511
|
-
setStartDate(
|
|
12512
|
-
/**
|
|
12513
|
-
* New value for property `startDate`
|
|
12514
|
-
*/
|
|
12515
|
-
oStartDate: object
|
|
12516
|
-
): this;
|
|
12517
12328
|
/**
|
|
12518
12329
|
* Sets a new value for property {@link #getWidth width}.
|
|
12519
12330
|
*
|
|
@@ -13754,7 +13565,7 @@ declare namespace sap {
|
|
|
13754
13565
|
*
|
|
13755
13566
|
* @returns Current accessibility state of the control.
|
|
13756
13567
|
*/
|
|
13757
|
-
getAccessibilityInfo():
|
|
13568
|
+
getAccessibilityInfo(): sap.ui.core.AccessibilityInfo;
|
|
13758
13569
|
/**
|
|
13759
13570
|
* Gets current value of property {@link #getCurrency currency}.
|
|
13760
13571
|
*
|
|
@@ -13962,37 +13773,6 @@ declare namespace sap {
|
|
|
13962
13773
|
* @returns Value of property `startDate`
|
|
13963
13774
|
*/
|
|
13964
13775
|
getStartDate(): object;
|
|
13965
|
-
/**
|
|
13966
|
-
* Sets a new value for property {@link #getEndDate endDate}.
|
|
13967
|
-
*
|
|
13968
|
-
* End date for a date range. If empty only a single date is presented by this DateRange element. This must
|
|
13969
|
-
* be a JavaScript date object.
|
|
13970
|
-
*
|
|
13971
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13972
|
-
*
|
|
13973
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
13974
|
-
*/
|
|
13975
|
-
setEndDate(
|
|
13976
|
-
/**
|
|
13977
|
-
* New value for property `endDate`
|
|
13978
|
-
*/
|
|
13979
|
-
oEndDate?: object
|
|
13980
|
-
): this;
|
|
13981
|
-
/**
|
|
13982
|
-
* Sets a new value for property {@link #getStartDate startDate}.
|
|
13983
|
-
*
|
|
13984
|
-
* Start date for a date range. This must be a JavaScript date object.
|
|
13985
|
-
*
|
|
13986
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13987
|
-
*
|
|
13988
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
13989
|
-
*/
|
|
13990
|
-
setStartDate(
|
|
13991
|
-
/**
|
|
13992
|
-
* New value for property `startDate`
|
|
13993
|
-
*/
|
|
13994
|
-
oStartDate?: object
|
|
13995
|
-
): this;
|
|
13996
13776
|
}
|
|
13997
13777
|
/**
|
|
13998
13778
|
* @SINCE 1.24.0
|
|
@@ -14920,7 +14700,7 @@ declare namespace sap {
|
|
|
14920
14700
|
*
|
|
14921
14701
|
* **Note:** The attached additional data however is retained.
|
|
14922
14702
|
*
|
|
14923
|
-
* @returns
|
|
14703
|
+
* @returns Reference to `this` for method chaining
|
|
14924
14704
|
*/
|
|
14925
14705
|
clear(): this;
|
|
14926
14706
|
/**
|
|
@@ -15714,7 +15494,7 @@ declare namespace sap {
|
|
|
15714
15494
|
* The initial Blobs which can be used to determine/calculate a new array of Blobs for further processing.
|
|
15715
15495
|
*/
|
|
15716
15496
|
aBlobs: Blob[]
|
|
15717
|
-
): Promise<
|
|
15497
|
+
): Promise<Blob[]>;
|
|
15718
15498
|
/**
|
|
15719
15499
|
* Gets current value of property {@link #getSameFilenameAllowed sameFilenameAllowed}.
|
|
15720
15500
|
*
|