@openui5/ts-types 1.108.2 → 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.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.2
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 {
@@ -546,6 +558,17 @@ declare namespace sap {
546
558
  | sap.ui.base.ManagedObject.PropertyBindingInfo
547
559
  | `{${string}}`;
548
560
 
561
+ /**
562
+ * @SINCE 1.109.0
563
+ *
564
+ * If set, the days are also displayed in this calendar type If not set, the dates are only displayed in
565
+ * the primary calendar type
566
+ */
567
+ secondaryCalendarType?:
568
+ | sap.ui.core.CalendarType
569
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
570
+ | `{${string}}`;
571
+
549
572
  /**
550
573
  * Date ranges for selected dates. If `singleSelection` is set, only the first entry is used.
551
574
  *
@@ -674,6 +697,17 @@ declare namespace sap {
674
697
  | sap.ui.base.ManagedObject.PropertyBindingInfo
675
698
  | `{${string}}`;
676
699
 
700
+ /**
701
+ * @SINCE 1.109.0
702
+ *
703
+ * If set, the days are also displayed in this calendar type If not set, the dates are only displayed in
704
+ * the primary calendar type
705
+ */
706
+ secondaryCalendarType?:
707
+ | sap.ui.core.CalendarType
708
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
709
+ | `{${string}}`;
710
+
677
711
  /**
678
712
  * Date ranges for selected dates. If `singleSelection` is set, only the first entry is used.
679
713
  */
@@ -890,14 +924,26 @@ declare namespace sap {
890
924
  * Property `date` date to be focused or displayed. It must be in the displayed date range beginning with
891
925
  * `startDate` and `days` days So set this properties before setting the date.
892
926
  *
893
- * @returns `this` to allow method chaining
927
+ * @returns Reference to `this` for method chaining
894
928
  */
895
929
  displayDate(
896
930
  /**
897
931
  * JavaScript date object for focused date.
898
932
  */
899
- oDate: object
933
+ oDate: Date
900
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;
901
947
  /**
902
948
  * Gets current value of property {@link #getDays days}.
903
949
  *
@@ -931,19 +977,38 @@ declare namespace sap {
931
977
  * @returns Value of property `startDate`
932
978
  */
933
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;
934
999
  /**
935
1000
  * Setter for property `date`.
936
1001
  *
937
1002
  * Property `date` date to be focused or displayed. It must be in the displayed date range beginning with
938
1003
  * `startDate` and `days` days So set this properties before setting the date.
939
1004
  *
940
- * @returns `this` to allow method chaining
1005
+ * @returns Reference to `this` for method chaining
941
1006
  */
942
1007
  setDate(
943
1008
  /**
944
1009
  * JavaScript date object for start date.
945
1010
  */
946
- oDate: object
1011
+ oDate: Date
947
1012
  ): this;
948
1013
  /**
949
1014
  * Sets a new value for property {@link #getDays days}.
@@ -982,23 +1047,6 @@ declare namespace sap {
982
1047
  */
983
1048
  bShowDayNamesLine?: boolean
984
1049
  ): this;
985
- /**
986
- * Sets a new value for property {@link #getStartDate startDate}.
987
- *
988
- * Start date of the row If in rendering phase the date property is not in the range startDate + days, it
989
- * is set to the start date So after setting the start date the date should be set to be in the range of
990
- * the start date
991
- *
992
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
993
- *
994
- * @returns Reference to `this` in order to allow method chaining
995
- */
996
- setStartDate(
997
- /**
998
- * New value for property `startDate`
999
- */
1000
- oStartDate: object
1001
- ): this;
1002
1050
  }
1003
1051
  /**
1004
1052
  * @SINCE 1.28.0
@@ -2198,16 +2246,16 @@ declare namespace sap {
2198
2246
  oListener?: object
2199
2247
  ): this;
2200
2248
  /**
2201
- * checks if a date is focusable in the current rendered output. So if not rendered or in other month it
2249
+ * Checks if a date is focusable in the current rendered output. So if not rendered or in other month it
2202
2250
  * is not focusable.
2203
2251
  *
2204
2252
  * @returns flag if focusable
2205
2253
  */
2206
2254
  checkDateFocusable(
2207
2255
  /**
2208
- * JavaScript date object for focused date.
2256
+ * JavaScript date object for focused date
2209
2257
  */
2210
- oDate: object
2258
+ oDate: Date
2211
2259
  ): boolean;
2212
2260
  /**
2213
2261
  * @SINCE 1.38.0
@@ -2284,15 +2332,15 @@ declare namespace sap {
2284
2332
  oListener?: object
2285
2333
  ): this;
2286
2334
  /**
2287
- * displays the month of a given date without setting the focus
2335
+ * Displays the month of a given date without setting the focus.
2288
2336
  *
2289
- * @returns `this` to allow method chaining
2337
+ * @returns Reference to `this` for method chaining
2290
2338
  */
2291
2339
  displayDate(
2292
2340
  /**
2293
- * JavaScript date object for focused date.
2341
+ * JavaScript date object for focused date
2294
2342
  */
2295
- oDate: object
2343
+ oDate: Date
2296
2344
  ): this;
2297
2345
  /**
2298
2346
  * Fires event {@link #event:focus focus} to attached listeners.
@@ -2700,22 +2748,6 @@ declare namespace sap {
2700
2748
  */
2701
2749
  sCalendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering
2702
2750
  ): this;
2703
- /**
2704
- * Sets a new value for property {@link #getDate date}.
2705
- *
2706
- * A date as JavaScript Date object. The month including this date is rendered and this date is focused
2707
- * initially (if no other focus is set).
2708
- *
2709
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2710
- *
2711
- * @returns Reference to `this` in order to allow method chaining
2712
- */
2713
- setDate(
2714
- /**
2715
- * New value for property `date`
2716
- */
2717
- oDate: object
2718
- ): this;
2719
2751
  /**
2720
2752
  * @SINCE 1.28.9
2721
2753
  *
@@ -3665,7 +3697,7 @@ declare namespace sap {
3665
3697
  /**
3666
3698
  * JavaScript Date object for focused date.
3667
3699
  */
3668
- oDateTime: object
3700
+ oDateTime: Date
3669
3701
  ): boolean;
3670
3702
  /**
3671
3703
  * Destroys all the selectedDates in the aggregation {@link #getSelectedDates selectedDates}.
@@ -3716,13 +3748,13 @@ declare namespace sap {
3716
3748
  /**
3717
3749
  * Displays the month of a given date without setting the focus
3718
3750
  *
3719
- * @returns `this` to allow method chaining
3751
+ * @returns Reference to `this` for method chaining
3720
3752
  */
3721
3753
  displayDate(
3722
3754
  /**
3723
3755
  * JavaScript Date object for focused date.
3724
3756
  */
3725
- oDate: object
3757
+ oDate: Date
3726
3758
  ): this;
3727
3759
  /**
3728
3760
  * Fires event {@link #event:focus focus} to attached listeners.
@@ -3808,6 +3840,17 @@ declare namespace sap {
3808
3840
  * @returns Value of property `primaryCalendarType`
3809
3841
  */
3810
3842
  getPrimaryCalendarType(): sap.ui.core.CalendarType;
3843
+ /**
3844
+ * @SINCE 1.109.0
3845
+ *
3846
+ * Gets current value of property {@link #getSecondaryCalendarType secondaryCalendarType}.
3847
+ *
3848
+ * If set, the days are also displayed in this calendar type If not set, the dates are only displayed in
3849
+ * the primary calendar type
3850
+ *
3851
+ * @returns Value of property `secondaryCalendarType`
3852
+ */
3853
+ getSecondaryCalendarType(): sap.ui.core.CalendarType;
3811
3854
  /**
3812
3855
  * Gets content of aggregation {@link #getSelectedDates selectedDates}.
3813
3856
  *
@@ -4034,7 +4077,25 @@ declare namespace sap {
4034
4077
  /**
4035
4078
  * New value for property `primaryCalendarType`
4036
4079
  */
4037
- sPrimaryCalendarType?: sap.ui.core.CalendarType
4080
+ sPrimaryCalendarType: sap.ui.core.CalendarType
4081
+ ): this;
4082
+ /**
4083
+ * @SINCE 1.109.0
4084
+ *
4085
+ * Sets a new value for property {@link #getSecondaryCalendarType secondaryCalendarType}.
4086
+ *
4087
+ * If set, the days are also displayed in this calendar type If not set, the dates are only displayed in
4088
+ * the primary calendar type
4089
+ *
4090
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4091
+ *
4092
+ * @returns Reference to `this` in order to allow method chaining
4093
+ */
4094
+ setSecondaryCalendarType(
4095
+ /**
4096
+ * New value for property `secondaryCalendarType`
4097
+ */
4098
+ sSecondaryCalendarType: sap.ui.core.CalendarType
4038
4099
  ): this;
4039
4100
  /**
4040
4101
  * Sets a new value for property {@link #getShowHeader showHeader}.
@@ -4072,22 +4133,6 @@ declare namespace sap {
4072
4133
  */
4073
4134
  bSingleSelection?: boolean
4074
4135
  ): this;
4075
- /**
4076
- * Sets a new value for property {@link #getStartDate startDate}.
4077
- *
4078
- * Start date, as JavaScript Date object, of the row. The month of this date is the first month of the displayed
4079
- * row.
4080
- *
4081
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4082
- *
4083
- * @returns Reference to `this` in order to allow method chaining
4084
- */
4085
- setStartDate(
4086
- /**
4087
- * New value for property `startDate`
4088
- */
4089
- oStartDate: object
4090
- ): this;
4091
4136
  }
4092
4137
  /**
4093
4138
  * @SINCE 1.32.0
@@ -4297,7 +4342,7 @@ declare namespace sap {
4297
4342
  /**
4298
4343
  * JavaScript Date object for focused date.
4299
4344
  */
4300
- oDate: object
4345
+ oDate: Date
4301
4346
  ): boolean;
4302
4347
  /**
4303
4348
  * Destroys all the selectedDates in the aggregation {@link #getSelectedDates selectedDates}.
@@ -4346,15 +4391,15 @@ declare namespace sap {
4346
4391
  oListener?: object
4347
4392
  ): this;
4348
4393
  /**
4349
- * Displays the given date without setting the focus
4394
+ * Displays the given date without setting the focus.
4350
4395
  *
4351
- * @returns `this` to allow method chaining
4396
+ * @returns Reference to `this` for method chaining
4352
4397
  */
4353
4398
  displayDate(
4354
4399
  /**
4355
- * JavaScript Date object for focused date.
4400
+ * A JavaScript Date
4356
4401
  */
4357
- oDate: object
4402
+ oDate: Date
4358
4403
  ): this;
4359
4404
  /**
4360
4405
  * Fires event {@link #event:focus focus} to attached listeners.
@@ -4456,6 +4501,17 @@ declare namespace sap {
4456
4501
  * @returns Value of property `primaryCalendarType`
4457
4502
  */
4458
4503
  getPrimaryCalendarType(): sap.ui.core.CalendarType;
4504
+ /**
4505
+ * @SINCE 1.109.0
4506
+ *
4507
+ * Gets current value of property {@link #getSecondaryCalendarType secondaryCalendarType}.
4508
+ *
4509
+ * If set, the days are also displayed in this calendar type If not set, the dates are only displayed in
4510
+ * the primary calendar type
4511
+ *
4512
+ * @returns Value of property `secondaryCalendarType`
4513
+ */
4514
+ getSecondaryCalendarType(): sap.ui.core.CalendarType;
4459
4515
  /**
4460
4516
  * Gets content of aggregation {@link #getSelectedDates selectedDates}.
4461
4517
  *
@@ -4612,24 +4668,6 @@ declare namespace sap {
4612
4668
  */
4613
4669
  vSpecialDate: int | string | sap.ui.unified.DateTypeRange
4614
4670
  ): sap.ui.unified.DateTypeRange | null;
4615
- /**
4616
- * Sets a new value for property {@link #getDate date}.
4617
- *
4618
- * A date as JavaScript Date object. The month including this date is rendered and this date is focused
4619
- * initially (if no other focus is set). If the date property is not in the range `startDate` + `items`
4620
- * in the rendering phase, it is set to the `startDate`. So after setting the `startDate` the date should
4621
- * be set to be in the visible range.
4622
- *
4623
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4624
- *
4625
- * @returns Reference to `this` in order to allow method chaining
4626
- */
4627
- setDate(
4628
- /**
4629
- * New value for property `date`
4630
- */
4631
- oDate: object
4632
- ): this;
4633
4671
  /**
4634
4672
  * Sets a new value for property {@link #getIntervalMinutes intervalMinutes}.
4635
4673
  *
@@ -4717,7 +4755,25 @@ declare namespace sap {
4717
4755
  /**
4718
4756
  * New value for property `primaryCalendarType`
4719
4757
  */
