@openui5/ts-types 1.120.32 → 1.120.34
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 +63 -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.120.
|
|
1
|
+
// For Library Version: 1.120.34
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -721,7 +721,11 @@ declare namespace sap {
|
|
|
721
721
|
/**
|
|
722
722
|
* The handler function to call when the event occurs
|
|
723
723
|
*/
|
|
724
|
-
fnStateEventHandler: (p1: sap.ui.base.Event) => void
|
|
724
|
+
fnStateEventHandler: (p1: sap.ui.base.Event) => void,
|
|
725
|
+
/**
|
|
726
|
+
* The context object to call the event handler with (value of `this` in the event handler function).
|
|
727
|
+
*/
|
|
728
|
+
oListener?: object
|
|
725
729
|
): this;
|
|
726
730
|
/**
|
|
727
731
|
* Unregisters a registered control. By unregistering a control the control is removed from the `Engine`
|
|
@@ -744,7 +748,11 @@ declare namespace sap {
|
|
|
744
748
|
/**
|
|
745
749
|
* The handler function to detach from the event
|
|
746
750
|
*/
|
|
747
|
-
fnStateEventHandler: (p1: sap.ui.base.Event) => void
|
|
751
|
+
fnStateEventHandler: (p1: sap.ui.base.Event) => void,
|
|
752
|
+
/**
|
|
753
|
+
* The context object to call the event handler with (value of `this` in the event handler function).
|
|
754
|
+
*/
|
|
755
|
+
oListener?: object
|
|
748
756
|
): this;
|
|
749
757
|
|
|
750
758
|
register(
|
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.120.
|
|
283
|
+
// For Library Version: 1.120.34
|
|
284
284
|
|
|
285
285
|
declare module "sap/base/assert" {
|
|
286
286
|
/**
|
|
@@ -10524,7 +10524,11 @@ declare namespace sap {
|
|
|
10524
10524
|
/**
|
|
10525
10525
|
* Qualified name of the type to retrieve
|
|
10526
10526
|
*/
|
|
10527
|
-
sTypeName: string
|
|
10527
|
+
sTypeName: string,
|
|
10528
|
+
/**
|
|
10529
|
+
* Metadata of the property
|
|
10530
|
+
*/
|
|
10531
|
+
oProperty?: /* was: sap.ui.base.ManagedObject.MetaOptions.Property */ any
|
|
10528
10532
|
): sap.ui.base.DataType | undefined;
|
|
10529
10533
|
/**
|
|
10530
10534
|
* Registers an enum under the given name. With version 2.0, registering an enum becomes mandatory when
|
|
@@ -17768,7 +17772,8 @@ declare namespace sap {
|
|
|
17768
17772
|
*/
|
|
17769
17773
|
groupingBaseSize?: int;
|
|
17770
17774
|
/**
|
|
17771
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
17775
|
+
* defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
|
|
17776
|
+
* the `groupingSize` format option is set to a non-positive value.
|
|
17772
17777
|
*/
|
|
17773
17778
|
groupingEnabled?: boolean;
|
|
17774
17779
|
/**
|
|
@@ -17777,7 +17782,8 @@ declare namespace sap {
|
|
|
17777
17782
|
*/
|
|
17778
17783
|
groupingSeparator?: string;
|
|
17779
17784
|
/**
|
|
17780
|
-
* defines the grouping size in digits; the default is `3`.
|
|
17785
|
+
* defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
|
|
17786
|
+
* non-positive value, grouping will be disabled entirely.
|
|
17781
17787
|
*/
|
|
17782
17788
|
groupingSize?: int;
|
|
17783
17789
|
/**
|
|
@@ -17939,7 +17945,8 @@ declare namespace sap {
|
|
|
17939
17945
|
*/
|
|
17940
17946
|
groupingBaseSize?: int;
|
|
17941
17947
|
/**
|
|
17942
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
17948
|
+
* defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
|
|
17949
|
+
* the `groupingSize` format option is set to a non-positive value.
|
|
17943
17950
|
*/
|
|
17944
17951
|
groupingEnabled?: boolean;
|
|
17945
17952
|
/**
|
|
@@ -17948,7 +17955,8 @@ declare namespace sap {
|
|
|
17948
17955
|
*/
|
|
17949
17956
|
groupingSeparator?: string;
|
|
17950
17957
|
/**
|
|
17951
|
-
* defines the grouping size in digits; the default is `3`.
|
|
17958
|
+
* defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
|
|
17959
|
+
* non-positive value, grouping will be disabled entirely.
|
|
17952
17960
|
*/
|
|
17953
17961
|
groupingSize?: int;
|
|
17954
17962
|
/**
|
|
@@ -18096,7 +18104,8 @@ declare namespace sap {
|
|
|
18096
18104
|
*/
|
|
18097
18105
|
groupingBaseSize?: int;
|
|
18098
18106
|
/**
|
|
18099
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
18107
|
+
* defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
|
|
18108
|
+
* the `groupingSize` format option is set to a non-positive value.
|
|
18100
18109
|
*/
|
|
18101
18110
|
groupingEnabled?: boolean;
|
|
18102
18111
|
/**
|
|
@@ -18105,7 +18114,8 @@ declare namespace sap {
|
|
|
18105
18114
|
*/
|
|
18106
18115
|
groupingSeparator?: string;
|
|
18107
18116
|
/**
|
|
18108
|
-
* defines the grouping size in digits; the default is `3`.
|
|
18117
|
+
* defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
|
|
18118
|
+
* non-positive value, grouping will be disabled entirely.
|
|
18109
18119
|
*/
|
|
18110
18120
|
groupingSize?: int;
|
|
18111
18121
|
/**
|
|
@@ -18247,7 +18257,8 @@ declare namespace sap {
|
|
|
18247
18257
|
*/
|
|
18248
18258
|
groupingBaseSize?: int;
|
|
18249
18259
|
/**
|
|
18250
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
18260
|
+
* defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
|
|
18261
|
+
* the `groupingSize` format option is set to a non-positive value.
|
|
18251
18262
|
*/
|
|
18252
18263
|
groupingEnabled?: boolean;
|
|
18253
18264
|
/**
|
|
@@ -18256,7 +18267,8 @@ declare namespace sap {
|
|
|
18256
18267
|
*/
|
|
18257
18268
|
groupingSeparator?: string;
|
|
18258
18269
|
/**
|
|
18259
|
-
* defines the grouping size in digits; the default is `3`.
|
|
18270
|
+
* defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
|
|
18271
|
+
* non-positive value, grouping will be disabled entirely.
|
|
18260
18272
|
*/
|
|
18261
18273
|
groupingSize?: int;
|
|
18262
18274
|
/**
|
|
@@ -18405,7 +18417,8 @@ declare namespace sap {
|
|
|
18405
18417
|
*/
|
|
18406
18418
|
groupingBaseSize?: int;
|
|
18407
18419
|
/**
|
|
18408
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
18420
|
+
* defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
|
|
18421
|
+
* the `groupingSize` format option is set to a non-positive value.
|
|
18409
18422
|
*/
|
|
18410
18423
|
groupingEnabled?: boolean;
|
|
18411
18424
|
/**
|
|
@@ -18414,7 +18427,8 @@ declare namespace sap {
|
|
|
18414
18427
|
*/
|
|
18415
18428
|
groupingSeparator?: string;
|
|
18416
18429
|
/**
|
|
18417
|
-
* defines the grouping size in digits; the default is `3`. It must be a positive number.
|
|
18430
|
+
* defines the grouping size in digits; the default is `3`. It must be a positive number. **Note:** If this
|
|
18431
|
+
* format option is set to a non-positive value, grouping will be disabled entirely.
|
|
18418
18432
|
*/
|
|
18419
18433
|
groupingSize?: int;
|
|
18420
18434
|
/**
|
|
@@ -53217,6 +53231,43 @@ declare namespace sap {
|
|
|
53217
53231
|
*/
|
|
53218
53232
|
mParameters?: object
|
|
53219
53233
|
);
|
|
53234
|
+
|
|
53235
|
+
/**
|
|
53236
|
+
* Creates a new subclass of class sap.ui.model.json.JSONPropertyBinding with name `sClassName` and enriches
|
|
53237
|
+
* it with the information contained in `oClassInfo`.
|
|
53238
|
+
*
|
|
53239
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.model.ClientPropertyBinding.extend}.
|
|
53240
|
+
*
|
|
53241
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
53242
|
+
*
|
|
53243
|
+
* @returns Created class / constructor function
|
|
53244
|
+
*/
|
|
53245
|
+
static extend<T extends Record<string, unknown>>(
|
|
53246
|
+
/**
|
|
53247
|
+
* Name of the class being created
|
|
53248
|
+
*/
|
|
53249
|
+
sClassName: string,
|
|
53250
|
+
/**
|
|
53251
|
+
* Object literal with information about the class
|
|
53252
|
+
*/
|
|
53253
|
+
oClassInfo?: sap.ClassInfo<
|
|
53254
|
+
T,
|
|
53255
|
+
sap.ui.model.json.JSONPropertyBinding
|
|
53256
|
+
>,
|
|
53257
|
+
/**
|
|
53258
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
53259
|
+
* used by this class
|
|
53260
|
+
*/
|
|
53261
|
+
FNMetaImpl?: Function
|
|
53262
|
+
): Function;
|
|
53263
|
+
/**
|
|
53264
|
+
* Returns a metadata object for class sap.ui.model.json.JSONPropertyBinding.
|
|
53265
|
+
*
|
|
53266
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
53267
|
+
*
|
|
53268
|
+
* @returns Metadata object describing this class
|
|
53269
|
+
*/
|
|
53270
|
+
static getMetadata(): sap.ui.base.Metadata;
|
|
53220
53271
|
}
|
|
53221
53272
|
/**
|
|
53222
53273
|
* Tree binding implementation for JSON format.
|
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