@openui5/ts-types 1.136.2 → 1.136.4
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 +47 -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.4
|
|
283
283
|
|
|
284
284
|
declare module "sap/base/assert" {
|
|
285
285
|
/**
|
|
@@ -11460,7 +11460,11 @@ declare namespace sap {
|
|
|
11460
11460
|
/**
|
|
11461
11461
|
* Qualified name of the type to retrieve
|
|
11462
11462
|
*/
|
|
11463
|
-
sTypeName: string
|
|
11463
|
+
sTypeName: string,
|
|
11464
|
+
/**
|
|
11465
|
+
* Metadata of the property
|
|
11466
|
+
*/
|
|
11467
|
+
oProperty?: /* was: sap.ui.base.ManagedObject.MetaOptions.Property */ any
|
|
11464
11468
|
): sap.ui.base.DataType | undefined;
|
|
11465
11469
|
/**
|
|
11466
11470
|
* Registers an enum under the given name. With version 2.0, registering an enum becomes mandatory when
|
|
@@ -54883,6 +54887,43 @@ declare namespace sap {
|
|
|
54883
54887
|
*/
|
|
54884
54888
|
mParameters?: object
|
|
54885
54889
|
);
|
|
54890
|
+
|
|
54891
|
+
/**
|
|
54892
|
+
* Creates a new subclass of class sap.ui.model.json.JSONPropertyBinding with name `sClassName` and enriches
|
|
54893
|
+
* it with the information contained in `oClassInfo`.
|
|
54894
|
+
*
|
|
54895
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.model.ClientPropertyBinding.extend}.
|
|
54896
|
+
*
|
|
54897
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
54898
|
+
*
|
|
54899
|
+
* @returns Created class / constructor function
|
|
54900
|
+
*/
|
|
54901
|
+
static extend<T extends Record<string, unknown>>(
|
|
54902
|
+
/**
|
|
54903
|
+
* Name of the class being created
|
|
54904
|
+
*/
|
|
54905
|
+
sClassName: string,
|
|
54906
|
+
/**
|
|
54907
|
+
* Object literal with information about the class
|
|
54908
|
+
*/
|
|
54909
|
+
oClassInfo?: sap.ClassInfo<
|
|
54910
|
+
T,
|
|
54911
|
+
sap.ui.model.json.JSONPropertyBinding
|
|
54912
|
+
>,
|
|
54913
|
+
/**
|
|
54914
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
54915
|
+
* used by this class
|
|
54916
|
+
*/
|
|
54917
|
+
FNMetaImpl?: Function
|
|
54918
|
+
): Function;
|
|
54919
|
+
/**
|
|
54920
|
+
* Returns a metadata object for class sap.ui.model.json.JSONPropertyBinding.
|
|
54921
|
+
*
|
|
54922
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
54923
|
+
*
|
|
54924
|
+
* @returns Metadata object describing this class
|
|
54925
|
+
*/
|
|
54926
|
+
static getMetadata(): sap.ui.base.Metadata;
|
|
54886
54927
|
}
|
|
54887
54928
|
/**
|
|
54888
54929
|
* Tree binding implementation for JSON format.
|
|
@@ -58652,6 +58693,10 @@ declare namespace sap {
|
|
|
58652
58693
|
* A valid cache key
|
|
58653
58694
|
*/
|
|
58654
58695
|
cacheKey?: string;
|
|
58696
|
+
/**
|
|
58697
|
+
* If set to `true`, the user credentials are included in a cross-origin request
|
|
58698
|
+
*/
|
|
58699
|
+
withCredentials?: boolean;
|
|
58655
58700
|
}
|
|
58656
58701
|
);
|
|
58657
58702
|
/**
|
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