@openui5/types 1.136.1 → 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 +11 -3
- 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 +66 -12
- 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.136.
|
|
1
|
+
// For Library Version: 1.136.3
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -75480,7 +75480,11 @@ declare module "sap/m/p13n/Engine" {
|
|
|
75480
75480
|
/**
|
|
75481
75481
|
* The handler function to call when the event occurs
|
|
75482
75482
|
*/
|
|
75483
|
-
fnStateEventHandler: (p1: Event) => void
|
|
75483
|
+
fnStateEventHandler: (p1: Event) => void,
|
|
75484
|
+
/**
|
|
75485
|
+
* The context object to call the event handler with (value of `this` in the event handler function).
|
|
75486
|
+
*/
|
|
75487
|
+
oListener?: object
|
|
75484
75488
|
): this;
|
|
75485
75489
|
/**
|
|
75486
75490
|
* Unregisters a registered control. By unregistering a control the control is removed from the `Engine`
|
|
@@ -75503,7 +75507,11 @@ declare module "sap/m/p13n/Engine" {
|
|
|
75503
75507
|
/**
|
|
75504
75508
|
* The handler function to detach from the event
|
|
75505
75509
|
*/
|
|
75506
|
-
fnStateEventHandler: (p1: Event) => void
|
|
75510
|
+
fnStateEventHandler: (p1: Event) => void,
|
|
75511
|
+
/**
|
|
75512
|
+
* The context object to call the event handler with (value of `this` in the event handler function).
|
|
75513
|
+
*/
|
|
75514
|
+
oListener?: object
|
|
75507
75515
|
): this;
|
|
75508
75516
|
|
|
75509
75517
|
register(
|
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
|
|
@@ -29717,7 +29721,8 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
29717
29721
|
*/
|
|
29718
29722
|
groupingBaseSize?: int;
|
|
29719
29723
|
/**
|
|
29720
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
29724
|
+
* defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
|
|
29725
|
+
* the `groupingSize` format option is set to a non-positive value.
|
|
29721
29726
|
*/
|
|
29722
29727
|
groupingEnabled?: boolean;
|
|
29723
29728
|
/**
|
|
@@ -29726,7 +29731,8 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
29726
29731
|
*/
|
|
29727
29732
|
groupingSeparator?: string;
|
|
29728
29733
|
/**
|
|
29729
|
-
* defines the grouping size in digits; the default is `3`.
|
|
29734
|
+
* defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
|
|
29735
|
+
* non-positive value, grouping will be disabled entirely.
|
|
29730
29736
|
*/
|
|
29731
29737
|
groupingSize?: int;
|
|
29732
29738
|
/**
|
|
@@ -29896,7 +29902,8 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
29896
29902
|
*/
|
|
29897
29903
|
groupingBaseSize?: int;
|
|
29898
29904
|
/**
|
|
29899
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
29905
|
+
* defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
|
|
29906
|
+
* the `groupingSize` format option is set to a non-positive value.
|
|
29900
29907
|
*/
|
|
29901
29908
|
groupingEnabled?: boolean;
|
|
29902
29909
|
/**
|
|
@@ -29905,7 +29912,8 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
29905
29912
|
*/
|
|
29906
29913
|
groupingSeparator?: string;
|
|
29907
29914
|
/**
|
|
29908
|
-
* defines the grouping size in digits; the default is `3`.
|
|
29915
|
+
* defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
|
|
29916
|
+
* non-positive value, grouping will be disabled entirely.
|
|
29909
29917
|
*/
|
|
29910
29918
|
groupingSize?: int;
|
|
29911
29919
|
/**
|
|
@@ -30059,7 +30067,8 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
30059
30067
|
*/
|
|
30060
30068
|
groupingBaseSize?: int;
|
|
30061
30069
|
/**
|
|
30062
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
30070
|
+
* defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
|
|
30071
|
+
* the `groupingSize` format option is set to a non-positive value.
|
|
30063
30072
|
*/
|
|
30064
30073
|
groupingEnabled?: boolean;
|
|
30065
30074
|
/**
|
|
@@ -30068,7 +30077,8 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
30068
30077
|
*/
|
|
30069
30078
|
groupingSeparator?: string;
|
|
30070
30079
|
/**
|
|
30071
|
-
* defines the grouping size in digits; the default is `3`.
|
|
30080
|
+
* defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
|
|
30081
|
+
* non-positive value, grouping will be disabled entirely.
|
|
30072
30082
|
*/
|
|
30073
30083
|
groupingSize?: int;
|
|
30074
30084
|
/**
|
|
@@ -30217,7 +30227,8 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
30217
30227
|
*/
|
|
30218
30228
|
groupingBaseSize?: int;
|
|
30219
30229
|
/**
|
|
30220
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
30230
|
+
* defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
|
|
30231
|
+
* the `groupingSize` format option is set to a non-positive value.
|
|
30221
30232
|
*/
|
|
30222
30233
|
groupingEnabled?: boolean;
|
|
30223
30234
|
/**
|
|
@@ -30226,7 +30237,8 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
30226
30237
|
*/
|
|
30227
30238
|
groupingSeparator?: string;
|
|
30228
30239
|
/**
|
|
30229
|
-
* defines the grouping size in digits; the default is `3`.
|
|
30240
|
+
* defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
|
|
30241
|
+
* non-positive value, grouping will be disabled entirely.
|
|
30230
30242
|
*/
|
|
30231
30243
|
groupingSize?: int;
|
|
30232
30244
|
/**
|
|
@@ -30387,7 +30399,8 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
30387
30399
|
*/
|
|
30388
30400
|
groupingBaseSize?: int;
|
|
30389
30401
|
/**
|
|
30390
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
30402
|
+
* defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
|
|
30403
|
+
* the `groupingSize` format option is set to a non-positive value.
|
|
30391
30404
|
*/
|
|
30392
30405
|
groupingEnabled?: boolean;
|
|
30393
30406
|
/**
|
|
@@ -30396,7 +30409,8 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
30396
30409
|
*/
|
|
30397
30410
|
groupingSeparator?: string;
|
|
30398
30411
|
/**
|
|
30399
|
-
* defines the grouping size in digits; the default is `3`.
|
|
30412
|
+
* defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
|
|
30413
|
+
* non-positive value, grouping will be disabled entirely.
|
|
30400
30414
|
*/
|
|
30401
30415
|
groupingSize?: int;
|
|
30402
30416
|
/**
|
|
@@ -59674,6 +59688,8 @@ declare module "sap/ui/model/json/JSONPropertyBinding" {
|
|
|
59674
59688
|
|
|
59675
59689
|
import Context from "sap/ui/model/Context";
|
|
59676
59690
|
|
|
59691
|
+
import Metadata from "sap/ui/base/Metadata";
|
|
59692
|
+
|
|
59677
59693
|
/**
|
|
59678
59694
|
* Property binding implementation for JSON format.
|
|
59679
59695
|
*
|
|
@@ -59707,6 +59723,40 @@ declare module "sap/ui/model/json/JSONPropertyBinding" {
|
|
|
59707
59723
|
*/
|
|
59708
59724
|
mParameters?: object
|
|
59709
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;
|
|
59710
59760
|
}
|
|
59711
59761
|
}
|
|
59712
59762
|
|
|
@@ -69330,6 +69380,10 @@ declare module "sap/ui/model/odata/v2/ODataAnnotations" {
|
|
|
69330
69380
|
* A valid cache key
|
|
69331
69381
|
*/
|
|
69332
69382
|
cacheKey?: string;
|
|
69383
|
+
/**
|
|
69384
|
+
* If set to `true`, the user credentials are included in a cross-origin request
|
|
69385
|
+
*/
|
|
69386
|
+
withCredentials?: boolean;
|
|
69333
69387
|
}
|
|
69334
69388
|
);
|
|
69335
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