@openui5/ts-types-esm 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 +47 -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 +111 -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 module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -15408,6 +15408,8 @@ declare module "sap/m/DatePicker" {
|
|
|
15408
15408
|
|
|
15409
15409
|
import DateRange from "sap/ui/unified/DateRange";
|
|
15410
15410
|
|
|
15411
|
+
import CalendarWeekNumbering from "sap/ui/core/date/CalendarWeekNumbering";
|
|
15412
|
+
|
|
15411
15413
|
import { ID } from "sap/ui/core/library";
|
|
15412
15414
|
|
|
15413
15415
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
@@ -15853,6 +15855,19 @@ declare module "sap/m/DatePicker" {
|
|
|
15853
15855
|
* @returns Current accessibility state of the control.
|
|
15854
15856
|
*/
|
|
15855
15857
|
getAccessibilityInfo(): object;
|
|
15858
|
+
/**
|
|
15859
|
+
* @SINCE 1.108.0
|
|
15860
|
+
*
|
|
15861
|
+
* Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
15862
|
+
*
|
|
15863
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
15864
|
+
* global configuration is used.
|
|
15865
|
+
*
|
|
15866
|
+
* @returns Value of property `calendarWeekNumbering`
|
|
15867
|
+
*/
|
|
15868
|
+
getCalendarWeekNumbering():
|
|
15869
|
+
| CalendarWeekNumbering
|
|
15870
|
+
| keyof typeof CalendarWeekNumbering;
|
|
15856
15871
|
/**
|
|
15857
15872
|
* The date as JavaScript Date object. This is independent from any formatter.
|
|
15858
15873
|
*
|
|
@@ -16105,6 +16120,26 @@ declare module "sap/m/DatePicker" {
|
|
|
16105
16120
|
*/
|
|
16106
16121
|
oSpecialDate: DateTypeRange
|
|
16107
16122
|
): DateTypeRange;
|
|
16123
|
+
/**
|
|
16124
|
+
* @SINCE 1.108.0
|
|
16125
|
+
*
|
|
16126
|
+
* Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
16127
|
+
*
|
|
16128
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
16129
|
+
* global configuration is used.
|
|
16130
|
+
*
|
|
16131
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16132
|
+
*
|
|
16133
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
16134
|
+
*/
|
|
16135
|
+
setCalendarWeekNumbering(
|
|
16136
|
+
/**
|
|
16137
|
+
* New value for property `calendarWeekNumbering`
|
|
16138
|
+
*/
|
|
16139
|
+
sCalendarWeekNumbering?:
|
|
16140
|
+
| CalendarWeekNumbering
|
|
16141
|
+
| keyof typeof CalendarWeekNumbering
|
|
16142
|
+
): this;
|
|
16108
16143
|
/**
|
|
16109
16144
|
* Sets the displayFormat of the DatePicker.
|
|
16110
16145
|
*
|
|
@@ -16378,6 +16413,17 @@ declare module "sap/m/DatePicker" {
|
|
|
16378
16413
|
*/
|
|
16379
16414
|
hideInput?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
16380
16415
|
|
|
16416
|
+
/**
|
|
16417
|
+
* @SINCE 1.108.0
|
|
16418
|
+
*
|
|
16419
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
16420
|
+
* global configuration is used.
|
|
16421
|
+
*/
|
|
16422
|
+
calendarWeekNumbering?:
|
|
16423
|
+
| (CalendarWeekNumbering | keyof typeof CalendarWeekNumbering)
|
|
16424
|
+
| PropertyBindingInfo
|
|
16425
|
+
| `{${string}}`;
|
|
16426
|
+
|
|
16381
16427
|
/**
|
|
16382
16428
|
* @SINCE 1.38.5
|
|
16383
16429
|
*
|
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 module "sap/ui/unified/library" {
|
|
4
4
|
/**
|
|
@@ -331,6 +331,8 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
331
331
|
|
|
332
332
|
import Event from "sap/ui/base/Event";
|
|
333
333
|
|
|
334
|
+
import CalendarWeekNumbering from "sap/ui/core/date/CalendarWeekNumbering";
|
|
335
|
+
|
|
334
336
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
335
337
|
|
|
336
338
|
import CalendarType from "sap/ui/core/CalendarType";
|
|
@@ -851,6 +853,19 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
851
853
|
* ariaLabelledBy}.
|
|
852
854
|
*/
|
|
853
855
|
getAriaLabelledBy(): ID[];
|
|
856
|
+
/**
|
|
857
|
+
* @SINCE 1.108.0
|
|
858
|
+
*
|
|
859
|
+
* Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
860
|
+
*
|
|
861
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
862
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property.
|
|
863
|
+
*
|
|
864
|
+
* @returns Value of property `calendarWeekNumbering`
|
|
865
|
+
*/
|
|
866
|
+
getCalendarWeekNumbering():
|
|
867
|
+
| CalendarWeekNumbering
|
|
868
|
+
| keyof typeof CalendarWeekNumbering;
|
|
854
869
|
/**
|
|
855
870
|
* @SINCE 1.38.0
|
|
856
871
|
*
|
|
@@ -867,8 +882,9 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
867
882
|
*
|
|
868
883
|
* Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
|
|
869
884
|
*
|
|
870
|
-
* If set, the
|
|
871
|
-
* is set, the default
|
|
885
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
886
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
887
|
+
* with the calendarWeekNumbering property.
|
|
872
888
|
*
|
|
873
889
|
* Default value is `-1`.
|
|
874
890
|
*
|
|
@@ -1242,13 +1258,34 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1242
1258
|
*/
|
|
1243
1259
|
vSpecialDate: int | string | DateTypeRange
|
|
1244
1260
|
): DateTypeRange | null;
|
|
1261
|
+
/**
|
|
1262
|
+
* @SINCE 1.108.0
|
|
1263
|
+
*
|
|
1264
|
+
* Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
1265
|
+
*
|
|
1266
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
1267
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property.
|
|
1268
|
+
*
|
|
1269
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1270
|
+
*
|
|
1271
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1272
|
+
*/
|
|
1273
|
+
setCalendarWeekNumbering(
|
|
1274
|
+
/**
|
|
1275
|
+
* New value for property `calendarWeekNumbering`
|
|
1276
|
+
*/
|
|
1277
|
+
sCalendarWeekNumbering?:
|
|
1278
|
+
| CalendarWeekNumbering
|
|
1279
|
+
| keyof typeof CalendarWeekNumbering
|
|
1280
|
+
): this;
|
|
1245
1281
|
/**
|
|
1246
1282
|
* @SINCE 1.28.9
|
|
1247
1283
|
*
|
|
1248
1284
|
* Sets a new value for property {@link #getFirstDayOfWeek firstDayOfWeek}.
|
|
1249
1285
|
*
|
|
1250
|
-
* If set, the
|
|
1251
|
-
* is set, the default
|
|
1286
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
1287
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
1288
|
+
* with the calendarWeekNumbering property.
|
|
1252
1289
|
*
|
|
1253
1290
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1254
1291
|
*
|
|
@@ -1492,8 +1529,9 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1492
1529
|
/**
|
|
1493
1530
|
* @SINCE 1.28.9
|
|
1494
1531
|
*
|
|
1495
|
-
* If set, the
|
|
1496
|
-
* is set, the default
|
|
1532
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
1533
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
1534
|
+
* with the calendarWeekNumbering property.
|
|
1497
1535
|
*/
|
|
1498
1536
|
firstDayOfWeek?: int | PropertyBindingInfo | `{${string}}`;
|
|
1499
1537
|
|
|
@@ -1584,6 +1622,17 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1584
1622
|
*/
|
|
1585
1623
|
showCurrentDateButton?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1586
1624
|
|
|
1625
|
+
/**
|
|
1626
|
+
* @SINCE 1.108.0
|
|
1627
|
+
*
|
|
1628
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
1629
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property.
|
|
1630
|
+
*/
|
|
1631
|
+
calendarWeekNumbering?:
|
|
1632
|
+
| (CalendarWeekNumbering | keyof typeof CalendarWeekNumbering)
|
|
1633
|
+
| PropertyBindingInfo
|
|
1634
|
+
| `{${string}}`;
|
|
1635
|
+
|
|
1587
1636
|
/**
|
|
1588
1637
|
* Dates or date ranges for selected dates.
|
|
1589
1638
|
*
|
|
@@ -2979,6 +3028,8 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
2979
3028
|
|
|
2980
3029
|
import Event from "sap/ui/base/Event";
|
|
2981
3030
|
|
|
3031
|
+
import CalendarWeekNumbering from "sap/ui/core/date/CalendarWeekNumbering";
|
|
3032
|
+
|
|
2982
3033
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
2983
3034
|
|
|
2984
3035
|
import CalendarType from "sap/ui/core/CalendarType";
|
|
@@ -3419,6 +3470,19 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
3419
3470
|
* ariaLabelledBy}.
|
|
3420
3471
|
*/
|
|
3421
3472
|
getAriaLabelledBy(): ID[];
|
|
3473
|
+
/**
|
|
3474
|
+
* @SINCE 1.108.0
|
|
3475
|
+
*
|
|
3476
|
+
* Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
3477
|
+
*
|
|
3478
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
3479
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property.
|
|
3480
|
+
*
|
|
3481
|
+
* @returns Value of property `calendarWeekNumbering`
|
|
3482
|
+
*/
|
|
3483
|
+
getCalendarWeekNumbering():
|
|
3484
|
+
| CalendarWeekNumbering
|
|
3485
|
+
| keyof typeof CalendarWeekNumbering;
|
|
3422
3486
|
/**
|
|
3423
3487
|
* Gets current value of property {@link #getDate date}.
|
|
3424
3488
|
*
|
|
@@ -3441,8 +3505,9 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
3441
3505
|
*
|
|
3442
3506
|
* Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
|
|
3443
3507
|
*
|
|
3444
|
-
* If set, the
|
|
3445
|
-
* is set, the default
|
|
3508
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
3509
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
3510
|
+
* with the calendarWeekNumbering property.
|
|
3446
3511
|
*
|
|
3447
3512
|
* Default value is `-1`.
|
|
3448
3513
|
*
|
|
@@ -3728,6 +3793,26 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
3728
3793
|
*/
|
|
3729
3794
|
vSpecialDate: int | string | DateTypeRange
|
|
3730
3795
|
): DateTypeRange | null;
|
|
3796
|
+
/**
|
|
3797
|
+
* @SINCE 1.108.0
|
|
3798
|
+
*
|
|
3799
|
+
* Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
|
|
3800
|
+
*
|
|
3801
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
3802
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property.
|
|
3803
|
+
*
|
|
3804
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3805
|
+
*
|
|
3806
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3807
|
+
*/
|
|
3808
|
+
setCalendarWeekNumbering(
|
|
3809
|
+
/**
|
|
3810
|
+
* New value for property `calendarWeekNumbering`
|
|
3811
|
+
*/
|
|
3812
|
+
sCalendarWeekNumbering?:
|
|
3813
|
+
| CalendarWeekNumbering
|
|
3814
|
+
| keyof typeof CalendarWeekNumbering
|
|
3815
|
+
): this;
|
|
3731
3816
|
/**
|
|
3732
3817
|
* Sets a new value for property {@link #getDate date}.
|
|
3733
3818
|
*
|
|
@@ -3749,8 +3834,9 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
3749
3834
|
*
|
|
3750
3835
|
* Sets a new value for property {@link #getFirstDayOfWeek firstDayOfWeek}.
|
|
3751
3836
|
*
|
|
3752
|
-
* If set, the
|
|
3753
|
-
* is set, the default
|
|
3837
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
3838
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
3839
|
+
* with the calendarWeekNumbering property.
|
|
3754
3840
|
*
|
|
3755
3841
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3756
3842
|
*
|
|
@@ -3949,8 +4035,9 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
3949
4035
|
/**
|
|
3950
4036
|
* @SINCE 1.28.9
|
|
3951
4037
|
*
|
|
3952
|
-
* If set, the
|
|
3953
|
-
* is set, the default
|
|
4038
|
+
* If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
|
|
4039
|
+
* valid property is set, the current locale's default is applied. Note: This property should not be used
|
|
4040
|
+
* with the calendarWeekNumbering property.
|
|
3954
4041
|
*/
|
|
3955
4042
|
firstDayOfWeek?: int | PropertyBindingInfo | `{${string}}`;
|
|
3956
4043
|
|
|
@@ -4001,6 +4088,17 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
4001
4088
|
*/
|
|
4002
4089
|
showWeekNumbers?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
4003
4090
|
|
|
4091
|
+
/**
|
|
4092
|
+
* @SINCE 1.108.0
|
|
4093
|
+
*
|
|
4094
|
+
* If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
|
|
4095
|
+
* global configuration is used. Note: This property should not be used with firstDayOfWeek property.
|
|
4096
|
+
*/
|
|
4097
|
+
calendarWeekNumbering?:
|
|
4098
|
+
| (CalendarWeekNumbering | keyof typeof CalendarWeekNumbering)
|
|
4099
|
+
| PropertyBindingInfo
|
|
4100
|
+
| `{${string}}`;
|
|
4101
|
+
|
|
4004
4102
|
/**
|
|
4005
4103
|
* Date Ranges for selected dates of the DatePicker
|
|
4006
4104
|
*/
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED