@openui5/ts-types 1.105.2 → 1.105.3
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/sap.f.d.ts +1 -1
- package/types/sap.m.d.ts +41 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1 -1
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1 -1
- 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 +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +99 -13
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.105.
|
|
1
|
+
// For Library Version: 1.105.3
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -16097,6 +16097,17 @@ declare namespace sap {
|
|
|
16097
16097
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
16098
16098
|
| `{${string}}`;
|
|
16099
16099
|
|
|
16100
|
+
/**
|
|
16101
|
+
* @SINCE 1.108.0
|
|
16102
|
+
*
|
|
16103
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
16104
|
+
* global configuration is used.
|
|
16105
|
+
*/
|
|
16106
|
+
calendarWeekNumbering?:
|
|
16107
|
+
| sap.ui.core.date.CalendarWeekNumbering
|
|
16108
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
16109
|
+
| `{${string}}`;
|
|
16110
|
+
|
|
16100
16111
|
/**
|
|
16101
16112
|
* @SINCE 1.38.5
|
|
16102
16113
|
*
|
|
@@ -44178,6 +44189,17 @@ declare namespace sap {
|
|
|
44178
44189
|
* @returns Current accessibility state of the control.
|
|
44179
44190
|
*/
|
|
44180
44191
|
getAccessibilityInfo(): object;
|
|
44192
|
+
/**
|
|
44193
|
+
* @SINCE 1.108.0
|
|
44194
|
+
*
|
|
44195
|
+
* Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
44196
|
+
*
|
|
44197
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
44198
|
+
* global configuration is used.
|
|
44199
|
+
*
|
|
44200
|
+
* @returns Value of property `calendarWeekNumbering`
|
|
44201
|
+
*/
|
|
44202
|
+
getCalendarWeekNumbering(): sap.ui.core.date.CalendarWeekNumbering;
|
|
44181
44203
|
/**
|
|
44182
44204
|
* The date as JavaScript Date object. This is independent from any formatter.
|
|
44183
44205
|
*
|
|
@@ -44430,6 +44452,24 @@ declare namespace sap {
|
|
|
44430
44452
|
*/
|
|
44431
44453
|
oSpecialDate: sap.ui.unified.DateTypeRange
|
|
44432
44454
|
): sap.ui.unified.DateTypeRange;
|
|
44455
|
+
/**
|
|
44456
|
+
* @SINCE 1.108.0
|
|
44457
|
+
*
|
|
44458
|
+
* Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
44459
|
+
*
|
|
44460
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
44461
|
+
* global configuration is used.
|
|
44462
|
+
*
|
|
44463
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
44464
|
+
*
|
|
44465
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
44466
|
+
*/
|
|
44467
|
+
setCalendarWeekNumbering(
|
|
44468
|
+
/**
|
|
44469
|
+
* New value for property `calendarWeekNumbering`
|
|
44470
|
+
*/
|
|
44471
|
+
sCalendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering
|
|
44472
|
+
): this;
|
|
44433
44473
|
/**
|
|
44434
44474
|
* Sets the displayFormat of the DatePicker.
|
|
44435
44475
|
*
|
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.105.
|
|
1
|
+
// For Library Version: 1.105.3
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -240,8 +240,9 @@ declare namespace sap {
|
|
|
240
240
|
/**
|
|
241
241
|
* @SINCE 1.28.9
|
|
242
242
|
*
|
|
243
|
-
* If set, the
|
|
244
|
-
* is set, the default
|
|
243
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
244
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
245
|
+
* with the calendarWeekNumbering property.
|
|
245
246
|
*/
|
|
246
247
|
firstDayOfWeek?:
|
|
247
248
|
| int
|
|
@@ -304,6 +305,17 @@ declare namespace sap {
|
|
|
304
305
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
305
306
|
| `{${string}}`;
|
|
306
307
|
|
|
308
|
+
/**
|
|
309
|
+
* @SINCE 1.108.0
|
|
310
|
+
*
|
|
311
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
312
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property.
|
|
313
|
+
*/
|
|
314
|
+
calendarWeekNumbering?:
|
|
315
|
+
| sap.ui.core.date.CalendarWeekNumbering
|
|
316
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
317
|
+
| `{${string}}`;
|
|
318
|
+
|
|
307
319
|
/**
|
|
308
320
|
* Date Ranges for selected dates of the DatePicker
|
|
309
321
|
*/
|
|
@@ -2327,6 +2339,17 @@ declare namespace sap {
|
|
|
2327
2339
|
* ariaLabelledBy}.
|
|
2328
2340
|
*/
|
|
2329
2341
|
getAriaLabelledBy(): sap.ui.core.ID[];
|
|
2342
|
+
/**
|
|
2343
|
+
* @SINCE 1.108.0
|
|
2344
|
+
*
|
|
2345
|
+
* Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
2346
|
+
*
|
|
2347
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
2348
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property.
|
|
2349
|
+
*
|
|
2350
|
+
* @returns Value of property `calendarWeekNumbering`
|
|
2351
|
+
*/
|
|
2352
|
+
getCalendarWeekNumbering(): sap.ui.core.date.CalendarWeekNumbering;
|
|
2330
2353
|
/**
|
|
2331
2354
|
* Gets current value of property {@link #getDate date}.
|
|
2332
2355
|
*
|
|
@@ -2349,8 +2372,9 @@ declare namespace sap {
|
|
|
2349
2372
|
*
|
|
2350
2373
|
* Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
|
|
2351
2374
|
*
|
|
2352
|
-
* If set, the
|
|
2353
|
-
* is set, the default
|
|
2375
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
2376
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
2377
|
+
* with the calendarWeekNumbering property.
|
|
2354
2378
|
*
|
|
2355
2379
|
* Default value is `-1`.
|
|
2356
2380
|
*
|
|
@@ -2636,6 +2660,24 @@ declare namespace sap {
|
|
|
2636
2660
|
*/
|
|
2637
2661
|
vSpecialDate: int | string | sap.ui.unified.DateTypeRange
|
|
2638
2662
|
): sap.ui.unified.DateTypeRange | null;
|
|
2663
|
+
/**
|
|
2664
|
+
* @SINCE 1.108.0
|
|
2665
|
+
*
|
|
2666
|
+
* Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
2667
|
+
*
|
|
2668
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
2669
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property.
|
|
2670
|
+
*
|
|
2671
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2672
|
+
*
|
|
2673
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2674
|
+
*/
|
|
2675
|
+
setCalendarWeekNumbering(
|
|
2676
|
+
/**
|
|
2677
|
+
* New value for property `calendarWeekNumbering`
|
|
2678
|
+
*/
|
|
2679
|
+
sCalendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering
|
|
2680
|
+
): this;
|
|
2639
2681
|
/**
|
|
2640
2682
|
* Sets a new value for property {@link #getDate date}.
|
|
2641
2683
|
*
|
|
@@ -2657,8 +2699,9 @@ declare namespace sap {
|
|
|
2657
2699
|
*
|
|
2658
2700
|
* Sets a new value for property {@link #getFirstDayOfWeek firstDayOfWeek}.
|
|
2659
2701
|
*
|
|
2660
|
-
* If set, the
|
|
2661
|
-
* is set, the default
|
|
2702
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
2703
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
2704
|
+
* with the calendarWeekNumbering property.
|
|
2662
2705
|
*
|
|
2663
2706
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2664
2707
|
*
|
|
@@ -5235,8 +5278,9 @@ declare namespace sap {
|
|
|
5235
5278
|
/**
|
|
5236
5279
|
* @SINCE 1.28.9
|
|
5237
5280
|
*
|
|
5238
|
-
* If set, the
|
|
5239
|
-
* is set, the default
|
|
5281
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
5282
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
5283
|
+
* with the calendarWeekNumbering property.
|
|
5240
5284
|
*/
|
|
5241
5285
|
firstDayOfWeek?:
|
|
5242
5286
|
| int
|
|
@@ -5348,6 +5392,17 @@ declare namespace sap {
|
|
|
5348
5392
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
5349
5393
|
| `{${string}}`;
|
|
5350
5394
|
|
|
5395
|
+
/**
|
|
5396
|
+
* @SINCE 1.108.0
|
|
5397
|
+
*
|
|
5398
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
5399
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property.
|
|
5400
|
+
*/
|
|
5401
|
+
calendarWeekNumbering?:
|
|
5402
|
+
| sap.ui.core.date.CalendarWeekNumbering
|
|
5403
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
5404
|
+
| `{${string}}`;
|
|
5405
|
+
|
|
5351
5406
|
/**
|
|
5352
5407
|
* Dates or date ranges for selected dates.
|
|
5353
5408
|
*
|
|
@@ -7897,6 +7952,17 @@ declare namespace sap {
|
|
|
7897
7952
|
* ariaLabelledBy}.
|
|
7898
7953
|
*/
|
|
7899
7954
|
getAriaLabelledBy(): sap.ui.core.ID[];
|
|
7955
|
+
/**
|
|
7956
|
+
* @SINCE 1.108.0
|
|
7957
|
+
*
|
|
7958
|
+
* Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
7959
|
+
*
|
|
7960
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
7961
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property.
|
|
7962
|
+
*
|
|
7963
|
+
* @returns Value of property `calendarWeekNumbering`
|
|
7964
|
+
*/
|
|
7965
|
+
getCalendarWeekNumbering(): sap.ui.core.date.CalendarWeekNumbering;
|
|
7900
7966
|
/**
|
|
7901
7967
|
* @SINCE 1.38.0
|
|
7902
7968
|
*
|
|
@@ -7913,8 +7979,9 @@ declare namespace sap {
|
|
|
7913
7979
|
*
|
|
7914
7980
|
* Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
|
|
7915
7981
|
*
|
|
7916
|
-
* If set, the
|
|
7917
|
-
* is set, the default
|
|
7982
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
7983
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
7984
|
+
* with the calendarWeekNumbering property.
|
|
7918
7985
|
*
|
|
7919
7986
|
* Default value is `-1`.
|
|
7920
7987
|
*
|
|
@@ -8288,13 +8355,32 @@ declare namespace sap {
|
|
|
8288
8355
|
*/
|
|
8289
8356
|
vSpecialDate: int | string | sap.ui.unified.DateTypeRange
|
|
8290
8357
|
): sap.ui.unified.DateTypeRange | null;
|
|
8358
|
+
/**
|
|
8359
|
+
* @SINCE 1.108.0
|
|
8360
|
+
*
|
|
8361
|
+
* Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
8362
|
+
*
|
|
8363
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
8364
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property.
|
|
8365
|
+
*
|
|
8366
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8367
|
+
*
|
|
8368
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8369
|
+
*/
|
|
8370
|
+
setCalendarWeekNumbering(
|
|
8371
|
+
/**
|
|
8372
|
+
* New value for property `calendarWeekNumbering`
|
|
8373
|
+
*/
|
|
8374
|
+
sCalendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering
|
|
8375
|
+
): this;
|
|
8291
8376
|
/**
|
|
8292
8377
|
* @SINCE 1.28.9
|
|
8293
8378
|
*
|
|
8294
8379
|
* Sets a new value for property {@link #getFirstDayOfWeek firstDayOfWeek}.
|
|
8295
8380
|
*
|
|
8296
|
-
* If set, the
|
|
8297
|
-
* is set, the default
|
|
8381
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
8382
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
8383
|
+
* with the calendarWeekNumbering property.
|
|
8298
8384
|
*
|
|
8299
8385
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8300
8386
|
*
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED