@openui5/ts-types 1.112.2 → 1.113.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.112.2
1
+ // For Library Version: 1.113.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -919,7 +919,7 @@ declare namespace sap {
919
919
  */
920
920
  static getMetadata(): sap.ui.core.ElementMetadata;
921
921
  /**
922
- * displays the a given date without setting the focus
922
+ * Displays the given date without setting the focus
923
923
  *
924
924
  * Property `date` date to be focused or displayed. It must be in the displayed date range beginning with
925
925
  * `startDate` and `days` days So set this properties before setting the date.
@@ -1047,6 +1047,17 @@ declare namespace sap {
1047
1047
  */
1048
1048
  bShowDayNamesLine?: boolean
1049
1049
  ): this;
1050
+ /**
1051
+ * Sets start date of the row.
1052
+ *
1053
+ * @returns Reference to `this` for method chaining
1054
+ */
1055
+ setStartDate(
1056
+ /**
1057
+ * A JavaScript date
1058
+ */
1059
+ oStartDate: Date
1060
+ ): this;
1050
1061
  }
1051
1062
  /**
1052
1063
  * @SINCE 1.28.0
@@ -1504,6 +1515,7 @@ declare namespace sap {
1504
1515
  ): this;
1505
1516
  /**
1506
1517
  * @SINCE 1.32.0
1518
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1507
1519
  *
1508
1520
  * Fires event {@link #event:pressButton0 pressButton0} to attached listeners.
1509
1521
  *
@@ -1516,6 +1528,8 @@ declare namespace sap {
1516
1528
  mParameters?: object
1517
1529
  ): this;
1518
1530
  /**
1531
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1532
+ *
1519
1533
  * Fires event {@link #event:pressButton1 pressButton1} to attached listeners.
1520
1534
  *
1521
1535
  * @returns Reference to `this` in order to allow method chaining
@@ -1527,6 +1541,8 @@ declare namespace sap {
1527
1541
  mParameters?: object
1528
1542
  ): this;
1529
1543
  /**
1544
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1545
+ *
1530
1546
  * Fires event {@link #event:pressButton2 pressButton2} to attached listeners.
1531
1547
  *
1532
1548
  * @returns Reference to `this` in order to allow method chaining
@@ -1538,6 +1554,8 @@ declare namespace sap {
1538
1554
  mParameters?: object
1539
1555
  ): this;
1540
1556
  /**
1557
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1558
+ *
1541
1559
  * Fires event {@link #event:pressCurrentDate pressCurrentDate} to attached listeners.
1542
1560
  *
1543
1561
  * @returns Reference to `this` in order to allow method chaining
@@ -1549,6 +1567,8 @@ declare namespace sap {
1549
1567
  mParameters?: object
1550
1568
  ): this;
1551
1569
  /**
1570
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1571
+ *
1552
1572
  * Fires event {@link #event:pressNext pressNext} to attached listeners.
1553
1573
  *
1554
1574
  * @returns Reference to `this` in order to allow method chaining
@@ -1560,6 +1580,8 @@ declare namespace sap {
1560
1580
  mParameters?: object
1561
1581
  ): this;
1562
1582
  /**
1583
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1584
+ *
1563
1585
  * Fires event {@link #event:pressPrevious pressPrevious} to attached listeners.
1564
1586
  *
1565
1587
  * @returns Reference to `this` in order to allow method chaining
@@ -2343,6 +2365,8 @@ declare namespace sap {
2343
2365
  oDate: Date
2344
2366
  ): this;
2345
2367
  /**
2368
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2369
+ *
2346
2370
  * Fires event {@link #event:focus focus} to attached listeners.
2347
2371
  *
2348
2372
  * @returns Reference to `this` in order to allow method chaining
@@ -2367,6 +2391,8 @@ declare namespace sap {
2367
2391
  }
2368
2392
  ): this;
2369
2393
  /**
2394
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2395
+ *
2370
2396
  * Fires event {@link #event:select select} to attached listeners.
2371
2397
  *
2372
2398
  * @returns Reference to `this` in order to allow method chaining
@@ -2379,6 +2405,7 @@ declare namespace sap {
2379
2405
  ): this;
2380
2406
  /**
2381
2407
  * @SINCE 1.60
2408
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2382
2409
  *
2383
2410
  * Fires event {@link #event:weekNumberSelect weekNumberSelect} to attached listeners.
2384
2411
  *
@@ -2748,6 +2775,17 @@ declare namespace sap {
2748
2775
  */
2749
2776
  sCalendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering
2750
2777
  ): this;
2778
+ /**
2779
+ * Sets a date for the month.
2780
+ *
2781
+ * @returns Reference to `this` for method chaining
2782
+ */
2783
+ setDate(
2784
+ /**
2785
+ * a JavaScript date
2786
+ */
2787
+ oDate: Date
2788
+ ): this;
2751
2789
  /**
2752
2790
  * @SINCE 1.28.9
2753
2791
  *
@@ -3166,6 +3204,7 @@ declare namespace sap {
3166
3204
  ): this;
3167
3205
  /**
3168
3206
  * @SINCE 1.38.0
3207
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3169
3208
  *
3170
3209
  * Fires event {@link #event:pageChange pageChange} to attached listeners.
3171
3210
  *
@@ -3178,6 +3217,8 @@ declare namespace sap {
3178
3217
  mParameters?: object
3179
3218
  ): this;
3180
3219
  /**
3220
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3221
+ *
3181
3222
  * Fires event {@link #event:select select} to attached listeners.
3182
3223
  *
3183
3224
  * @returns Reference to `this` in order to allow method chaining
@@ -3757,6 +3798,8 @@ declare namespace sap {
3757
3798
  oDate: Date
3758
3799
  ): this;
3759
3800
  /**
3801
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3802
+ *
3760
3803
  * Fires event {@link #event:focus focus} to attached listeners.
3761
3804
  *
3762
3805
  * @returns Reference to `this` in order to allow method chaining
@@ -3777,6 +3820,8 @@ declare namespace sap {
3777
3820
  }
3778
3821
  ): this;
3779
3822
  /**
3823
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3824
+ *
3780
3825
  * Fires event {@link #event:select select} to attached listeners.
3781
3826
  *
3782
3827
  * @returns Reference to `this` in order to allow method chaining
@@ -4013,6 +4058,17 @@ declare namespace sap {
4013
4058
  */
4014
4059
  vSpecialDate: int | string | sap.ui.unified.DateTypeRange
4015
4060
  ): sap.ui.unified.DateTypeRange | null;
4061
+ /**
4062
+ * Sets a date for the months row.
4063
+ *
4064
+ * @returns Reference to `this` for method chaining
4065
+ */
4066
+ setDate(
4067
+ /**
4068
+ * a JavaScript date
4069
+ */
4070
+ oDate: Date
4071
+ ): this;
4016
4072
  /**
4017
4073
  * Sets a new value for property {@link #getIntervalSelection intervalSelection}.
4018
4074
  *
@@ -4133,6 +4189,17 @@ declare namespace sap {
4133
4189
  */
4134
4190
  bSingleSelection?: boolean
4135
4191
  ): this;
4192
+ /**
4193
+ * Sets start date of the month row.
4194
+ *
4195
+ * @returns Reference to `this` in order to allow method chaining
4196
+ */
4197
+ setStartDate(
4198
+ /**
4199
+ * A JavaScript date
4200
+ */
4201
+ oStartDate: Date
4202
+ ): this;
4136
4203
  }
4137
4204
  /**
4138
4205
  * @SINCE 1.32.0
@@ -4402,6 +4469,8 @@ declare namespace sap {
4402
4469
  oDate: Date
4403
4470
  ): this;
4404
4471
  /**
4472
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4473
+ *
4405
4474
  * Fires event {@link #event:focus focus} to attached listeners.
4406
4475
  *
4407
4476
  * @returns Reference to `this` in order to allow method chaining
@@ -4422,6 +4491,8 @@ declare namespace sap {
4422
4491
  }
4423
4492
  ): this;
4424
4493
  /**
4494
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4495
+ *
4425
4496
  * Fires event {@link #event:select select} to attached listeners.
4426
4497
  *
4427
4498
  * @returns Reference to `this` in order to allow method chaining
@@ -4668,6 +4739,17 @@ declare namespace sap {
4668
4739
  */
4669
4740
  vSpecialDate: int | string | sap.ui.unified.DateTypeRange
4670
4741
  ): sap.ui.unified.DateTypeRange | null;
4742
+ /**
4743
+ * Setter for the `date` property.
4744
+ *
4745
+ * @returns Reference to `this` for method chaining
4746
+ */
4747
+ setDate(
4748
+ /**
4749
+ * A JavaScript Date
4750
+ */
4751
+ oDate: Date
4752
+ ): this;
4671
4753
  /**
4672
4754
  * Sets a new value for property {@link #getIntervalMinutes intervalMinutes}.
4673
4755
  *
@@ -4811,6 +4893,17 @@ declare namespace sap {
4811
4893
  */
4812
4894
  bSingleSelection?: boolean
4813
4895
  ): this;
4896
+ /**
4897
+ * Sets start date, as JavaScript Date object, of the row.
4898
+ *
4899
+ * @returns Reference to `this` for method chaining
4900
+ */
4901
+ setStartDate(
4902
+ /**
4903
+ * A JavaScript Date
4904
+ */
4905
+ oStartDate: Date
4906
+ ): this;
4814
4907
  }
4815
4908
  /**
4816
4909
  * @SINCE 1.28.0
@@ -5037,6 +5130,7 @@ declare namespace sap {
5037
5130
  ): this;
5038
5131
  /**
5039
5132
  * @SINCE 1.38.0
5133
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
5040
5134
  *
5041
5135
  * Fires event {@link #event:pageChange pageChange} to attached listeners.
5042
5136
  *
@@ -5049,6 +5143,8 @@ declare namespace sap {
5049
5143
  mParameters?: object
5050
5144
  ): this;
5051
5145
  /**
5146
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
5147
+ *
5052
5148
  * Fires event {@link #event:select select} to attached listeners.
5053
5149
  *
5054
5150
  * @returns Reference to `this` in order to allow method chaining
@@ -5244,6 +5340,17 @@ declare namespace sap {
5244
5340
  */
5245
5341
  iColumns?: int
5246
5342
  ): this;
5343
+ /**
5344
+ * Setter for the `date` property
5345
+ *
5346
+ * @returns Reference to `this` for method chaining
5347
+ */
5348
+ setDate(
5349
+ /**
5350
+ * a JavaScript date
5351
+ */
5352
+ oDate: Date
5353
+ ): this;
5247
5354
  /**
5248
5355
  * @SINCE 1.74
5249
5356
  *
@@ -8007,6 +8114,8 @@ declare namespace sap {
8007
8114
  oDate: Date
8008
8115
  ): this;
8009
8116
  /**
8117
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8118
+ *
8010
8119
  * Fires event {@link #event:cancel cancel} to attached listeners.
8011
8120
  *
8012
8121
  * @returns Reference to `this` in order to allow method chaining
@@ -8018,6 +8127,8 @@ declare namespace sap {
8018
8127
  mParameters?: object
8019
8128
  ): this;
8020
8129
  /**
8130
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8131
+ *
8021
8132
  * Fires event {@link #event:select select} to attached listeners.
8022
8133
  *
8023
8134
  * @returns Reference to `this` in order to allow method chaining
@@ -8030,6 +8141,7 @@ declare namespace sap {
8030
8141
  ): this;
8031
8142
  /**
8032
8143
  * @SINCE 1.34.0
8144
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8033
8145
  *
8034
8146
  * Fires event {@link #event:startDateChange startDateChange} to attached listeners.
8035
8147
  *
@@ -8043,6 +8155,7 @@ declare namespace sap {
8043
8155
  ): this;
8044
8156
  /**
8045
8157
  * @SINCE 1.56
8158
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8046
8159
  *
8047
8160
  * Fires event {@link #event:weekNumberSelect weekNumberSelect} to attached listeners.
8048
8161
  *
@@ -8651,7 +8764,7 @@ declare namespace sap {
8651
8764
  /**
8652
8765
  * New value for property `primaryCalendarType`
8653
8766
  */
8654
- sPrimaryCalendarType?: sap.ui.core.CalendarType
8767
+ sPrimaryCalendarType: sap.ui.core.CalendarType
8655
8768
  ): this;
8656
8769
  /**
8657
8770
  * @SINCE 1.34.0
@@ -8669,7 +8782,7 @@ declare namespace sap {
8669
8782
  /**
8670
8783
  * New value for property `secondaryCalendarType`
8671
8784
  */
8672
- sSecondaryCalendarType?: sap.ui.core.CalendarType
8785
+ sSecondaryCalendarType: sap.ui.core.CalendarType
8673
8786
  ): this;
8674
8787
  /**
8675
8788
  * Sets the visibility of the Current date button in the calendar.
@@ -9193,6 +9306,8 @@ declare namespace sap {
9193
9306
  */
9194
9307
  static getMetadata(): sap.ui.core.ElementMetadata;
9195
9308
  /**
9309
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9310
+ *
9196
9311
  * If more than this number of days are displayed, start and end month are displayed on the button.
9197
9312
  *
9198
9313
  * @returns The number of days to determine how the start and end of month are displayed
@@ -9233,6 +9348,14 @@ declare namespace sap {
9233
9348
  * @returns Value of property `showDayNamesLine`
9234
9349
  */
9235
9350
  getShowDayNamesLine(): boolean;
9351
+ /**
9352
+ * Returns the start date of the interval.
9353
+ *
9354
+ * Start date of the Interval
9355
+ *
9356
+ * @returns JavaScript date object for property `startDate`
9357
+ */
9358
+ getStartDate(): Date;
9236
9359
  /**
9237
9360
  * Sets a new value for property {@link #getDays days}.
9238
9361
  *
@@ -9251,6 +9374,8 @@ declare namespace sap {
9251
9374
  iDays?: int
9252
9375
  ): this;
9253
9376
  /**
9377
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9378
+ *
9254
9379
  * Setter for property `firstDayOfWeek`.
9255
9380
  *
9256
9381
  * Property `firstDayOfWeek` is not supported in `sap.ui.unified.CalendarDateInterval` control.
@@ -9264,6 +9389,8 @@ declare namespace sap {
9264
9389
  iFirstDayOfWeek?: int
9265
9390
  ): this;
9266
9391
  /**
9392
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9393
+ *
9267
9394
  * Setter for property `months`.
9268
9395
  *
9269
9396
  * Property `months` is not supported in `sap.ui.unified.CalendarDateInterval` control.
@@ -9315,6 +9442,17 @@ declare namespace sap {
9315
9442
  */
9316
9443
  bShowDayNamesLine?: boolean
9317
9444
  ): this;
9445
+ /**
9446
+ * Set start date for the interval.
9447
+ *
9448
+ * @returns Reference to `this` for method chaining
9449
+ */
9450
+ setStartDate(
9451
+ /**
9452
+ * A JavaScript Date
9453
+ */
9454
+ oStartDate: Date
9455
+ ): this;
9318
9456
  }
9319
9457
  /**
9320
9458
  * @SINCE 1.24.0
@@ -10011,6 +10149,8 @@ declare namespace sap {
10011
10149
  oDatetime: Date
10012
10150
  ): this;
10013
10151
  /**
10152
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
10153
+ *
10014
10154
  * Fires event {@link #event:cancel cancel} to attached listeners.
10015
10155
  *
10016
10156
  * @returns Reference to `this` in order to allow method chaining
@@ -10022,6 +10162,8 @@ declare namespace sap {
10022
10162
  mParameters?: object
10023
10163
  ): this;
10024
10164
  /**
10165
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
10166
+ *
10025
10167
  * Fires event {@link #event:select select} to attached listeners.
10026
10168
  *
10027
10169
  * @returns Reference to `this` in order to allow method chaining
@@ -10034,6 +10176,7 @@ declare namespace sap {
10034
10176
  ): this;
10035
10177
  /**
10036
10178
  * @SINCE 1.34.0
10179
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
10037
10180
  *
10038
10181
  * Fires event {@link #event:startDateChange startDateChange} to attached listeners.
10039
10182
  *
@@ -10320,6 +10463,28 @@ declare namespace sap {
10320
10463
  */
10321
10464
  oLegend: sap.ui.core.ID | sap.ui.unified.CalendarLegend
10322
10465
  ): this;
10466
+ /**
10467
+ * Sets a maximum date for the calendar.
10468
+ *
10469
+ * @returns Reference to `this` for method chaining
10470
+ */
10471
+ setMaxDate(
10472
+ /**
10473
+ * A JavaScript Date
10474
+ */
10475
+ oDate?: Date
10476
+ ): this;
10477
+ /**
10478
+ * Sets a minimum date for the calendar.
10479
+ *
10480
+ * @returns Reference to `this` for method chaining
10481
+ */
10482
+ setMinDate(
10483
+ /**
10484
+ * A JavaScript Date
10485
+ */
10486
+ oDate?: Date
10487
+ ): this;
10323
10488
  /**
10324
10489
  * Sets a new value for property {@link #getMonths months}.
10325
10490
  *
@@ -10377,6 +10542,17 @@ declare namespace sap {
10377
10542
  */
10378
10543
  bSingleSelection?: boolean
10379
10544
  ): this;
10545
+ /**
10546
+ * Sets start date for the interval.
10547
+ *
10548
+ * @returns Reference to `this` for method chaining
10549
+ */
10550
+ setStartDate(
10551
+ /**
10552
+ * A JavaScript date
10553
+ */
10554
+ oStartDate: Date
10555
+ ): this;
10380
10556
  /**
10381
10557
  * Sets a new value for property {@link #getWidth width}.
10382
10558
  *
@@ -10768,6 +10944,7 @@ declare namespace sap {
10768
10944
  ): this;
10769
10945
  /**
10770
10946
  * @SINCE 1.38.0
10947
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
10771
10948
  *
10772
10949
  * Fires event {@link #event:intervalSelect intervalSelect} to attached listeners.
10773
10950
  *
@@ -10793,6 +10970,8 @@ declare namespace sap {
10793
10970
  }
10794
10971
  ): this;
10795
10972
  /**
10973
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
10974
+ *
10796
10975
  * Fires event {@link #event:leaveRow leaveRow} to attached listeners.
10797
10976
  *
10798
10977
  * @returns Reference to `this` in order to allow method chaining
@@ -10809,6 +10988,8 @@ declare namespace sap {
10809
10988
  }
10810
10989
  ): this;
10811
10990
  /**
10991
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
10992
+ *
10812
10993
  * Fires event {@link #event:select select} to attached listeners.
10813
10994
  *
10814
10995
  * @returns Reference to `this` in order to allow method chaining
@@ -10838,6 +11019,8 @@ declare namespace sap {
10838
11019
  }
10839
11020
  ): this;
10840
11021
  /**
11022
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
11023
+ *
10841
11024
  * Fires event {@link #event:startDateChange startDateChange} to attached listeners.
10842
11025
  *
10843
11026
  * @returns Reference to `this` in order to allow method chaining
@@ -11606,6 +11789,17 @@ declare namespace sap {
11606
11789
  */
11607
11790
  bShowSubIntervals?: boolean
11608
11791
  ): this;
11792
+ /**
11793
+ * Set the start date of the row.
11794
+ *
11795
+ * @returns Reference to `this` for method chaining
11796
+ */
11797
+ setStartDate(
11798
+ /**
11799
+ * Start date, as JavaScript Date object, of the row
11800
+ */
11801
+ oStartDate?: Date
11802
+ ): this;
11609
11803
  /**
11610
11804
  * Sets a new value for property {@link #getUpdateCurrentTime updateCurrentTime}.
11611
11805
  *
@@ -11978,6 +12172,8 @@ declare namespace sap {
11978
12172
  oDate: Date
11979
12173
  ): this;
11980
12174
  /**
12175
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12176
+ *
11981
12177
  * Fires event {@link #event:cancel cancel} to attached listeners.
11982
12178
  *
11983
12179
  * @returns Reference to `this` in order to allow method chaining
@@ -11989,6 +12185,8 @@ declare namespace sap {
11989
12185
  mParameters?: object
11990
12186
  ): this;
11991
12187
  /**
12188
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12189
+ *
11992
12190
  * Fires event {@link #event:select select} to attached listeners.
11993
12191
  *
11994
12192
  * @returns Reference to `this` in order to allow method chaining
@@ -12001,6 +12199,7 @@ declare namespace sap {
12001
12199
  ): this;
12002
12200
  /**
12003
12201
  * @SINCE 1.34.0
12202
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12004
12203
  *
12005
12204
  * Fires event {@link #event:startDateChange startDateChange} to attached listeners.
12006
12205
  *
@@ -12340,6 +12539,28 @@ declare namespace sap {
12340
12539
  */
12341
12540
  oLegend: sap.ui.core.ID | sap.ui.unified.CalendarLegend
12342
12541
  ): this;
12542
+ /**
12543
+ * Set maximum date that can be shown and selected in the Calendar.
12544
+ *
12545
+ * @returns Reference to `this` for method chaining
12546
+ */
12547
+ setMaxDate(
12548
+ /**
12549
+ * Max date as a JS Date object
12550
+ */
12551
+ oDate?: Date
12552
+ ): this;
12553
+ /**
12554
+ * Set minimum date that can be shown and selected in the Calendar.
12555
+ *
12556
+ * @returns Reference to `this` for method chaining
12557
+ */
12558
+ setMinDate(
12559
+ /**
12560
+ * Min date as a JS Date object
12561
+ */
12562
+ oDate?: Date
12563
+ ): this;
12343
12564
  /**
12344
12565
  * @SINCE 1.34.0
12345
12566
  *
@@ -12378,6 +12599,17 @@ declare namespace sap {
12378
12599
  */
12379
12600
  bSingleSelection?: boolean
12380
12601
  ): this;
12602
+ /**
12603
+ * Sets start date for the interval.
12604
+ *
12605
+ * @returns Reference to `this` for method chaining
12606
+ */
12607
+ setStartDate(
12608
+ /**
12609
+ * A JavaScript date
12610
+ */
12611
+ oStartDate: Date
12612
+ ): this;
12381
12613
  /**
12382
12614
  * Sets a new value for property {@link #getWidth width}.
12383
12615
  *
@@ -12610,6 +12842,7 @@ declare namespace sap {
12610
12842
  ): this;
12611
12843
  /**
12612
12844
  * @SINCE 1.48.0
12845
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12613
12846
  *
12614
12847
  * Fires event {@link #event:change change} to attached listeners.
12615
12848
  *
@@ -12660,6 +12893,7 @@ declare namespace sap {
12660
12893
  ): this;
12661
12894
  /**
12662
12895
  * @SINCE 1.48.0
12896
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12663
12897
  *
12664
12898
  * Fires event {@link #event:liveChange liveChange} to attached listeners.
12665
12899
  *
@@ -13031,6 +13265,7 @@ declare namespace sap {
13031
13265
  ): this;
13032
13266
  /**
13033
13267
  * @SINCE 1.60.0
13268
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13034
13269
  *
13035
13270
  * Fires event {@link #event:change change} to attached listeners.
13036
13271
  *
@@ -13081,6 +13316,7 @@ declare namespace sap {
13081
13316
  ): this;
13082
13317
  /**
13083
13318
  * @SINCE 1.85
13319
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13084
13320
  *
13085
13321
  * Fires event {@link #event:liveChange liveChange} to attached listeners.
13086
13322
  *
@@ -13613,6 +13849,8 @@ declare namespace sap {
13613
13849
  */
13614
13850
  static getMetadata(): sap.ui.core.ElementMetadata;
13615
13851
  /**
13852
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13853
+ *
13616
13854
  * See:
13617
13855
  * sap.ui.core.Control#getAccessibilityInfo
13618
13856
  *
@@ -13826,6 +14064,36 @@ declare namespace sap {
13826
14064
  * @returns Value of property `startDate`
13827
14065
  */
13828
14066
  getStartDate(): object;
