@openui5/ts-types 1.114.4 → 1.114.6
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 +1 -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 +18 -7
- 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
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -280,7 +280,7 @@ declare namespace sap {
|
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
282
|
|
|
283
|
-
// For Library Version: 1.114.
|
|
283
|
+
// For Library Version: 1.114.6
|
|
284
284
|
|
|
285
285
|
declare module "sap/base/assert" {
|
|
286
286
|
/**
|
|
@@ -47671,10 +47671,10 @@ declare namespace sap {
|
|
|
47671
47671
|
* is converted to an integer (as `number`). May cause truncation of decimals and overruns. Supported by
|
|
47672
47672
|
* all numeric types. `float`The value is converted to a `number`. Supported
|
|
47673
47673
|
* by all numeric types. `object`The value is converted to a `Date` so that it
|
|
47674
|
-
* can be displayed in a date or time picker. Supported by {@link sap.ui.model.odata.type.Date}
|
|
47675
|
-
* sap.ui.model.odata.type.DateTimeOffset} since 1.69.0.
|
|
47676
|
-
* The value is simply passed through. Only supported by `format`,
|
|
47677
|
-
*
|
|
47674
|
+
* can be displayed in a date or time picker. Supported by {@link sap.ui.model.odata.type.Date}, {@link
|
|
47675
|
+
* sap.ui.model.odata.type.DateTime} and {@link sap.ui.model.odata.type.DateTimeOffset} since 1.69.0.
|
|
47676
|
+
* `any`A technical format. The value is simply passed through. Only supported by `format`,
|
|
47677
|
+
* not by `parse`. Supported by all types.
|
|
47678
47678
|
*
|
|
47679
47679
|
* All constraints relevant for OData V2 may be given as strings besides their natural types (e.g. `nullable
|
|
47680
47680
|
* : "false"` or `maxLength : "10"`). This makes the life of template processors easier, but is not needed
|
|
@@ -60761,6 +60761,17 @@ declare namespace sap {
|
|
|
60761
60761
|
*/
|
|
60762
60762
|
bReturnSuccess?: boolean
|
|
60763
60763
|
): this;
|
|
60764
|
+
/**
|
|
60765
|
+
* @SINCE 1.98.0
|
|
60766
|
+
*
|
|
60767
|
+
* Returns all current contexts of this list binding in no special order. Just like {@link #getCurrentContexts},
|
|
60768
|
+
* this method does not request any data from a back end and does not change the binding's state. In contrast
|
|
60769
|
+
* to {@link #getCurrentContexts}, it does not only return those contexts that were last requested by a
|
|
60770
|
+
* control, but all contexts that are currently available in the binding.
|
|
60771
|
+
*
|
|
60772
|
+
* @returns All current contexts of this list binding, in no special order
|
|
60773
|
+
*/
|
|
60774
|
+
getAllCurrentContexts(): sap.ui.model.odata.v2.Context[];
|
|
60764
60775
|
/**
|
|
60765
60776
|
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
60766
60777
|
*
|
|
@@ -64132,8 +64143,8 @@ declare namespace sap {
|
|
|
64132
64143
|
/**
|
|
64133
64144
|
* Parses the given value to an array of two values representing the start date and the end date of the
|
|
64134
64145
|
* interval, where the time part of the start date is 0 and the time part of end date is the end of day
|
|
64135
|
-
* (23:59:59
|
|
64136
|
-
*
|
|
64146
|
+
* (23:59:59). If the `singleIntervalValue` format option is used, the second entry is `null` if no end
|
|
64147
|
+
* date is given.
|
|
64137
64148
|
*
|
|
64138
64149
|
* @returns The start and the end date of the interval. The resulting values in the array are:
|
|
64139
64150
|
* - Two `Date` or `module:sap/ui/core/date/UI5Date` objects, or
|
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