@openui5/ts-types 1.103.1 → 1.104.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.f.d.ts +157 -1
- package/types/sap.m.d.ts +1870 -57
- 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 +111 -20
- 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 +41 -62
- 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 +3 -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 +81 -1
- 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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.104.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -425,6 +425,17 @@ declare namespace sap {
|
|
|
425
425
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
426
426
|
| `{${string}}`;
|
|
427
427
|
|
|
428
|
+
/**
|
|
429
|
+
* @SINCE 1.104.0
|
|
430
|
+
*
|
|
431
|
+
* If set, the months are also displayed in this calendar type If not set, the months are only displayed
|
|
432
|
+
* in the primary calendar type
|
|
433
|
+
*/
|
|
434
|
+
secondaryCalendarType?:
|
|
435
|
+
| sap.ui.core.CalendarType
|
|
436
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
437
|
+
| `{${string}}`;
|
|
438
|
+
|
|
428
439
|
/**
|
|
429
440
|
* @SINCE 1.74
|
|
430
441
|
*
|
|
@@ -736,6 +747,17 @@ declare namespace sap {
|
|
|
736
747
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
737
748
|
| `{${string}}`;
|
|
738
749
|
|
|
750
|
+
/**
|
|
751
|
+
* @SINCE 1.104.0
|
|
752
|
+
*
|
|
753
|
+
* If set, the years are also displayed in this calendar type If not set, the years are only displayed in
|
|
754
|
+
* the primary calendar type
|
|
755
|
+
*/
|
|
756
|
+
secondaryCalendarType?:
|
|
757
|
+
| sap.ui.core.CalendarType
|
|
758
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
759
|
+
| `{${string}}`;
|
|
760
|
+
|
|
739
761
|
/**
|
|
740
762
|
* @SINCE 1.74
|
|
741
763
|
*
|
|
@@ -3134,6 +3156,17 @@ declare namespace sap {
|
|
|
3134
3156
|
* @returns Value of property `primaryCalendarType`
|
|
3135
3157
|
*/
|
|
3136
3158
|
getPrimaryCalendarType(): sap.ui.core.CalendarType;
|
|
3159
|
+
/**
|
|
3160
|
+
* @SINCE 1.104.0
|
|
3161
|
+
*
|
|
3162
|
+
* Gets current value of property {@link #getSecondaryCalendarType secondaryCalendarType}.
|
|
3163
|
+
*
|
|
3164
|
+
* If set, the months are also displayed in this calendar type If not set, the months are only displayed
|
|
3165
|
+
* in the primary calendar type
|
|
3166
|
+
*
|
|
3167
|
+
* @returns Value of property `secondaryCalendarType`
|
|
3168
|
+
*/
|
|
3169
|
+
getSecondaryCalendarType(): sap.ui.core.CalendarType;
|
|
3137
3170
|
/**
|
|
3138
3171
|
* @SINCE 1.74
|
|
3139
3172
|
*
|
|
@@ -3339,6 +3372,24 @@ declare namespace sap {
|
|
|
3339
3372
|
*/
|
|
3340
3373
|
sPrimaryCalendarType: sap.ui.core.CalendarType
|
|
3341
3374
|
): this;
|
|
3375
|
+
/**
|
|
3376
|
+
* @SINCE 1.104.0
|
|
3377
|
+
*
|
|
3378
|
+
* Sets a new value for property {@link #getSecondaryCalendarType secondaryCalendarType}.
|
|
3379
|
+
*
|
|
3380
|
+
* If set, the months are also displayed in this calendar type If not set, the months are only displayed
|
|
3381
|
+
* in the primary calendar type
|
|
3382
|
+
*
|
|
3383
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3384
|
+
*
|
|
3385
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3386
|
+
*/
|
|
3387
|
+
setSecondaryCalendarType(
|
|
3388
|
+
/**
|
|
3389
|
+
* New value for property `secondaryCalendarType`
|
|
3390
|
+
*/
|
|
3391
|
+
sSecondaryCalendarType: sap.ui.core.CalendarType
|
|
3392
|
+
): this;
|
|
3342
3393
|
}
|
|
3343
3394
|
/**
|
|
3344
3395
|
* @SINCE 1.32.0
|
|
@@ -4899,6 +4950,17 @@ declare namespace sap {
|
|
|
4899
4950
|
* @returns Value of property `primaryCalendarType`
|
|
4900
4951
|
*/
|
|
4901
4952
|
getPrimaryCalendarType(): sap.ui.core.CalendarType;
|
|
4953
|
+
/**
|
|
4954
|
+
* @SINCE 1.104.0
|
|
4955
|
+
*
|
|
4956
|
+
* Gets current value of property {@link #getSecondaryCalendarType secondaryCalendarType}.
|
|
4957
|
+
*
|
|
4958
|
+
* If set, the years are also displayed in this calendar type If not set, the years are only displayed in
|
|
4959
|
+
* the primary calendar type
|
|
4960
|
+
*
|
|
4961
|
+
* @returns Value of property `secondaryCalendarType`
|
|
4962
|
+
*/
|
|
4963
|
+
getSecondaryCalendarType(): sap.ui.core.CalendarType;
|
|
4902
4964
|
/**
|
|
4903
4965
|
* @SINCE 1.74
|
|
4904
4966
|
*
|
|
@@ -5055,6 +5117,24 @@ declare namespace sap {
|
|
|
5055
5117
|
*/
|
|
5056
5118
|
sPrimaryCalendarType: sap.ui.core.CalendarType
|
|
5057
5119
|
): this;
|
|
5120
|
+
/**
|
|
5121
|
+
* @SINCE 1.104.0
|
|
5122
|
+
*
|
|
5123
|
+
* Sets a new value for property {@link #getSecondaryCalendarType secondaryCalendarType}.
|
|
5124
|
+
*
|
|
5125
|
+
* If set, the years are also displayed in this calendar type If not set, the years are only displayed in
|
|
5126
|
+
* the primary calendar type
|
|
5127
|
+
*
|
|
5128
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5129
|
+
*
|
|
5130
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5131
|
+
*/
|
|
5132
|
+
setSecondaryCalendarType(
|
|
5133
|
+
/**
|
|
5134
|
+
* New value for property `secondaryCalendarType`
|
|
5135
|
+
*/
|
|
5136
|
+
sSecondaryCalendarType: sap.ui.core.CalendarType
|
|
5137
|
+
): this;
|
|
5058
5138
|
/**
|
|
5059
5139
|
* @deprecated (since 1.34.0) - replaced by `date` property
|
|
5060
5140
|
*
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED