@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/ts-types-esm",
3
- "version": "1.102.4",
3
+ "version": "1.102.7",
4
4
  "description": "OpenUI5 TypeScript Definitions - ES Modules",
5
5
  "homepage": "https://openui5.org",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.7
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
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. However, the `dateValue` property
17873
- * is a JS Date object, which is the same point in time as the `value`, but in the local timezone. Thus,
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. However, the `dateValue` property
17962
- * is a JS Date object, which is the same point in time as the `value`, but in the local timezone. Thus,
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. However, the `dateValue` property
18013
- * is a JS Date object, which is the same point in time as the `value`, but in the local timezone. Thus,
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
  }
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.7
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.7
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.7
2
2
 
3
3
  declare module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
264
264
  ): jQuery;
265
265
  }
266
266
 
267
- // For Library Version: 1.102.4
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
- * Retrieves the configured IANA timezone ID
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?: object;
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?: object;
26396
+ autoPrefixId?: boolean;
26391
26397
  /**
26392
26398
  * the ID of the Fragment
26393
26399
  */
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.7
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.7
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.7
2
2
 
3
3
  declare module "sap/ui/integration/library" {
4
4
  import { URI } from "sap/ui/core/library";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.7
2
2
 
3
3
  declare module "sap/ui/layout/library" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.7
2
2
 
3
3
  declare module "sap/ui/mdc/filterbar/vh/FilterContainer" {
4
4
  import Metadata from "sap/ui/base/Metadata";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.7
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.7
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.7
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.7
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.7
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.7
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.7
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.7
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.7
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.7
2
2
 
3
3
  declare module "sap/ui/webc/main/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.4
1
+ // For Library Version: 1.102.7
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**