@openui5/ts-types-esm 1.102.4 → 1.102.7
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 +13 -10
- 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 +10 -4
- 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 +1 -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
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.102.
|
|
1
|
+
// For Library Version: 1.102.7
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -17811,6 +17811,12 @@ declare module "sap/m/DateTimePicker" {
|
|
|
17811
17811
|
* @returns Current accessibility state of the control
|
|
17812
17812
|
*/
|
|
17813
17813
|
getAccessibilityInfo(): object;
|
|
17814
|
+
/**
|
|
17815
|
+
* @SINCE 1.102
|
|
17816
|
+
*
|
|
17817
|
+
* This method should not be used because it could produce unpredictable results. Use `getValue()` instead.
|
|
17818
|
+
*/
|
|
17819
|
+
getDateValue(): object;
|
|
17814
17820
|
/**
|
|
17815
17821
|
* Apply the correct icon to the used Date control
|
|
17816
17822
|
*/
|
|
@@ -17869,9 +17875,8 @@ declare module "sap/m/DateTimePicker" {
|
|
|
17869
17875
|
* Gets current value of property {@link #getTimezone timezone}.
|
|
17870
17876
|
*
|
|
17871
17877
|
* The IANA timezone ID, e.g `"Europe/Berlin"`. Date and time are displayed in this timezone. The `value`
|
|
17872
|
-
* property string is treated as if it is formatted in this timezone.
|
|
17873
|
-
*
|
|
17874
|
-
* it is adjusted when the `timezone` changes.
|
|
17878
|
+
* property string is treated as if it is formatted in this timezone. The `dateValue` property should not
|
|
17879
|
+
* be used as this could lead to an unpredictable results. Use `getValue()` instead.
|
|
17875
17880
|
*
|
|
17876
17881
|
* @returns Value of property `timezone`
|
|
17877
17882
|
*/
|
|
@@ -17958,9 +17963,8 @@ declare module "sap/m/DateTimePicker" {
|
|
|
17958
17963
|
* Sets a new value for property {@link #getTimezone timezone}.
|
|
17959
17964
|
*
|
|
17960
17965
|
* The IANA timezone ID, e.g `"Europe/Berlin"`. Date and time are displayed in this timezone. The `value`
|
|
17961
|
-
* property string is treated as if it is formatted in this timezone.
|
|
17962
|
-
*
|
|
17963
|
-
* it is adjusted when the `timezone` changes.
|
|
17966
|
+
* property string is treated as if it is formatted in this timezone. The `dateValue` property should not
|
|
17967
|
+
* be used as this could lead to an unpredictable results. Use `getValue()` instead.
|
|
17964
17968
|
*
|
|
17965
17969
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
17966
17970
|
*
|
|
@@ -18009,9 +18013,8 @@ declare module "sap/m/DateTimePicker" {
|
|
|
18009
18013
|
* @SINCE 1.99
|
|
18010
18014
|
*
|
|
18011
18015
|
* The IANA timezone ID, e.g `"Europe/Berlin"`. Date and time are displayed in this timezone. The `value`
|
|
18012
|
-
* property string is treated as if it is formatted in this timezone.
|
|
18013
|
-
*
|
|
18014
|
-
* it is adjusted when the `timezone` changes.
|
|
18016
|
+
* property string is treated as if it is formatted in this timezone. The `dateValue` property should not
|
|
18017
|
+
* be used as this could lead to an unpredictable results. Use `getValue()` instead.
|
|
18015
18018
|
*/
|
|
18016
18019
|
timezone?: string | PropertyBindingInfo;
|
|
18017
18020
|
}
|
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
|
|
|
264
264
|
): jQuery;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
// For Library Version: 1.102.
|
|
267
|
+
// For Library Version: 1.102.7
|
|
268
268
|
|
|
269
269
|
declare module "sap/base/assert" {
|
|
270
270
|
/**
|
|
@@ -12610,7 +12610,10 @@ declare module "sap/ui/core/Configuration" {
|
|
|
12610
12610
|
/**
|
|
12611
12611
|
* @SINCE 1.99.0
|
|
12612
12612
|
*
|
|
12613
|
-
*
|
|
12613
|
+
* **Note: Due to compatibility considerations, this function will always return the timezone of the browser/host
|
|
12614
|
+
* system in this release**
|
|
12615
|
+
*
|
|
12616
|
+
* Retrieves the configured IANA timezone ID.
|
|
12614
12617
|
*
|
|
12615
12618
|
* @returns The configured IANA timezone ID, e.g. "America/New_York"
|
|
12616
12619
|
*/
|
|
@@ -12792,6 +12795,9 @@ declare module "sap/ui/core/Configuration" {
|
|
|
12792
12795
|
/**
|
|
12793
12796
|
* @SINCE 1.99.0
|
|
12794
12797
|
*
|
|
12798
|
+
* **Note: Due to compatibility considerations, this function has no effect in this release. The timezone
|
|
12799
|
+
* configuration will always reflect the timezone of the browser/host system.**
|
|
12800
|
+
*
|
|
12795
12801
|
* Sets the timezone such that all date and time based calculations use this timezone.
|
|
12796
12802
|
*
|
|
12797
12803
|
* When the timezone has changed, the Core will fire its {@link sap.ui.core.Core#event:localizationChanged
|
|
@@ -26383,11 +26389,11 @@ declare module "sap/ui/core/mvc/Controller" {
|
|
|
26383
26389
|
/**
|
|
26384
26390
|
* Whether the fragment content should be added to the `dependents` aggregation of the view
|
|
26385
26391
|
*/
|
|
26386
|
-
addToDependents?:
|
|
26392
|
+
addToDependents?: boolean;
|
|
26387
26393
|
/**
|
|
26388
26394
|
* Whether the IDs of the fragment content will be prefixed by the view ID
|
|
26389
26395
|
*/
|
|
26390
|
-
autoPrefixId?:
|
|
26396
|
+
autoPrefixId?: boolean;
|
|
26391
26397
|
/**
|
|
26392
26398
|
* the ID of the Fragment
|
|
26393
26399
|
*/
|
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
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED