@sapui5/ts-types 1.108.32 → 1.108.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.chart.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +1 -1
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.gantt.d.ts +45 -7
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +3 -3
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.sac.grid.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.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.comp.d.ts +1 -1
- package/types/sap.ui.core.d.ts +16 -11
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.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.richtexteditor.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.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +1 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.fe.common.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
package/types/sap.fe.macros.d.ts
CHANGED
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.gantt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.108.
|
|
1
|
+
// For Library Version: 1.108.12
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -24466,7 +24466,7 @@ declare namespace sap {
|
|
|
24466
24466
|
|
|
24467
24467
|
/**
|
|
24468
24468
|
* Flag to show or hide the start time and end time of a shape when you drag it along the time line. The
|
|
24469
|
-
* property takes effect if only one shape is selected.
|
|
24469
|
+
* property takes effect if only one shape is selected or `enableMultipleGhosts` is set to false.
|
|
24470
24470
|
*/
|
|
24471
24471
|
showShapeTimeOnDrag?:
|
|
24472
24472
|
| boolean
|
|
@@ -24690,7 +24690,8 @@ declare namespace sap {
|
|
|
24690
24690
|
/**
|
|
24691
24691
|
* @SINCE 1.94
|
|
24692
24692
|
*
|
|
24693
|
-
* Option to show or hide shape labels on ghost while dragging.
|
|
24693
|
+
* Option to show or hide shape labels on ghost while dragging. The property takes effect only when `enableMultipleGhosts`
|
|
24694
|
+
* is set to true.
|
|
24694
24695
|
*/
|
|
24695
24696
|
showTextOnGhost?:
|
|
24696
24697
|
| boolean
|
|
@@ -24767,6 +24768,14 @@ declare namespace sap {
|
|
|
24767
24768
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
24768
24769
|
| `{${string}}`;
|
|
24769
24770
|
|
|
24771
|
+
/**
|
|
24772
|
+
* Flag to enable displaying multiple ghosts when multiple shapes are selected and dragged.
|
|
24773
|
+
*/
|
|
24774
|
+
enableMultipleGhosts?:
|
|
24775
|
+
| boolean
|
|
24776
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
24777
|
+
| `{${string}}`;
|
|
24778
|
+
|
|
24770
24779
|
/**
|
|
24771
24780
|
* Table of the Gantt Chart
|
|
24772
24781
|
*
|
|
@@ -37400,6 +37409,16 @@ declare namespace sap {
|
|
|
37400
37409
|
* @returns Value of property `enableLassoInvert`
|
|
37401
37410
|
*/
|
|
37402
37411
|
getEnableLassoInvert(): boolean;
|
|
37412
|
+
/**
|
|
37413
|
+
* Gets current value of property {@link #getEnableMultipleGhosts enableMultipleGhosts}.
|
|
37414
|
+
*
|
|
37415
|
+
* Flag to enable displaying multiple ghosts when multiple shapes are selected and dragged.
|
|
37416
|
+
*
|
|
37417
|
+
* Default value is `true`.
|
|
37418
|
+
*
|
|
37419
|
+
* @returns Value of property `enableMultipleGhosts`
|
|
37420
|
+
*/
|
|
37421
|
+
getEnableMultipleGhosts(): boolean;
|
|
37403
37422
|
/**
|
|
37404
37423
|
* @SINCE 1.86
|
|
37405
37424
|
*
|
|
@@ -37817,7 +37836,7 @@ declare namespace sap {
|
|
|
37817
37836
|
* Gets current value of property {@link #getShowShapeTimeOnDrag showShapeTimeOnDrag}.
|
|
37818
37837
|
*
|
|
37819
37838
|
* Flag to show or hide the start time and end time of a shape when you drag it along the time line. The
|
|
37820
|
-
* property takes effect if only one shape is selected.
|
|
37839
|
+
* property takes effect if only one shape is selected or `enableMultipleGhosts` is set to false.
|
|
37821
37840
|
*
|
|
37822
37841
|
* Default value is `false`.
|
|
37823
37842
|
*
|
|
@@ -37829,7 +37848,8 @@ declare namespace sap {
|
|
|
37829
37848
|
*
|
|
37830
37849
|
* Gets current value of property {@link #getShowTextOnGhost showTextOnGhost}.
|
|
37831
37850
|
*
|
|
37832
|
-
* Option to show or hide shape labels on ghost while dragging.
|
|
37851
|
+
* Option to show or hide shape labels on ghost while dragging. The property takes effect only when `enableMultipleGhosts`
|
|
37852
|
+
* is set to true.
|
|
37833
37853
|
*
|
|
37834
37854
|
* Default value is `true`.
|
|
37835
37855
|
*
|
|
@@ -38678,6 +38698,23 @@ declare namespace sap {
|
|
|
38678
38698
|
*/
|
|
38679
38699
|
bEnableLassoInvert?: boolean
|
|
38680
38700
|
): this;
|
|
38701
|
+
/**
|
|
38702
|
+
* Sets a new value for property {@link #getEnableMultipleGhosts enableMultipleGhosts}.
|
|
38703
|
+
*
|
|
38704
|
+
* Flag to enable displaying multiple ghosts when multiple shapes are selected and dragged.
|
|
38705
|
+
*
|
|
38706
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
38707
|
+
*
|
|
38708
|
+
* Default value is `true`.
|
|
38709
|
+
*
|
|
38710
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
38711
|
+
*/
|
|
38712
|
+
setEnableMultipleGhosts(
|
|
38713
|
+
/**
|
|
38714
|
+
* New value for property `enableMultipleGhosts`
|
|
38715
|
+
*/
|
|
38716
|
+
bEnableMultipleGhosts?: boolean
|
|
38717
|
+
): this;
|
|
38681
38718
|
/**
|
|
38682
38719
|
* @SINCE 1.86
|
|
38683
38720
|
*
|
|
@@ -39214,7 +39251,7 @@ declare namespace sap {
|
|
|
39214
39251
|
* Sets a new value for property {@link #getShowShapeTimeOnDrag showShapeTimeOnDrag}.
|
|
39215
39252
|
*
|
|
39216
39253
|
* Flag to show or hide the start time and end time of a shape when you drag it along the time line. The
|
|
39217
|
-
* property takes effect if only one shape is selected.
|
|
39254
|
+
* property takes effect if only one shape is selected or `enableMultipleGhosts` is set to false.
|
|
39218
39255
|
*
|
|
39219
39256
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
39220
39257
|
*
|
|
@@ -39233,7 +39270,8 @@ declare namespace sap {
|
|
|
39233
39270
|
*
|
|
39234
39271
|
* Sets a new value for property {@link #getShowTextOnGhost showTextOnGhost}.
|
|
39235
39272
|
*
|
|
39236
|
-
* Option to show or hide shape labels on ghost while dragging.
|
|
39273
|
+
* Option to show or hide shape labels on ghost while dragging. The property takes effect only when `enableMultipleGhosts`
|
|
39274
|
+
* is set to true.
|
|
39237
39275
|
*
|
|
39238
39276
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
39239
39277
|
*
|
package/types/sap.insights.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.108.
|
|
1
|
+
// For Library Version: 1.108.33
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -12530,14 +12530,14 @@ declare namespace sap {
|
|
|
12530
12530
|
* Required for receiving a `readyState` is to set the property `sendXHR` to true. This property is not
|
|
12531
12531
|
* supported by Internet Explorer 9.
|
|
12532
12532
|
*/
|
|
12533
|
-
readyState?:
|
|
12533
|
+
readyState?: int;
|
|
12534
12534
|
/**
|
|
12535
12535
|
* Status of the XHR request.
|
|
12536
12536
|
*
|
|
12537
12537
|
* Required for receiving a `status` is to set the property `sendXHR` to true. This property is not supported
|
|
12538
12538
|
* by Internet Explorer 9.
|
|
12539
12539
|
*/
|
|
12540
|
-
status?:
|
|
12540
|
+
status?: int;
|
|
12541
12541
|
/**
|
|
12542
12542
|
* Http-Response which comes from the server.
|
|
12543
12543
|
*
|
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
package/types/sap.sac.df.d.ts
CHANGED
package/types/sap.sac.grid.d.ts
CHANGED
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
|
|
|
264
264
|
): jQuery;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
// For Library Version: 1.108.
|
|
267
|
+
// For Library Version: 1.108.33
|
|
268
268
|
|
|
269
269
|
declare module "sap/base/assert" {
|
|
270
270
|
/**
|
|
@@ -17202,7 +17202,6 @@ declare namespace sap {
|
|
|
17202
17202
|
): this;
|
|
17203
17203
|
/**
|
|
17204
17204
|
* @SINCE 1.30
|
|
17205
|
-
* @deprecated (since 1.66) - Use {@link sap.ui.core.mvc.View.create View.create} instead
|
|
17206
17205
|
*
|
|
17207
17206
|
* Returns a Promise representing the state of the view initialization.
|
|
17208
17207
|
*
|
|
@@ -44902,22 +44901,29 @@ declare namespace sap {
|
|
|
44902
44901
|
oContext?: sap.ui.model.Context
|
|
44903
44902
|
): any | null | undefined;
|
|
44904
44903
|
/**
|
|
44905
|
-
*
|
|
44906
|
-
*
|
|
44907
|
-
*
|
|
44904
|
+
* Loads JSON-encoded data from the server and stores the resulting JSON data in the model. Note: Due to
|
|
44905
|
+
* browser security restrictions, most "Ajax" requests are subject to the same origin policy, the request
|
|
44906
|
+
* can not successfully retrieve data from a different domain, subdomain, or protocol.
|
|
44907
|
+
*
|
|
44908
|
+
* Note: To send a JSON object in the body of a "POST" request to load the model data, `oParameters` has
|
|
44909
|
+
* to be the JSON-stringified value of the object to be sent, and `mHeaders` has to contain a `"Content-Type"`
|
|
44910
|
+
* property with the value `"application/json;charset=utf-8"`.
|
|
44908
44911
|
*
|
|
44909
44912
|
* @returns in case bAsync is set to true a Promise is returned; this promise resolves/rejects based on
|
|
44910
44913
|
* the request status
|
|
44911
44914
|
*/
|
|
44912
44915
|
loadData(
|
|
44913
44916
|
/**
|
|
44914
|
-
* A string containing the URL to which the request is sent
|
|
44917
|
+
* A string containing the URL to which the request is sent
|
|
44915
44918
|
*/
|
|
44916
44919
|
sURL: string,
|
|
44917
44920
|
/**
|
|
44918
|
-
*
|
|
44919
|
-
* to
|
|
44920
|
-
*
|
|
44921
|
+
* The data to be sent to the server with the data-loading request. If `oParameters` is a string, it has
|
|
44922
|
+
* to be encoded based on the used content type. The default encoding is `'application/x-www-form-urlencoded;
|
|
44923
|
+
* charset=UTF-8'` but it may be overwritten via the `"Content-Type"` property given in `mHeaders`. If `oParameters`
|
|
44924
|
+
* is an object, a string is generated and the keys and values are URL-encoded. The resulting string is
|
|
44925
|
+
* appended to the URL if the HTTP request method cannot have a request body, e.g. for a "GET" request.
|
|
44926
|
+
* Otherwise, the resulting string is added to the request body.
|
|
44921
44927
|
*/
|
|
44922
44928
|
oParameters?: object | string,
|
|
44923
44929
|
/**
|
|
@@ -44927,8 +44933,7 @@ declare namespace sap {
|
|
|
44927
44933
|
*/
|
|
44928
44934
|
bAsync?: boolean,
|
|
44929
44935
|
/**
|
|
44930
|
-
* The
|
|
44931
|
-
* as PUT and DELETE, can also be used here, but they are not supported by all browsers.
|
|
44936
|
+
* The HTTP verb to use for the request ("GET" or "POST")
|
|
44932
44937
|
*/
|
|
44933
44938
|
sType?: string,
|
|
44934
44939
|
/**
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.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.ushell.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED
package/types/sap.zen.dsh.d.ts
CHANGED