4720
- sPrimaryCalendarType?: sap.ui.core.CalendarType
4758
+ sPrimaryCalendarType: sap.ui.core.CalendarType
4759
+ ): this;
4760
+ /**
4761
+ * @SINCE 1.109.0
4762
+ *
4763
+ * Sets a new value for property {@link #getSecondaryCalendarType secondaryCalendarType}.
4764
+ *
4765
+ * If set, the days are also displayed in this calendar type If not set, the dates are only displayed in
4766
+ * the primary calendar type
4767
+ *
4768
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4769
+ *
4770
+ * @returns Reference to `this` in order to allow method chaining
4771
+ */
4772
+ setSecondaryCalendarType(
4773
+ /**
4774
+ * New value for property `secondaryCalendarType`
4775
+ */
4776
+ sSecondaryCalendarType: sap.ui.core.CalendarType
4721
4777
  ): this;
4722
4778
  /**
4723
4779
  * Sets a new value for property {@link #getShowHeader showHeader}.
@@ -4755,21 +4811,6 @@ declare namespace sap {
4755
4811
  */
4756
4812
  bSingleSelection?: boolean
4757
4813
  ): this;
4758
- /**
4759
- * Sets a new value for property {@link #getStartDate startDate}.
4760
- *
4761
- * Start date, as JavaScript Date object, of the row.
4762
- *
4763
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4764
- *
4765
- * @returns Reference to `this` in order to allow method chaining
4766
- */
4767
- setStartDate(
4768
- /**
4769
- * New value for property `startDate`
4770
- */
4771
- oStartDate: object
4772
- ): this;
4773
4814
  }
4774
4815
  /**
4775
4816
  * @SINCE 1.28.0
@@ -5044,12 +5085,12 @@ declare namespace sap {
5044
5085
  /**
5045
5086
  * @SINCE 1.38.0
5046
5087
  *
5047
- * return the first date of the first rendered year **Note:** If the YearPicker is not rendered no date
5088
+ * Return the first date of the first rendered year **Note:** If the YearPicker is not rendered no date
5048
5089
  * is returned
5049
5090
  *
5050
- * @returns JavaScript Date Object
5091
+ * @returns A JavaScript Date
5051
5092
  */
5052
- getFirstRenderedDate(): object;
5093
+ getFirstRenderedDate(): Date;
5053
5094
  /**
5054
5095
  * @SINCE 1.74
5055
5096
  *
@@ -5152,13 +5193,13 @@ declare namespace sap {
5152
5193
  /**
5153
5194
  * displays the next page
5154
5195
  *
5155
- * @returns `this` to allow method chaining
5196
+ * @returns Reference to `this` for method chaining
5156
5197
  */
5157
5198
  nextPage(): this;
5158
5199
  /**
5159
5200
  * displays the previous page
5160
5201
  *
5161
- * @returns `this` to allow method chaining
5202
+ * @returns Reference to `this` for method chaining
5162
5203
  */
5163
5204
  previousPage(): this;
5164
5205
  /**
@@ -7947,13 +7988,13 @@ declare namespace sap {
7947
7988
  *
7948
7989
  * Displays a date in the calendar but doesn't set the focus.
7949
7990
  *
7950
- * @returns `this` to allow method chaining
7991
+ * @returns Reference to `this` for method chaining
7951
7992
  */
7952
7993
  displayDate(
7953
7994
  /**
7954
- * JavaScript date object for focused date.
7995
+ * JavaScript date object for focused date
7955
7996
  */
7956
- oDate: Object
7997
+ oDate: Date
7957
7998
  ): this;
7958
7999
  /**
7959
8000
  * Fires event {@link #event:cancel cancel} to attached listeners.
@@ -8018,13 +8059,13 @@ declare namespace sap {
8018
8059
  /**
8019
8060
  * Displays and sets the focused date of the calendar.
8020
8061
  *
8021
- * @returns `this` to allow method chaining
8062
+ * @returns Reference to `this` for method chaining
8022
8063
  */
8023
8064
  focusDate(
8024
8065
  /**
8025
8066
  * A JavaScript date object for focused date
8026
8067
  */
8027
- oDate: Object
8068
+ oDate: Date
8028
8069
  ): this;
8029
8070
  /**
8030
8071
  * @SINCE 1.28.0
@@ -8217,22 +8258,6 @@ declare namespace sap {
8217
8258
  * @returns Value of property `singleSelection`
8218
8259
  */
8219
8260
  getSingleSelection(): boolean;
8220
- /**
8221
- * @SINCE 1.24.0
8222
- *
8223
- * Gets content of aggregation {@link #getSpecialDates specialDates}.
8224
- *
8225
- * Dates or date ranges with type, to visualize special days in the `Calendar`. If one day is assigned to
8226
- * more than one Type, only the first one will be used.
8227
- *
8228
- * To set a single date (instead of a range), set only the `startDate` property of the {@link sap.ui.unified.DateRange}
8229
- * class.
8230
- *
8231
- * **Note:** Keep in mind that the `NonWorking` type is for marking specific dates or date ranges as non-working,
8232
- * where if you need a weekly-reccuring non-working days (weekend), you should use the `nonWorkingDays`
8233
- * property. Both the non-working days (from property) and dates (from aggregation) are visualized the same.
8234
- */
8235
- getSpecialDates(): sap.ui.unified.DateTypeRange[];
8236
8261
  /**
8237
8262
  * @SINCE 1.34.1
8238
8263
  *
@@ -8240,9 +8265,9 @@ declare namespace sap {
8240
8265
  *
8241
8266
  * There might be some days of the previous month shown, but they can not be focused.
8242
8267
  *
8243
- * @returns JavaScript date object for start date.
8268
+ * @returns JavaScript date object for start date
8244
8269
  */
8245
- getStartDate(): Object;
8270
+ getStartDate(): Date;
8246
8271
  /**
8247
8272
  * @SINCE 1.38.0
8248
8273
  *
@@ -8509,7 +8534,7 @@ declare namespace sap {
8509
8534
  /**
8510
8535
  * Sets a maximum date for the calendar.
8511
8536
  *
8512
- * @returns `this` for method chaining
8537
+ * @returns Reference to `this` for method chaining
8513
8538
  */
8514
8539
  setMaxDate(
8515
8540
  /**
@@ -8520,7 +8545,7 @@ declare namespace sap {
8520
8545
  /**
8521
8546
  * Sets a minimum date for the calendar.
8522
8547
  *
8523
- * @returns `this` for method chaining
8548
+ * @returns Reference to `this` for method chaining
8524
8549
  */
8525
8550
  setMinDate(
8526
8551
  /**
@@ -8612,7 +8637,7 @@ declare namespace sap {
8612
8637
  /**
8613
8638
  * Sets the visibility of the Current date button in the calendar.
8614
8639
  *
8615
- * @returns `this` for method chaining
8640
+ * @returns Reference to `this` for method chaining
8616
8641
  */
8617
8642
  setShowCurrentDateButton(
8618
8643
  /**
@@ -9171,14 +9196,6 @@ declare namespace sap {
9171
9196
  * @returns Value of property `showDayNamesLine`
9172
9197
  */
9173
9198
  getShowDayNamesLine(): boolean;
9174
- /**
9175
- * Gets current value of property {@link #getStartDate startDate}.
9176
- *
9177
- * Start date of the Interval
9178
- *
9179
- * @returns Value of property `startDate`
9180
- */
9181
- getStartDate(): object;
9182
9199
  /**
9183
9200
  * Sets a new value for property {@link #getDays days}.
9184
9201
  *
@@ -9201,7 +9218,7 @@ declare namespace sap {
9201
9218
  *
9202
9219
  * Property `firstDayOfWeek` is not supported in `sap.ui.unified.CalendarDateInterval` control.
9203
9220
  *
9204
- * @returns `this` to allow method chaining
9221
+ * @returns Reference to `this` for method chaining
9205
9222
  */
9206
9223
  setFirstDayOfWeek(
9207
9224
  /**
@@ -9214,7 +9231,7 @@ declare namespace sap {
9214
9231
  *
9215
9232
  * Property `months` is not supported in `sap.ui.unified.CalendarDateInterval` control.
9216
9233
  *
9217
- * @returns `this` to allow method chaining
9234
+ * @returns Reference to `this` for method chaining
9218
9235
  */
9219
9236
  setMonths(
9220
9237
  /**
@@ -9261,21 +9278,6 @@ declare namespace sap {
9261
9278
  */
9262
9279
  bShowDayNamesLine?: boolean
9263
9280
  ): this;
9264
- /**
9265
- * Sets a new value for property {@link #getStartDate startDate}.
9266
- *
9267
- * Start date of the Interval
9268
- *
9269
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
9270
- *
9271
- * @returns Reference to `this` in order to allow method chaining
9272
- */
9273
- setStartDate(
9274
- /**
9275
- * New value for property `startDate`
9276
- */
9277
- oStartDate: object
9278
- ): this;
9279
9281
  }
9280
9282
  /**
9281
9283
  * @SINCE 1.24.0
@@ -9947,13 +9949,13 @@ declare namespace sap {
9947
9949
  /**
9948
9950
  * Displays a month in the `CalendarMonthInterval` but doesn't set the focus.
9949
9951
  *
9950
- * @returns `this` to allow method chaining
9952
+ * @returns Reference to `this` for method chaining
9951
9953
  */
9952
9954
  displayDate(
9953
9955
  /**
9954
9956
  * JavaScript date object for displayed date. (The month of this date will be displayed.)
9955
9957
  */
9956
- oDatetime: Object
9958
+ oDatetime: Date
9957
9959
  ): this;
9958
9960
  /**
9959
9961
  * Fires event {@link #event:cancel cancel} to attached listeners.
@@ -9999,7 +10001,7 @@ declare namespace sap {
9999
10001
  /**
10000
10002
  * JavaScript date object for focused date. (The month of this date will be focused.)
10001
10003
  */
10002
- oDatetime: Object
10004
+ oDatetime: Date
10003
10005
  ): sap.ui.unified.Calendar;
10004
10006
  /**
10005
10007
  * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
@@ -10265,46 +10267,6 @@ declare namespace sap {
10265
10267
  */
10266
10268
  oLegend: sap.ui.core.ID | sap.ui.unified.CalendarLegend
10267
10269
  ): this;
10268
- /**
10269
- * @SINCE 1.38.0
10270
- *
10271
- * Sets a new value for property {@link #getMaxDate maxDate}.
10272
- *
10273
- * Maximum date that can be shown and selected in the Calendar. This must be a JavaScript date object.
10274
- *
10275
- * **Note:** If the `maxDate` is set to be before the `minDate`, the `minDate` is set to the begin of the
10276
- * month of the `maxDate`.
10277
- *
10278
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
10279
- *
10280
- * @returns Reference to `this` in order to allow method chaining
10281
- */
10282
- setMaxDate(
10283
- /**
10284
- * New value for property `maxDate`
10285
- */
10286
- oMaxDate?: object
10287
- ): this;
10288
- /**
10289
- * @SINCE 1.38.0
10290
- *
10291
- * Sets a new value for property {@link #getMinDate minDate}.
10292
- *
10293
- * Minimum date that can be shown and selected in the Calendar. This must be a JavaScript date object.
10294
- *
10295
- * **Note:** If the `minDate` is set to be after the `maxDate`, the `maxDate` is set to the end of the month
10296
- * of the `minDate`.
10297
- *
10298
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
10299
- *
10300
- * @returns Reference to `this` in order to allow method chaining
10301
- */
10302
- setMinDate(
10303
- /**
10304
- * New value for property `minDate`
10305
- */
10306
- oMinDate?: object
10307
- ): this;
10308
10270
  /**
10309
10271
  * Sets a new value for property {@link #getMonths months}.
10310
10272
  *
@@ -10836,7 +10798,7 @@ declare namespace sap {
10836
10798
  /**
10837
10799
  * Focus the given `CalendarAppointment` in the `CalendarRow`.
10838
10800
  *
10839
- * @returns `this` to allow method chaining
10801
+ * @returns Reference to `this` for method chaining
10840
10802
  */
10841
10803
  focusAppointment(
10842
10804
  /**
@@ -10847,13 +10809,13 @@ declare namespace sap {
10847
10809
  /**
10848
10810
  * Focus the `CalendarAppointment` in the `CalendarRow` that is nearest to the given date.
10849
10811
  *
10850
- * @returns `this` to allow method chaining
10812
+ * @returns Reference to `this` for method chaining
10851
10813
  */
10852
10814
  focusNearestAppointment(
10853
10815
  /**
10854
10816
  * Javascript Date object.
10855
10817
  */
10856
- oDate: object
10818
+ oDate: Date
10857
10819
  ): this;
10858
10820
  /**
10859
10821
  * @SINCE 1.81.0
@@ -11139,7 +11101,7 @@ declare namespace sap {
11139
11101
  * are used in one container (e.g. `PlanningCalendar`), it is better if the container triggers the resize
11140
11102
  * check once and then calls this function of each `CalendarRow`.
11141
11103
  *
11142
- * @returns `this` to allow method chaining
11104
+ * @returns Reference to `this` for method chaining
11143
11105
  */
11144
11106
  handleResize(
11145
11107
  /**
@@ -11591,21 +11553,6 @@ declare namespace sap {
11591
11553
  */
11592
11554
  bShowSubIntervals?: boolean
11593
11555
  ): this;
11594
- /**
11595
- * Sets a new value for property {@link #getStartDate startDate}.
11596
- *
11597
- * Start date, as JavaScript Date object, of the row. As default, the current date is used.
11598
- *
11599
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
11600
- *
11601
- * @returns Reference to `this` in order to allow method chaining
11602
- */
11603
- setStartDate(
11604
- /**
11605
- * New value for property `startDate`
11606
- */
11607
- oStartDate: object
11608
- ): this;
11609
11556
  /**
11610
11557
  * Sets a new value for property {@link #getUpdateCurrentTime updateCurrentTime}.
11611
11558
  *
@@ -11650,7 +11597,7 @@ declare namespace sap {
11650
11597
  * (e.G. `PlanningCalendar`), it is better if the container triggers the interval once and then calls this
11651
11598
  * function of each `CalendarRow`.
11652
11599
  *
11653
- * @returns `this` to allow method chaining
11600
+ * @returns Reference to `this` for method chaining
11654
11601
  */
11655
11602
  updateCurrentTimeVisualization(): this;
11656
11603
  }
@@ -11969,14 +11916,14 @@ declare namespace sap {
11969
11916
  /**
11970
11917
  * Displays an item in the `CalendarTimeInterval` but doesn't set the focus.
11971
11918
  *
11972
- * @returns `this` to allow method chaining
11919
+ * @returns Reference to `this` for method chaining
11973
11920
  */
11974
11921
  displayDate(
11975
11922
  /**
11976
11923
  * JavaScript date object for displayed item.
11977
11924
  */
11978
- oDate: object
11979
- ): sap.ui.unified.Calendar;
11925
+ oDate: Date
11926
+ ): this;
11980
11927
  /**
11981
11928
  * Fires event {@link #event:cancel cancel} to attached listeners.
11982
11929
  *
@@ -12015,14 +11962,14 @@ declare namespace sap {
12015
11962
  /**
12016
11963
  * Sets the focused item of the `CalendarTimeInterval`.
12017
11964
  *
12018
- * @returns `this` to allow method chaining
11965
+ * @returns Reference to `this` for method chaining
12019
11966
  */
12020
11967
  focusDate(
12021
11968
  /**
12022
- * JavaScript date object for focused item.
11969
+ * JavaScript date object for focused item
12023
11970
  */
12024
- oDate: object
12025
- ): sap.ui.unified.Calendar;
11971
+ oDate: Date
11972
+ ): this;
12026
11973
  /**
12027
11974
  * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
12028
11975
  * ariaLabelledBy}.
@@ -12340,46 +12287,6 @@ declare namespace sap {
12340
12287
  */
12341
12288
  oLegend: sap.ui.core.ID | sap.ui.unified.CalendarLegend
12342
12289
  ): this;
12343
- /**
12344
- * @SINCE 1.38.0
12345
- *
12346
- * Sets a new value for property {@link #getMaxDate maxDate}.
12347
- *
12348
- * Maximum date that can be shown and selected in the Calendar. This must be a JavaScript date object.
12349
- *
12350
- * **Note:** If the `maxDate` is set to be before the `minDate`, the `minDate` is set to the begin of the
12351
- * month of the `maxDate`.
12352
- *
12353
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
12354
- *
12355
- * @returns Reference to `this` in order to allow method chaining
12356
- */
12357
- setMaxDate(
12358
- /**
12359
- * New value for property `maxDate`
12360
- */
12361
- oMaxDate?: object
12362
- ): this;
12363
- /**
12364
- * @SINCE 1.38.0
12365
- *
12366
- * Sets a new value for property {@link #getMinDate minDate}.
12367
- *
12368
- * Minimum date that can be shown and selected in the Calendar. This must be a JavaScript date object.
12369
- *
12370
- * **Note:** If the `minDate` is set to be after the `maxDate`, the `maxDate` is set to the end of the month
12371
- * of the `minDate`.
12372
- *
12373
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
12374
- *
12375
- * @returns Reference to `this` in order to allow method chaining
12376
- */
12377
- setMinDate(
12378
- /**
12379
- * New value for property `minDate`
12380
- */
12381
- oMinDate?: object
12382
- ): this;
12383
12290
  /**
12384
12291
  * @SINCE 1.34.0
12385
12292
  *
@@ -12418,22 +12325,6 @@ declare namespace sap {
12418
12325
  */
