@openui5/ts-types 1.120.10 → 1.120.11
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 +3 -7
- 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 +109 -17
- 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.11
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -122466,10 +122466,8 @@ declare namespace sap {
|
|
|
122466
122466
|
* Is called after renderer is finished to show the busy state
|
|
122467
122467
|
*
|
|
122468
122468
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
122469
|
-
*
|
|
122470
|
-
* @returns `this` pointer for chaining
|
|
122471
122469
|
*/
|
|
122472
|
-
onAfterRendering():
|
|
122470
|
+
onAfterRendering(): void;
|
|
122473
122471
|
/**
|
|
122474
122472
|
* Opens the internal dialog with a searchfield and a list.
|
|
122475
122473
|
*
|
|
@@ -137930,10 +137928,8 @@ declare namespace sap {
|
|
|
137930
137928
|
* Shows the busy state and is called after the renderer is finished.
|
|
137931
137929
|
*
|
|
137932
137930
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
137933
|
-
*
|
|
137934
|
-
* @returns this pointer for chaining
|
|
137935
137931
|
*/
|
|
137936
|
-
onAfterRendering():
|
|
137932
|
+
onAfterRendering(): void;
|
|
137937
137933
|
/**
|
|
137938
137934
|
* Opens the internal dialog with a searchfield and a table.
|
|
137939
137935
|
*
|
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.11
|
|
284
284
|
|
|
285
285
|
declare module "sap/base/assert" {
|
|
286
286
|
/**
|
|
@@ -14750,15 +14750,15 @@ declare namespace sap {
|
|
|
14750
14750
|
*/
|
|
14751
14751
|
vertical?: boolean;
|
|
14752
14752
|
/**
|
|
14753
|
-
*
|
|
14753
|
+
* Deprecated since 1.42, the parameter has no effect
|
|
14754
14754
|
*/
|
|
14755
14755
|
zynga?: boolean;
|
|
14756
14756
|
/**
|
|
14757
|
-
*
|
|
14757
|
+
* Deprecated since 1.42, the parameter has no effect
|
|
14758
14758
|
*/
|
|
14759
14759
|
iscroll?: boolean;
|
|
14760
14760
|
/**
|
|
14761
|
-
*
|
|
14761
|
+
* Deprecated since 1.42, the parameter has no effect
|
|
14762
14762
|
*/
|
|
14763
14763
|
preventDefault?: boolean;
|
|
14764
14764
|
/**
|
|
@@ -19803,8 +19803,16 @@ declare namespace sap {
|
|
|
19803
19803
|
* sap.ui.core.Control.prototype.onAfterRendering
|
|
19804
19804
|
*
|
|
19805
19805
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
19806
|
+
*
|
|
19807
|
+
* @returns This lifecycle hook must not have a return value. Return value `void` is deprecated since 1.120,
|
|
19808
|
+
* as it does not force functions to **not** return something. This implies that, for instance, no async
|
|
19809
|
+
* function returning a Promise should be used.
|
|
19810
|
+
*
|
|
19811
|
+
* **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
|
|
19812
|
+
* return anything but undefined. Any other return value will cause an error log in this version of UI5
|
|
19813
|
+
* and will fail in future major versions of UI5.
|
|
19806
19814
|
*/
|
|
19807
|
-
onAfterRendering(): void;
|
|
19815
|
+
onAfterRendering(): void | undefined;
|
|
19808
19816
|
/**
|
|
19809
19817
|
* This method is called every time the View is rendered, before the Renderer is called and the HTML is
|
|
19810
19818
|
* placed in the DOM-Tree. It can be used to perform clean-up-tasks before re-rendering. (Even though this
|
|
@@ -19814,8 +19822,16 @@ declare namespace sap {
|
|
|
19814
19822
|
* sap.ui.core.Control.prototype.onBeforeRendering
|
|
19815
19823
|
*
|
|
19816
19824
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
19825
|
+
*
|
|
19826
|
+
* @returns This lifecycle hook must not have a return value. Return value `void` is deprecated since 1.120,
|
|
19827
|
+
* as it does not force functions to **not** return something. This implies that, for instance, no async
|
|
19828
|
+
* function returning a Promise should be used.
|
|
19829
|
+
*
|
|
19830
|
+
* **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
|
|
19831
|
+
* return anything but undefined. Any other return value will cause an error log in this version of UI5
|
|
19832
|
+
* and will fail in future major versions of UI5.
|
|
19817
19833
|
*/
|
|
19818
|
-
onBeforeRendering(): void;
|
|
19834
|
+
onBeforeRendering(): void | undefined;
|
|
19819
19835
|
/**
|
|
19820
19836
|
* This method is called upon desctuction of the View. The controller should perform its internal destruction
|
|
19821
19837
|
* in this hook. It is only called once per View instance, unlike the onBeforeRendering and onAfterRendering
|
|
@@ -19823,8 +19839,16 @@ declare namespace sap {
|
|
|
19823
19839
|
* if the method does not exist, it will simply not be called.)
|
|
19824
19840
|
*
|
|
19825
19841
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
19842
|
+
*
|
|
19843
|
+
* @returns This lifecycle hook must not have a return value. Return value `void` is deprecated since 1.120,
|
|
19844
|
+
* as it does not force functions to **not** return something. This implies that, for instance, no async
|
|
19845
|
+
* function returning a Promise should be used.
|
|
19846
|
+
*
|
|
19847
|
+
* **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
|
|
19848
|
+
* return anything but undefined. Any other return value will cause an error log in this version of UI5
|
|
19849
|
+
* and will fail in future major versions of UI5.
|
|
19826
19850
|
*/
|
|
19827
|
-
onExit(): void;
|
|
19851
|
+
onExit(): void | undefined;
|
|
19828
19852
|
/**
|
|
19829
19853
|
* This method is called upon initialization of the View. The controller can perform its internal setup
|
|
19830
19854
|
* in this hook. It is only called once per View instance, unlike the onBeforeRendering and onAfterRendering
|
|
@@ -19838,8 +19862,16 @@ declare namespace sap {
|
|
|
19838
19862
|
* event. The event is fired when either the context or the model changes for the control.
|
|
19839
19863
|
*
|
|
19840
19864
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
19865
|
+
*
|
|
19866
|
+
* @returns This lifecycle hook must not have a return value. Return value `void` is deprecated since 1.120,
|
|
19867
|
+
* as it does not force functions to **not** return something. This implies that, for instance, no async
|
|
19868
|
+
* function returning a Promise should be used.
|
|
19869
|
+
*
|
|
19870
|
+
* **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
|
|
19871
|
+
* return anything but undefined. Any other return value will cause an error log in this version of UI5
|
|
19872
|
+
* and will fail in future major versions of UI5.
|
|
19841
19873
|
*/
|
|
19842
|
-
onInit(): void;
|
|
19874
|
+
onInit(): void | undefined;
|
|
19843
19875
|
}
|
|
19844
19876
|
/**
|
|
19845
19877
|
* Base class for controller extensions.
|
|
@@ -36258,8 +36290,16 @@ declare namespace sap {
|
|
|
36258
36290
|
* Subclasses of Component should override this hook to implement any necessary cleanup.
|
|
36259
36291
|
*
|
|
36260
36292
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
36293
|
+
*
|
|
36294
|
+
* @returns This hook method must not have a return value. Return value `void` is deprecated since 1.120,
|
|
36295
|
+
* as it does not force functions to **not** return something. This implies that, for instance, no async
|
|
36296
|
+
* function returning a Promise should be used.
|
|
36297
|
+
*
|
|
36298
|
+
* **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
|
|
36299
|
+
* return anything but undefined. Any other return value will cause an error log in this version of UI5
|
|
36300
|
+
* and will fail in future major versions of UI5.
|
|
36261
36301
|
*/
|
|
36262
|
-
exit(): void;
|
|
36302
|
+
exit(): void | undefined;
|
|
36263
36303
|
/**
|
|
36264
36304
|
* Returns the list of active terminologies. See the {@link sap.ui.core.Component.create Component.create }
|
|
36265
36305
|
* factory API documentation for more detail.
|
|
@@ -36418,15 +36458,29 @@ declare namespace sap {
|
|
|
36418
36458
|
* Subclasses of Component should override this hook to implement any necessary initialization.
|
|
36419
36459
|
*
|
|
36420
36460
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
36461
|
+
*
|
|
36462
|
+
* @returns This hook method must not have a return value. Return value `void` is deprecated since 1.120,
|
|
36463
|
+
* as it does not force functions to **not** return something. This implies that, for instance, no async
|
|
36464
|
+
* function returning a Promise should be used.
|
|
36465
|
+
*
|
|
36466
|
+
* **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
|
|
36467
|
+
* return anything but undefined. Any other return value will cause an error log in this version of UI5
|
|
36468
|
+
* and will fail in future major versions of UI5.
|
|
36421
36469
|
*/
|
|
36422
|
-
init(): void;
|
|
36470
|
+
init(): void | undefined;
|
|
36423
36471
|
/**
|
|
36424
36472
|
* This method is called after the component is activated
|
|
36425
36473
|
*
|
|
36426
36474
|
* @since 1.88
|
|
36427
36475
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
36476
|
+
*
|
|
36477
|
+
* @returns This lifecycle hook must not have a return value.
|
|
36478
|
+
*
|
|
36479
|
+
* **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
|
|
36480
|
+
* return anything but undefined. Any other return value will cause an error log in this version of UI5
|
|
36481
|
+
* and will fail in future major versions of UI5.
|
|
36428
36482
|
*/
|
|
36429
|
-
onActivate(): void;
|
|
36483
|
+
onActivate(): void | undefined;
|
|
36430
36484
|
/**
|
|
36431
36485
|
* The hook which gets called when the static configuration of the component has been changed by some configuration
|
|
36432
36486
|
* extension.
|
|
@@ -36444,8 +36498,14 @@ declare namespace sap {
|
|
|
36444
36498
|
*
|
|
36445
36499
|
* @since 1.88
|
|
36446
36500
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
36501
|
+
*
|
|
36502
|
+
* @returns This lifecycle hook must not have a return value.
|
|
36503
|
+
*
|
|
36504
|
+
* **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
|
|
36505
|
+
* return anything but undefined. Any other return value will cause an error log in this version of UI5
|
|
36506
|
+
* and will fail in future major versions of UI5.
|
|
36447
36507
|
*/
|
|
36448
|
-
onDeactivate(): void;
|
|
36508
|
+
onDeactivate(): void | undefined;
|
|
36449
36509
|
/**
|
|
36450
36510
|
* The window before unload hook. Override this method in your Component class implementation, to handle
|
|
36451
36511
|
* cleanup before the real unload or to prompt a question to the user, if the component should be exited.
|
|
@@ -37987,13 +38047,21 @@ declare namespace sap {
|
|
|
37987
38047
|
* Subclasses of Control should override this hook to implement any necessary actions after the rendering.
|
|
37988
38048
|
*
|
|
37989
38049
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
38050
|
+
*
|
|
38051
|
+
* @returns This hook method must not have a return value. Return value `void` is deprecated since 1.120,
|
|
38052
|
+
* as it does not force functions to **not** return something. This implies that, for instance, no async
|
|
38053
|
+
* function returning a Promise should be used.
|
|
38054
|
+
*
|
|
38055
|
+
* **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
|
|
38056
|
+
* return anything but undefined. Any other return value will cause an error log in this version of UI5
|
|
38057
|
+
* and will fail in future major versions of UI5.
|
|
37990
38058
|
*/
|
|
37991
38059
|
onAfterRendering(
|
|
37992
38060
|
/**
|
|
37993
38061
|
* onAfterRendering event object
|
|
37994
38062
|
*/
|
|
37995
38063
|
oEvent: jQuery.Event
|
|
37996
|
-
): void;
|
|
38064
|
+
): void | undefined;
|
|
37997
38065
|
/**
|
|
37998
38066
|
* Function is called before the rendering of the control is started.
|
|
37999
38067
|
*
|
|
@@ -38002,13 +38070,21 @@ declare namespace sap {
|
|
|
38002
38070
|
* Subclasses of Control should override this hook to implement any necessary actions before the rendering.
|
|
38003
38071
|
*
|
|
38004
38072
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
38073
|
+
*
|
|
38074
|
+
* @returns This hook method must not have a return value. Return value `void` is deprecated since 1.120,
|
|
38075
|
+
* as it does not force functions to **not** return something. This implies that, for instance, no async
|
|
38076
|
+
* function returning a Promise should be used.
|
|
38077
|
+
*
|
|
38078
|
+
* **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
|
|
38079
|
+
* return anything but undefined. Any other return value will cause an error log in this version of UI5
|
|
38080
|
+
* and will fail in future major versions of UI5.
|
|
38005
38081
|
*/
|
|
38006
38082
|
onBeforeRendering(
|
|
38007
38083
|
/**
|
|
38008
38084
|
* onBeforeRendering event object
|
|
38009
38085
|
*/
|
|
38010
38086
|
oEvent: jQuery.Event
|
|
38011
|
-
): void;
|
|
38087
|
+
): void | undefined;
|
|
38012
38088
|
/**
|
|
38013
38089
|
* Puts `this` control into the specified container (`oRef`) at the given position (`oPosition`).
|
|
38014
38090
|
*
|
|
@@ -39043,8 +39119,16 @@ declare namespace sap {
|
|
|
39043
39119
|
* in the documentation.
|
|
39044
39120
|
*
|
|
39045
39121
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
39122
|
+
*
|
|
39123
|
+
* @returns This hook method must not have a return value. Return value `void` is deprecated since 1.120,
|
|
39124
|
+
* as it does not force functions to **not** return something. This implies that, for instance, no async
|
|
39125
|
+
* function returning a Promise should be used.
|
|
39126
|
+
*
|
|
39127
|
+
* **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
|
|
39128
|
+
* return anything but undefined. Any other return value will cause an error log in this version of UI5
|
|
39129
|
+
* and will fail in future major versions of UI5.
|
|
39046
39130
|
*/
|
|
39047
|
-
exit(): void;
|
|
39131
|
+
exit(): void | undefined;
|
|
39048
39132
|
/**
|
|
39049
39133
|
* Searches and returns an array of child elements and controls which are referenced within an aggregation
|
|
39050
39134
|
* or aggregations of child elements/controls. This can be either done recursive or not.
|
|
@@ -39272,8 +39356,16 @@ declare namespace sap {
|
|
|
39272
39356
|
* Subclasses of Element should override this hook to implement any necessary initialization.
|
|
39273
39357
|
*
|
|
39274
39358
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
39359
|
+
*
|
|
39360
|
+
* @returns This hook method must not have a return value. Return value `void` is deprecated since 1.120,
|
|
39361
|
+
* as it does not force functions to **not** return something. This implies that, for instance, no async
|
|
39362
|
+
* function returning a Promise should be used.
|
|
39363
|
+
*
|
|
39364
|
+
* **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
|
|
39365
|
+
* return anything but undefined. Any other return value will cause an error log in this version of UI5
|
|
39366
|
+
* and will fail in future major versions of UI5.
|
|
39275
39367
|
*/
|
|
39276
|
-
init(): void;
|
|
39368
|
+
init(): void | undefined;
|
|
39277
39369
|
/**
|
|
39278
39370
|
* Inserts a customData into the aggregation {@link #getCustomData customData}.
|
|
39279
39371
|
*
|
|
@@ -63822,7 +63914,7 @@ declare namespace sap {
|
|
|
63822
63914
|
* must refer to a function in `mParameters.scope` in case of a relative name starting with a dot, which
|
|
63823
63915
|
* is stripped before lookup; see the `<template:alias>` instruction for XML Templating. In case of an
|
|
63824
63916
|
* absolute name, it is searched in `mParameters.scope` first and then in the global namespace. (Using the
|
|
63825
|
-
* global namespace is
|
|
63917
|
+
* global namespace is deprecated as of version 1.120.3). The names "requestCurrencyCodes" and "requestUnitsOfMeasure"
|
|
63826
63918
|
* default to {@link #requestCurrencyCodes} and {@link #requestUnitsOfMeasure} resp. if not present in `mParameters.scope`.
|
|
63827
63919
|
* This function is called with the current object (or primitive value) and additional details and returns
|
|
63828
63920
|
* the result of this {@link #requestObject} call. The additional details are given as an object with the
|
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