14067
+ /**
14068
+ * Set end date for a date range.
14069
+ *
14070
+ * @returns Reference to `this` for method chaining
14071
+ */
14072
+ setEndDate(
14073
+ /**
14074
+ * A JavaScript date
14075
+ */
14076
+ oDate?: Date,
14077
+ /**
14078
+ * If true, `endDate` is not marked as changed
14079
+ */
14080
+ bInvalidate?: boolean
14081
+ ): this;
14082
+ /**
14083
+ * Set start date for a date range.
14084
+ *
14085
+ * @returns Reference to `this` for method chaining
14086
+ */
14087
+ setStartDate(
14088
+ /**
14089
+ * A JavaScript date
14090
+ */
14091
+ oDate?: Date,
14092
+ /**
14093
+ * If true, `startDate` is not marked as changed
14094
+ */
14095
+ bInvalidate?: boolean
14096
+ ): this;
13829
14097
  }
13830
14098
  /**
13831
14099
  * @SINCE 1.24.0
@@ -15004,6 +15272,7 @@ declare namespace sap {
15004
15272
  ): this;
15005
15273
  /**
15006
15274
  * @SINCE 1.102.0
15275
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
15007
15276
  *
15008
15277
  * Fires event {@link #event:afterDialogClose afterDialogClose} to attached listeners.
15009
15278
  *
@@ -15017,6 +15286,7 @@ declare namespace sap {
15017
15286
  ): this;
15018
15287
  /**
15019
15288
  * @SINCE 1.102.0
15289
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
15020
15290
  *
15021
15291
  * Fires event {@link #event:beforeDialogOpen beforeDialogOpen} to attached listeners.
15022
15292
  *
@@ -15029,6 +15299,8 @@ declare namespace sap {
15029
15299
  mParameters?: object
15030
15300
  ): this;
15031
15301
  /**
15302
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
15303
+ *
15032
15304
  * Fires event {@link #event:change change} to attached listeners.
15033
15305
  *
15034
15306
  * @returns Reference to `this` in order to allow method chaining
@@ -15049,6 +15321,8 @@ declare namespace sap {
15049
15321
  }
15050
15322
  ): this;
15051
15323
  /**
15324
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
15325
+ *
15052
15326
  * Fires event {@link #event:fileAllowed fileAllowed} to attached listeners.
15053
15327
  *
15054
15328
  * @returns Reference to `this` in order to allow method chaining
@@ -15060,6 +15334,8 @@ declare namespace sap {
15060
15334
  mParameters?: object
15061
15335
  ): this;
15062
15336
  /**
15337
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
15338
+ *
15063
15339
  * Fires event {@link #event:fileEmpty fileEmpty} to attached listeners.
15064
15340
  *
15065
15341
  * @returns Reference to `this` in order to allow method chaining
@@ -15077,6 +15353,7 @@ declare namespace sap {
15077
15353
  ): this;
15078
15354
  /**
15079
15355
  * @SINCE 1.24.0
15356
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
15080
15357
  *
15081
15358
  * Fires event {@link #event:filenameLengthExceed filenameLengthExceed} to attached listeners.
15082
15359
  *
@@ -15094,6 +15371,8 @@ declare namespace sap {
15094
15371
  }
15095
15372
  ): this;
15096
15373
  /**
15374
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
15375
+ *
15097
15376
  * Fires event {@link #event:fileSizeExceed fileSizeExceed} to attached listeners.
15098
15377
  *
15099
15378
  * @returns Reference to `this` in order to allow method chaining
@@ -15114,6 +15393,8 @@ declare namespace sap {
15114
15393
  }
15115
15394
  ): this;
15116
15395
  /**
15396
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
15397
+ *
15117
15398
  * Fires event {@link #event:typeMissmatch typeMissmatch} to attached listeners.
15118
15399
  *
15119
15400
  * @returns Reference to `this` in order to allow method chaining
@@ -15139,6 +15420,7 @@ declare namespace sap {
15139
15420
  ): this;
15140
15421
  /**
15141
15422
  * @SINCE 1.24.0
15423
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
15142
15424
  *
15143
15425
  * Fires event {@link #event:uploadAborted uploadAborted} to attached listeners.
15144
15426
  *
@@ -15163,6 +15445,8 @@ declare namespace sap {
15163
15445
  }
15164
15446
  ): this;
15165
15447
  /**
15448
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
15449
+ *
15166
15450
  * Fires event {@link #event:uploadComplete uploadComplete} to attached listeners.
15167
15451
  *
15168
15452
  * @returns Reference to `this` in order to allow method chaining
@@ -15227,6 +15511,7 @@ declare namespace sap {
15227
15511
  ): this;
15228
15512
  /**
15229
15513
  * @SINCE 1.24.0
15514
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
15230
15515
  *
15231
15516
  * Fires event {@link #event:uploadProgress uploadProgress} to attached listeners.
15232
15517
  *
@@ -15264,6 +15549,7 @@ declare namespace sap {
15264
15549
  ): this;
15265
15550
  /**
15266
15551
  * @SINCE 1.30.0
15552
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
15267
15553
  *
15268
15554
  * Fires event {@link #event:uploadStart uploadStart} to attached listeners.
15269
15555
  *
@@ -16752,6 +17038,8 @@ declare namespace sap {
16752
17038
  oListener?: object
16753
17039
  ): this;
16754
17040
  /**
17041
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
17042
+ *
16755
17043
  * Fires event {@link #event:itemSelect itemSelect} to attached listeners.
16756
17044
  *
16757
17045
  * @returns Reference to `this` in order to allow method chaining
@@ -17330,6 +17618,8 @@ declare namespace sap {
17330
17618
  oListener?: object
17331
17619
  ): this;
17332
17620
  /**
17621
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
17622
+ *
17333
17623
  * Fires event {@link #event:select select} to attached listeners.
17334
17624
  *
17335
17625
  * @returns Reference to `this` in order to allow method chaining
@@ -17384,6 +17674,8 @@ declare namespace sap {
17384
17674
  */