12419
12326
  bSingleSelection?: boolean
12420
12327
  ): this;
12421
- /**
12422
- * Sets a new value for property {@link #getStartDate startDate}.
12423
- *
12424
- * Start date of the Interval as JavaScript Date object. The time interval corresponding to this Date and
12425
- * `items` and `intervalMinutes` will be the first time in the displayed row.
12426
- *
12427
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
12428
- *
12429
- * @returns Reference to `this` in order to allow method chaining
12430
- */
12431
- setStartDate(
12432
- /**
12433
- * New value for property `startDate`
12434
- */
12435
- oStartDate: object
12436
- ): this;
12437
12328
  /**
12438
12329
  * Sets a new value for property {@link #getWidth width}.
12439
12330
  *
@@ -13674,7 +13565,7 @@ declare namespace sap {
13674
13565
  *
13675
13566
  * @returns Current accessibility state of the control.
13676
13567
  */
13677
- getAccessibilityInfo(): object;
13568
+ getAccessibilityInfo(): sap.ui.core.AccessibilityInfo;
13678
13569
  /**
13679
13570
  * Gets current value of property {@link #getCurrency currency}.
13680
13571
  *
@@ -13882,37 +13773,6 @@ declare namespace sap {
13882
13773
  * @returns Value of property `startDate`
13883
13774
  */
13884
13775
  getStartDate(): object;
13885
- /**
13886
- * Sets a new value for property {@link #getEndDate endDate}.
13887
- *
13888
- * End date for a date range. If empty only a single date is presented by this DateRange element. This must
13889
- * be a JavaScript date object.
13890
- *
13891
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
13892
- *
13893
- * @returns Reference to `this` in order to allow method chaining
13894
- */
13895
- setEndDate(
13896
- /**
13897
- * New value for property `endDate`
13898
- */
13899
- oEndDate?: object
13900
- ): this;
13901
- /**
13902
- * Sets a new value for property {@link #getStartDate startDate}.
13903
- *
13904
- * Start date for a date range. This must be a JavaScript date object.
13905
- *
13906
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
13907
- *
13908
- * @returns Reference to `this` in order to allow method chaining
13909
- */
13910
- setStartDate(
13911
- /**
13912
- * New value for property `startDate`
13913
- */
13914
- oStartDate?: object
13915
- ): this;
13916
13776
  }
13917
13777
  /**
13918
13778
  * @SINCE 1.24.0
@@ -14840,7 +14700,7 @@ declare namespace sap {
14840
14700
  *
14841
14701
  * **Note:** The attached additional data however is retained.
14842
14702
  *
14843
- * @returns The `sap.ui.unified.FileUploader` instance
14703
+ * @returns Reference to `this` for method chaining
14844
14704
  */
14845
14705
  clear(): this;
14846
14706
  /**
@@ -15634,7 +15494,7 @@ declare namespace sap {
15634
15494
  * The initial Blobs which can be used to determine/calculate a new array of Blobs for further processing.
15635
15495
  */
15636
15496
  aBlobs: Blob[]
15637
- ): Promise<any>;
15497
+ ): Promise<Blob[]>;
15638
15498
  /**
15639
15499
  * Gets current value of property {@link #getSameFilenameAllowed sameFilenameAllowed}.
15640
15500
  *
@@ -20218,8 +20078,6 @@ declare namespace sap {
20218
20078
  interface IUI5DefineDependencyNames {
20219
20079
  "sap/ui/unified/Calendar": undefined;
20220
20080
 
20221
- "sap/ui/unified/calendar/CalendarUtils": undefined;
20222
-
20223
20081
  "sap/ui/unified/calendar/DatesRow": undefined;
20224
20082
 
20225
20083
  "sap/ui/unified/calendar/Header": undefined;