@openui5/ts-types-esm 1.136.2 → 1.136.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 +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 +46 -2
- 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
|
@@ -279,7 +279,7 @@ declare namespace sap {
|
|
|
279
279
|
"sap/ui/thirdparty/qunit-2": undefined;
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
|
-
// For Library Version: 1.136.
|
|
282
|
+
// For Library Version: 1.136.3
|
|
283
283
|
|
|
284
284
|
declare module "sap/base/assert" {
|
|
285
285
|
/**
|
|
@@ -11051,7 +11051,11 @@ declare module "sap/ui/base/DataType" {
|
|
|
11051
11051
|
/**
|
|
11052
11052
|
* Qualified name of the type to retrieve
|
|
11053
11053
|
*/
|
|
11054
|
-
sTypeName: string
|
|
11054
|
+
sTypeName: string,
|
|
11055
|
+
/**
|
|
11056
|
+
* Metadata of the property
|
|
11057
|
+
*/
|
|
11058
|
+
oProperty?: /* was: sap.ui.base.ManagedObject.MetaOptions.Property */ any
|
|
11055
11059
|
): DataType | undefined;
|
|
11056
11060
|
/**
|
|
11057
11061
|
* Registers an enum under the given name. With version 2.0, registering an enum becomes mandatory when
|
|
@@ -59684,6 +59688,8 @@ declare module "sap/ui/model/json/JSONPropertyBinding" {
|
|
|
59684
59688
|
|
|
59685
59689
|
import Context from "sap/ui/model/Context";
|
|
59686
59690
|
|
|
59691
|
+
import Metadata from "sap/ui/base/Metadata";
|
|
59692
|
+
|
|
59687
59693
|
/**
|
|
59688
59694
|
* Property binding implementation for JSON format.
|
|
59689
59695
|
*
|
|
@@ -59717,6 +59723,40 @@ declare module "sap/ui/model/json/JSONPropertyBinding" {
|
|
|
59717
59723
|
*/
|
|
59718
59724
|
mParameters?: object
|
|
59719
59725
|
);
|
|
59726
|
+
|
|
59727
|
+
/**
|
|
59728
|
+
* Creates a new subclass of class sap.ui.model.json.JSONPropertyBinding with name `sClassName` and enriches
|
|
59729
|
+
* it with the information contained in `oClassInfo`.
|
|
59730
|
+
*
|
|
59731
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.model.ClientPropertyBinding.extend}.
|
|
59732
|
+
*
|
|
59733
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
59734
|
+
*
|
|
59735
|
+
* @returns Created class / constructor function
|
|
59736
|
+
*/
|
|
59737
|
+
static extend<T extends Record<string, unknown>>(
|
|
59738
|
+
/**
|
|
59739
|
+
* Name of the class being created
|
|
59740
|
+
*/
|
|
59741
|
+
sClassName: string,
|
|
59742
|
+
/**
|
|
59743
|
+
* Object literal with information about the class
|
|
59744
|
+
*/
|
|
59745
|
+
oClassInfo?: sap.ClassInfo<T, JSONPropertyBinding>,
|
|
59746
|
+
/**
|
|
59747
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
59748
|
+
* used by this class
|
|
59749
|
+
*/
|
|
59750
|
+
FNMetaImpl?: Function
|
|
59751
|
+
): Function;
|
|
59752
|
+
/**
|
|
59753
|
+
* Returns a metadata object for class sap.ui.model.json.JSONPropertyBinding.
|
|
59754
|
+
*
|
|
59755
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
59756
|
+
*
|
|
59757
|
+
* @returns Metadata object describing this class
|
|
59758
|
+
*/
|
|
59759
|
+
static getMetadata(): Metadata;
|
|
59720
59760
|
}
|
|
59721
59761
|
}
|
|
59722
59762
|
|
|
@@ -69340,6 +69380,10 @@ declare module "sap/ui/model/odata/v2/ODataAnnotations" {
|
|
|
69340
69380
|
* A valid cache key
|
|
69341
69381
|
*/
|
|
69342
69382
|
cacheKey?: string;
|
|
69383
|
+
/**
|
|
69384
|
+
* If set to `true`, the user credentials are included in a cross-origin request
|
|
69385
|
+
*/
|
|
69386
|
+
withCredentials?: boolean;
|
|
69343
69387
|
}
|
|
69344
69388
|
);
|
|
69345
69389
|
/**
|
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