17385
17675
  getVisible(): boolean;
17386
17676
  /**
17677
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
17678
+ *
17387
17679
  * Changes the visual hover state of the menu item.
17388
17680
  *
17389
17681
  * Subclasses may override this function.
@@ -17399,12 +17691,16 @@ declare namespace sap {
17399
17691
  oMenu: sap.ui.unified.Menu
17400
17692
  ): void;
17401
17693
  /**
17694
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
17695
+ *
17402
17696
  * Informs the item that the item HTML is now applied to the DOM.
17403
17697
  *
17404
17698
  * Subclasses may override this function.
17405
17699
  */
17406
17700
  onAfterRendering(): void;
17407
17701
  /**
17702
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
17703
+ *
17408
17704
  * Event handler which is called whenever the submenu of the item is opened or closed.
17409
17705
  *
17410
17706
  * Subclasses may override this function.
@@ -17416,6 +17712,8 @@ declare namespace sap {
17416
17712
  bOpened: boolean
17417
17713
  ): void;
17418
17714
  /**
17715
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
17716
+ *
17419
17717
  * Produces the HTML of an item and writes it to render-output-buffer during the rendering of the corresponding
17420
17718
  * menu.
17421
17719
  *
@@ -18379,6 +18677,8 @@ declare namespace sap {
18379
18677
  oListener?: object
18380
18678
  ): this;
18381
18679
  /**
18680
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
18681
+ *
18382
18682
  * Fires event {@link #event:press press} to attached listeners.
18383
18683
  *
18384
18684
  * @returns Reference to `this` in order to allow method chaining
@@ -18764,6 +19064,8 @@ declare namespace sap {
18764
19064
  oListener?: object
18765
19065
  ): this;
18766
19066
  /**
19067
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
19068
+ *
18767
19069
  * Fires event {@link #event:press press} to attached listeners.
18768
19070
  *
18769
19071
  * @returns Reference to `this` in order to allow method chaining
@@ -19367,6 +19669,8 @@ declare namespace sap {
19367
19669
  oListener?: object
19368
19670
  ): this;
19369
19671
  /**
19672
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
19673
+ *
19370
19674
  * Fires event {@link #event:closed closed} to attached listeners.
19371
19675
  *
19372
19676
  * @returns Reference to `this` in order to allow method chaining