@sapui5/types 1.120.17 → 1.120.19
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.f.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.placeholder.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.fe.tools.d.ts +1 -1
- package/types/sap.gantt.d.ts +44 -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 +14 -1
- package/types/sap.sac.df.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 +55 -5
- 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 +62 -1
- package/types/sap.ushell.d.ts +7 -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.core.d.ts
CHANGED
package/types/sap.fe.macros.d.ts
CHANGED
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.fe.tools.d.ts
CHANGED
package/types/sap.gantt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.9
|
|
2
2
|
|
|
3
3
|
declare module "sap/gantt/library" {
|
|
4
4
|
import ChartScheme from "sap/gantt/config/ChartScheme";
|
|
@@ -43892,6 +43892,17 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
43892
43892
|
* @returns Value of property `enableLassoInvert`
|
|
43893
43893
|
*/
|
|
43894
43894
|
getEnableLassoInvert(): boolean;
|
|
43895
|
+
/**
|
|
43896
|
+
* Gets current value of property {@link #getEnableMultipleGhosts enableMultipleGhosts}.
|
|
43897
|
+
*
|
|
43898
|
+
* Flag to enable displaying multiple ghosts when multiple shapes are selected and dragged.
|
|
43899
|
+
*
|
|
43900
|
+
* Default value is `true`.
|
|
43901
|
+
*
|
|
43902
|
+
*
|
|
43903
|
+
* @returns Value of property `enableMultipleGhosts`
|
|
43904
|
+
*/
|
|
43905
|
+
getEnableMultipleGhosts(): boolean;
|
|
43895
43906
|
/**
|
|
43896
43907
|
* Gets current value of property {@link #getEnableNonWorkingTime enableNonWorkingTime}.
|
|
43897
43908
|
*
|
|
@@ -44390,7 +44401,7 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44390
44401
|
* Gets current value of property {@link #getShowShapeTimeOnDrag showShapeTimeOnDrag}.
|
|
44391
44402
|
*
|
|
44392
44403
|
* Flag to show or hide the start time and end time of a shape when you drag it along the time line. The
|
|
44393
|
-
* property takes effect if only one shape is selected.
|
|
44404
|
+
* property takes effect if only one shape is selected or `enableMultipleGhosts` is set to false.
|
|
44394
44405
|
*
|
|
44395
44406
|
* Default value is `false`.
|
|
44396
44407
|
*
|
|
@@ -44401,7 +44412,8 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
44401
44412
|
/**
|
|
44402
44413
|
* Gets current value of property {@link #getShowTextOnGhost showTextOnGhost}.
|
|
44403
44414
|
*
|
|
44404
|
-
* Option to show or hide shape labels on ghost while dragging.
|
|
44415
|
+
* Option to show or hide shape labels on ghost while dragging. The property takes effect only when `enableMultipleGhosts`
|
|
44416
|
+
* is set to true.
|
|
44405
44417
|
*
|
|
44406
44418
|
* Default value is `true`.
|
|
44407
44419
|
*
|
|
@@ -45267,6 +45279,24 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
45267
45279
|
*/
|
|
45268
45280
|
bEnableLassoInvert?: boolean
|
|
45269
45281
|
): this;
|
|
45282
|
+
/**
|
|
45283
|
+
* Sets a new value for property {@link #getEnableMultipleGhosts enableMultipleGhosts}.
|
|
45284
|
+
*
|
|
45285
|
+
* Flag to enable displaying multiple ghosts when multiple shapes are selected and dragged.
|
|
45286
|
+
*
|
|
45287
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
45288
|
+
*
|
|
45289
|
+
* Default value is `true`.
|
|
45290
|
+
*
|
|
45291
|
+
*
|
|
45292
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
45293
|
+
*/
|
|
45294
|
+
setEnableMultipleGhosts(
|
|
45295
|
+
/**
|
|
45296
|
+
* New value for property `enableMultipleGhosts`
|
|
45297
|
+
*/
|
|
45298
|
+
bEnableMultipleGhosts?: boolean
|
|
45299
|
+
): this;
|
|
45270
45300
|
/**
|
|
45271
45301
|
* Sets a new value for property {@link #getEnableNonWorkingTime enableNonWorkingTime}.
|
|
45272
45302
|
*
|
|
@@ -45887,7 +45917,7 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
45887
45917
|
* Sets a new value for property {@link #getShowShapeTimeOnDrag showShapeTimeOnDrag}.
|
|
45888
45918
|
*
|
|
45889
45919
|
* Flag to show or hide the start time and end time of a shape when you drag it along the time line. The
|
|
45890
|
-
* property takes effect if only one shape is selected.
|
|
45920
|
+
* property takes effect if only one shape is selected or `enableMultipleGhosts` is set to false.
|
|
45891
45921
|
*
|
|
45892
45922
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
45893
45923
|
*
|
|
@@ -45905,7 +45935,8 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
45905
45935
|
/**
|
|
45906
45936
|
* Sets a new value for property {@link #getShowTextOnGhost showTextOnGhost}.
|
|
45907
45937
|
*
|
|
45908
|
-
* Option to show or hide shape labels on ghost while dragging.
|
|
45938
|
+
* Option to show or hide shape labels on ghost while dragging. The property takes effect only when `enableMultipleGhosts`
|
|
45939
|
+
* is set to true.
|
|
45909
45940
|
*
|
|
45910
45941
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
45911
45942
|
*
|
|
@@ -46307,7 +46338,7 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
46307
46338
|
|
|
46308
46339
|
/**
|
|
46309
46340
|
* Flag to show or hide the start time and end time of a shape when you drag it along the time line. The
|
|
46310
|
-
* property takes effect if only one shape is selected.
|
|
46341
|
+
* property takes effect if only one shape is selected or `enableMultipleGhosts` is set to false.
|
|
46311
46342
|
*/
|
|
46312
46343
|
showShapeTimeOnDrag?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
46313
46344
|
|
|
@@ -46479,7 +46510,8 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
46479
46510
|
selectOnlyGraphicalShape?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
46480
46511
|
|
|
46481
46512
|
/**
|
|
46482
|
-
* Option to show or hide shape labels on ghost while dragging.
|
|
46513
|
+
* Option to show or hide shape labels on ghost while dragging. The property takes effect only when `enableMultipleGhosts`
|
|
46514
|
+
* is set to true.
|
|
46483
46515
|
*
|
|
46484
46516
|
* @since 1.94
|
|
46485
46517
|
*/
|
|
@@ -46606,6 +46638,11 @@ declare module "sap/gantt/simple/GanttChartWithTable" {
|
|
|
46606
46638
|
*/
|
|
46607
46639
|
shapeRenderOrder?: string[] | PropertyBindingInfo | `{${string}}`;
|
|
46608
46640
|
|
|
46641
|
+
/**
|
|
46642
|
+
* Flag to enable displaying multiple ghosts when multiple shapes are selected and dragged.
|
|
46643
|
+
*/
|
|
46644
|
+
enableMultipleGhosts?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
46645
|
+
|
|
46609
46646
|
/**
|
|
46610
46647
|
* Table of the Gantt Chart
|
|
46611
46648
|
*
|
package/types/sap.insights.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.19
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -150588,7 +150588,7 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
150588
150588
|
* Required for receiving a `readyState` is to set the property `sendXHR` to true. This property is not
|
|
150589
150589
|
* supported by Internet Explorer 9.
|
|
150590
150590
|
*/
|
|
150591
|
-
readyState?:
|
|
150591
|
+
readyState?: int;
|
|
150592
150592
|
|
|
150593
150593
|
/**
|
|
150594
150594
|
* Status of the XHR request.
|
|
@@ -150596,7 +150596,7 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
150596
150596
|
* Required for receiving a `status` is to set the property `sendXHR` to true. This property is not supported
|
|
150597
150597
|
* by Internet Explorer 9.
|
|
150598
150598
|
*/
|
|
150599
|
-
status?:
|
|
150599
|
+
status?: int;
|
|
150600
150600
|
|
|
150601
150601
|
/**
|
|
150602
150602
|
* Http-Response which comes from the server.
|
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.19
|
|
2
2
|
|
|
3
3
|
declare module "sap/ndc/library" {}
|
|
4
4
|
|
|
@@ -238,6 +238,19 @@ declare module "sap/ndc/BarcodeScanner" {
|
|
|
238
238
|
*/
|
|
239
239
|
options?: object
|
|
240
240
|
): void;
|
|
241
|
+
/**
|
|
242
|
+
* Set the sId of the element to be focused, which will then be used to retrieve the instance of the focused
|
|
243
|
+
* SAP UI5 element.
|
|
244
|
+
*
|
|
245
|
+
*
|
|
246
|
+
* @returns Return True if set success.
|
|
247
|
+
*/
|
|
248
|
+
setFocusedInstanceId(
|
|
249
|
+
/**
|
|
250
|
+
* Defines the sId for the focused element.
|
|
251
|
+
*/
|
|
252
|
+
sId?: string
|
|
253
|
+
): boolean;
|
|
241
254
|
/**
|
|
242
255
|
* Set the callback function for the physical scan button.
|
|
243
256
|
*/
|
package/types/sap.sac.df.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
|
@@ -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.19
|
|
284
284
|
|
|
285
285
|
declare module "sap/base/assert" {
|
|
286
286
|
/**
|
|
@@ -32689,14 +32689,64 @@ declare module "sap/ui/core/mvc/ControllerExtension" {
|
|
|
32689
32689
|
* **Note:** This static method is automatically propagated to subclasses of `ControllerExtension`.
|
|
32690
32690
|
*
|
|
32691
32691
|
*
|
|
32692
|
-
* @returns
|
|
32692
|
+
* @returns The adapted controller extension class
|
|
32693
32693
|
*/
|
|
32694
|
-
static override
|
|
32694
|
+
static override<
|
|
32695
|
+
TheExtension extends new () => ControllerExtension,
|
|
32696
|
+
AddtlProps extends object
|
|
32697
|
+
>(
|
|
32698
|
+
this: TheExtension,
|
|
32695
32699
|
/**
|
|
32696
32700
|
* The custom extension definition
|
|
32697
32701
|
*/
|
|
32698
|
-
|
|
32699
|
-
):
|
|
32702
|
+
customExtension: AddtlProps
|
|
32703
|
+
): new () => InstanceType<TheExtension> & AddtlProps;
|
|
32704
|
+
/**
|
|
32705
|
+
* A marker method for applying controller extensions to controller class members in TypeScript code.
|
|
32706
|
+
* This method is only used to make TypeScript usage compatible to the UI5 runtime behavior, where an extension
|
|
32707
|
+
* *class* is assigned when the controller is defined, but each controller instance gets an *instance* of
|
|
32708
|
+
* this extension. This method call is removed in the class transformer when the ES class is transformed
|
|
32709
|
+
* to the traditional UI5 class definition syntax.
|
|
32710
|
+
*
|
|
32711
|
+
* To allow for proper removal, it may only be called directly on the base class `ControllerExtension`,
|
|
32712
|
+
* at the place where a controller extension is assigned to a member property of the new controller class.
|
|
32713
|
+
* The class transformation then removes this call. If it is not removed because it is used in any other
|
|
32714
|
+
* way, then it throws an error at runtime.
|
|
32715
|
+
*
|
|
32716
|
+
* Usage example:
|
|
32717
|
+
* ```javascript
|
|
32718
|
+
* import Routing from "sap/fe/core/controllerextensions/Routing";
|
|
32719
|
+
* import ControllerExtension from "sap/ui/core/mvc/ControllerExtension";
|
|
32720
|
+
* ...
|
|
32721
|
+
* export default class App extends Controller {
|
|
32722
|
+
* routing = ControllerExtension.use(Routing);
|
|
32723
|
+
* ```
|
|
32724
|
+
*
|
|
32725
|
+
* Usage example with overriding extension callbacks:
|
|
32726
|
+
* ```javascript
|
|
32727
|
+
* import Routing from "sap/fe/core/controllerextensions/Routing";
|
|
32728
|
+
* import ControllerExtension from "sap/ui/core/mvc/ControllerExtension";
|
|
32729
|
+
* ...
|
|
32730
|
+
* export default class App extends Controller {
|
|
32731
|
+
* routing = ControllerExtension.use(Routing.override({
|
|
32732
|
+
* ...
|
|
32733
|
+
* }));
|
|
32734
|
+
* ```
|
|
32735
|
+
*
|
|
32736
|
+
*
|
|
32737
|
+
*
|
|
32738
|
+
* @returns An instance of the given `ControllerExtension`. **NOTE:** this is only a dummy return type for
|
|
32739
|
+
* proper usage in TypeScript. This method does not actually return an instance of `ControllerExtension`,
|
|
32740
|
+
* but only throws an error at runtime. The sole purpose of this method is to mimic the actual runtime behavior
|
|
32741
|
+
* where a *class* is given when a controller is defined, but an *instance* is present in each controller
|
|
32742
|
+
* instance.
|
|
32743
|
+
*/
|
|
32744
|
+
static use<TheExtension extends ControllerExtension>(
|
|
32745
|
+
/**
|
|
32746
|
+
* The ControllerExtension to use
|
|
32747
|
+
*/
|
|
32748
|
+
extensionClass: new () => TheExtension
|
|
32749
|
+
): TheExtension;
|
|
32700
32750
|
/**
|
|
32701
32751
|
* Returns an Element of the connected view with the given local ID.
|
|
32702
32752
|
*
|
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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.19
|
|
2
2
|
|
|
3
3
|
declare module "sap/uiext/inbox/library" {}
|
|
4
4
|
|
|
@@ -9,6 +9,8 @@ declare module "sap/uiext/inbox/composite/InboxAddAttachmentTile" {
|
|
|
9
9
|
|
|
10
10
|
/**
|
|
11
11
|
* InboxAddAttachmentTile
|
|
12
|
+
*
|
|
13
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
12
14
|
*/
|
|
13
15
|
export default class InboxAddAttachmentTile extends Control {
|
|
14
16
|
/**
|
|
@@ -82,6 +84,8 @@ declare module "sap/uiext/inbox/composite/InboxAddAttachmentTile" {
|
|
|
82
84
|
}
|
|
83
85
|
/**
|
|
84
86
|
* Describes the settings that can be provided to the InboxAddAttachmentTile constructor.
|
|
87
|
+
*
|
|
88
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
85
89
|
*/
|
|
86
90
|
export interface $InboxAddAttachmentTileSettings extends $ControlSettings {}
|
|
87
91
|
}
|
|
@@ -102,6 +106,8 @@ declare module "sap/uiext/inbox/composite/InboxAttachmentsTileContainer" {
|
|
|
102
106
|
|
|
103
107
|
/**
|
|
104
108
|
* InboxAttachmentsTileContainer
|
|
109
|
+
*
|
|
110
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
105
111
|
*/
|
|
106
112
|
export default class InboxAttachmentsTileContainer extends Control {
|
|
107
113
|
/**
|
|
@@ -653,6 +659,8 @@ declare module "sap/uiext/inbox/composite/InboxAttachmentsTileContainer" {
|
|
|
653
659
|
}
|
|
654
660
|
/**
|
|
655
661
|
* Describes the settings that can be provided to the InboxAttachmentsTileContainer constructor.
|
|
662
|
+
*
|
|
663
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
656
664
|
*/
|
|
657
665
|
export interface $InboxAttachmentsTileContainerSettings
|
|
658
666
|
extends $ControlSettings {
|
|
@@ -764,6 +772,8 @@ declare module "sap/uiext/inbox/composite/InboxAttachmentTile" {
|
|
|
764
772
|
|
|
765
773
|
/**
|
|
766
774
|
* InboxAttachmentTile
|
|
775
|
+
*
|
|
776
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
767
777
|
*/
|
|
768
778
|
export default class InboxAttachmentTile extends Control {
|
|
769
779
|
/**
|
|
@@ -1118,6 +1128,8 @@ declare module "sap/uiext/inbox/composite/InboxAttachmentTile" {
|
|
|
1118
1128
|
}
|
|
1119
1129
|
/**
|
|
1120
1130
|
* Describes the settings that can be provided to the InboxAttachmentTile constructor.
|
|
1131
|
+
*
|
|
1132
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
1121
1133
|
*/
|
|
1122
1134
|
export interface $InboxAttachmentTileSettings extends $ControlSettings {
|
|
1123
1135
|
/**
|
|
@@ -1187,6 +1199,8 @@ declare module "sap/uiext/inbox/composite/InboxBusyIndicator" {
|
|
|
1187
1199
|
|
|
1188
1200
|
/**
|
|
1189
1201
|
* InboxBusyIndicator
|
|
1202
|
+
*
|
|
1203
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
1190
1204
|
*/
|
|
1191
1205
|
export default class InboxBusyIndicator extends Control {
|
|
1192
1206
|
/**
|
|
@@ -1260,6 +1274,8 @@ declare module "sap/uiext/inbox/composite/InboxBusyIndicator" {
|
|
|
1260
1274
|
}
|
|
1261
1275
|
/**
|
|
1262
1276
|
* Describes the settings that can be provided to the InboxBusyIndicator constructor.
|
|
1277
|
+
*
|
|
1278
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
1263
1279
|
*/
|
|
1264
1280
|
export interface $InboxBusyIndicatorSettings extends $ControlSettings {}
|
|
1265
1281
|
}
|
|
@@ -1275,6 +1291,8 @@ declare module "sap/uiext/inbox/composite/InboxComment" {
|
|
|
1275
1291
|
|
|
1276
1292
|
/**
|
|
1277
1293
|
* fsgg
|
|
1294
|
+
*
|
|
1295
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
1278
1296
|
*/
|
|
1279
1297
|
export default class InboxComment extends Control {
|
|
1280
1298
|
/**
|
|
@@ -1492,6 +1510,8 @@ declare module "sap/uiext/inbox/composite/InboxComment" {
|
|
|
1492
1510
|
}
|
|
1493
1511
|
/**
|
|
1494
1512
|
* Describes the settings that can be provided to the InboxComment constructor.
|
|
1513
|
+
*
|
|
1514
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
1495
1515
|
*/
|
|
1496
1516
|
export interface $InboxCommentSettings extends $ControlSettings {
|
|
1497
1517
|
/**
|
|
@@ -1544,6 +1564,8 @@ declare module "sap/uiext/inbox/composite/InboxTaskComments" {
|
|
|
1544
1564
|
|
|
1545
1565
|
/**
|
|
1546
1566
|
* InboxTaskComments
|
|
1567
|
+
*
|
|
1568
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
1547
1569
|
*/
|
|
1548
1570
|
export default class InboxTaskComments extends Control {
|
|
1549
1571
|
/**
|
|
@@ -1877,6 +1899,8 @@ declare module "sap/uiext/inbox/composite/InboxTaskComments" {
|
|
|
1877
1899
|
}
|
|
1878
1900
|
/**
|
|
1879
1901
|
* Describes the settings that can be provided to the InboxTaskComments constructor.
|
|
1902
|
+
*
|
|
1903
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
1880
1904
|
*/
|
|
1881
1905
|
export interface $InboxTaskCommentsSettings extends $ControlSettings {
|
|
1882
1906
|
/**
|
|
@@ -1939,6 +1963,8 @@ declare module "sap/uiext/inbox/composite/InboxTaskTitleControl" {
|
|
|
1939
1963
|
|
|
1940
1964
|
/**
|
|
1941
1965
|
* InboxTaskTitleControl
|
|
1966
|
+
*
|
|
1967
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
1942
1968
|
*/
|
|
1943
1969
|
export default class InboxTaskTitleControl extends Control {
|
|
1944
1970
|
/**
|
|
@@ -2135,6 +2161,8 @@ declare module "sap/uiext/inbox/composite/InboxTaskTitleControl" {
|
|
|
2135
2161
|
}
|
|
2136
2162
|
/**
|
|
2137
2163
|
* Describes the settings that can be provided to the InboxTaskTitleControl constructor.
|
|
2164
|
+
*
|
|
2165
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
2138
2166
|
*/
|
|
2139
2167
|
export interface $InboxTaskTitleControlSettings extends $ControlSettings {
|
|
2140
2168
|
/**
|
|
@@ -2177,6 +2205,8 @@ declare module "sap/uiext/inbox/composite/InboxUploadAttachmentTile" {
|
|
|
2177
2205
|
|
|
2178
2206
|
/**
|
|
2179
2207
|
* InboxUploadAttachmentTile
|
|
2208
|
+
*
|
|
2209
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
2180
2210
|
*/
|
|
2181
2211
|
export default class InboxUploadAttachmentTile extends Control {
|
|
2182
2212
|
/**
|
|
@@ -2377,6 +2407,8 @@ declare module "sap/uiext/inbox/composite/InboxUploadAttachmentTile" {
|
|
|
2377
2407
|
}
|
|
2378
2408
|
/**
|
|
2379
2409
|
* Describes the settings that can be provided to the InboxUploadAttachmentTile constructor.
|
|
2410
|
+
*
|
|
2411
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
2380
2412
|
*/
|
|
2381
2413
|
export interface $InboxUploadAttachmentTileSettings extends $ControlSettings {
|
|
2382
2414
|
/**
|
|
@@ -3165,6 +3197,8 @@ declare module "sap/uiext/inbox/InboxConfiguration" {
|
|
|
3165
3197
|
|
|
3166
3198
|
/**
|
|
3167
3199
|
* Configuration for Inbox
|
|
3200
|
+
*
|
|
3201
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
3168
3202
|
*/
|
|
3169
3203
|
export default class InboxConfiguration extends BaseObject {
|
|
3170
3204
|
/**
|
|
@@ -3225,6 +3259,8 @@ declare module "sap/uiext/inbox/InboxFilters" {
|
|
|
3225
3259
|
|
|
3226
3260
|
/**
|
|
3227
3261
|
* PreDefined Filters for Inbox
|
|
3262
|
+
*
|
|
3263
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
3228
3264
|
*/
|
|
3229
3265
|
export default class InboxFilters extends BaseObject {
|
|
3230
3266
|
/**
|
|
@@ -3294,6 +3330,7 @@ declare module "sap/uiext/inbox/InboxLaunchPad" {
|
|
|
3294
3330
|
/**
|
|
3295
3331
|
* InboxLaunchPad Documentation to be updated later
|
|
3296
3332
|
*
|
|
3333
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
3297
3334
|
* @experimental (since 1.7.0) - API is not yet finished and might change completely
|
|
3298
3335
|
*/
|
|
3299
3336
|
export default class InboxLaunchPad extends Control {
|
|
@@ -3660,6 +3697,7 @@ declare module "sap/uiext/inbox/InboxLaunchPad" {
|
|
|
3660
3697
|
/**
|
|
3661
3698
|
* Describes the settings that can be provided to the InboxLaunchPad constructor.
|
|
3662
3699
|
*
|
|
3700
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
3663
3701
|
* @experimental (since 1.7.0) - API is not yet finished and might change completely
|
|
3664
3702
|
*/
|
|
3665
3703
|
export interface $InboxLaunchPadSettings extends $ControlSettings {
|
|
@@ -3731,6 +3769,8 @@ declare module "sap/uiext/inbox/InboxLaunchPad" {
|
|
|
3731
3769
|
declare module "sap/uiext/inbox/InboxPrimaryFilterEnum" {
|
|
3732
3770
|
/**
|
|
3733
3771
|
* Enumeration for Primary Filters. This value will be applied for the DropDown Filter in Inbox
|
|
3772
|
+
*
|
|
3773
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
3734
3774
|
*/
|
|
3735
3775
|
interface InboxPrimaryFilterEnum {
|
|
3736
3776
|
/**
|
|
@@ -3754,6 +3794,9 @@ declare module "sap/uiext/inbox/InboxPrimaryFilterEnum" {
|
|
|
3754
3794
|
OVERDUE: undefined;
|
|
3755
3795
|
}
|
|
3756
3796
|
const InboxPrimaryFilterEnum: InboxPrimaryFilterEnum;
|
|
3797
|
+
/**
|
|
3798
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
3799
|
+
*/
|
|
3757
3800
|
export default InboxPrimaryFilterEnum;
|
|
3758
3801
|
}
|
|
3759
3802
|
|
|
@@ -3766,6 +3809,8 @@ declare module "sap/uiext/inbox/InboxPrimaryFilters" {
|
|
|
3766
3809
|
|
|
3767
3810
|
/**
|
|
3768
3811
|
* Primary Filters for Inbox
|
|
3812
|
+
*
|
|
3813
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
3769
3814
|
*/
|
|
3770
3815
|
export default class InboxPrimaryFilters extends BaseObject {
|
|
3771
3816
|
/**
|
|
@@ -3814,6 +3859,8 @@ declare module "sap/uiext/inbox/InboxPrimaryFilters" {
|
|
|
3814
3859
|
declare module "sap/uiext/inbox/InboxSecondaryFilterPathEnum" {
|
|
3815
3860
|
/**
|
|
3816
3861
|
* Enumeration for Secondary Filter Paths
|
|
3862
|
+
*
|
|
3863
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
3817
3864
|
*/
|
|
3818
3865
|
interface InboxSecondaryFilterPathEnum {
|
|
3819
3866
|
/**
|
|
@@ -3842,6 +3889,9 @@ declare module "sap/uiext/inbox/InboxSecondaryFilterPathEnum" {
|
|
|
3842
3889
|
TASKTYPE: undefined;
|
|
3843
3890
|
}
|
|
3844
3891
|
const InboxSecondaryFilterPathEnum: InboxSecondaryFilterPathEnum;
|
|
3892
|
+
/**
|
|
3893
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
3894
|
+
*/
|
|
3845
3895
|
export default InboxSecondaryFilterPathEnum;
|
|
3846
3896
|
}
|
|
3847
3897
|
|
|
@@ -3852,6 +3902,8 @@ declare module "sap/uiext/inbox/InboxSecondaryFilters" {
|
|
|
3852
3902
|
|
|
3853
3903
|
/**
|
|
3854
3904
|
* Secondary Filters for Inbox
|
|
3905
|
+
*
|
|
3906
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
3855
3907
|
*/
|
|
3856
3908
|
export default class InboxSecondaryFilters extends BaseObject {
|
|
3857
3909
|
/**
|
|
@@ -3908,6 +3960,8 @@ declare module "sap/uiext/inbox/InboxSecondaryFilters" {
|
|
|
3908
3960
|
declare module "sap/uiext/inbox/InboxSecondaryFilterValuesEnum" {
|
|
3909
3961
|
/**
|
|
3910
3962
|
* Enumeration for Secondary Filter Values
|
|
3963
|
+
*
|
|
3964
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
3911
3965
|
*/
|
|
3912
3966
|
interface InboxSecondaryFilterValuesEnum {
|
|
3913
3967
|
/**
|
|
@@ -3959,6 +4013,9 @@ declare module "sap/uiext/inbox/InboxSecondaryFilterValuesEnum" {
|
|
|
3959
4013
|
Status: undefined;
|
|
3960
4014
|
}
|
|
3961
4015
|
const InboxSecondaryFilterValuesEnum: InboxSecondaryFilterValuesEnum;
|
|
4016
|
+
/**
|
|
4017
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
4018
|
+
*/
|
|
3962
4019
|
export default InboxSecondaryFilterValuesEnum;
|
|
3963
4020
|
}
|
|
3964
4021
|
|
|
@@ -3976,6 +4033,7 @@ declare module "sap/uiext/inbox/InboxSplitApp" {
|
|
|
3976
4033
|
/**
|
|
3977
4034
|
* Inbox Split App
|
|
3978
4035
|
*
|
|
4036
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
3979
4037
|
* @experimental (since 1.7.0) - API is not yet finished and might change completely
|
|
3980
4038
|
*/
|
|
3981
4039
|
export default class InboxSplitApp extends Control {
|
|
@@ -4259,6 +4317,7 @@ declare module "sap/uiext/inbox/InboxSplitApp" {
|
|
|
4259
4317
|
/**
|
|
4260
4318
|
* Describes the settings that can be provided to the InboxSplitApp constructor.
|
|
4261
4319
|
*
|
|
4320
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
4262
4321
|
* @experimental (since 1.7.0) - API is not yet finished and might change completely
|
|
4263
4322
|
*/
|
|
4264
4323
|
export interface $InboxSplitAppSettings extends $ControlSettings {
|
|
@@ -4315,6 +4374,7 @@ declare module "sap/uiext/inbox/SubstitutionRulesManager" {
|
|
|
4315
4374
|
/**
|
|
4316
4375
|
* The SubstitutionRulesManager
|
|
4317
4376
|
*
|
|
4377
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
4318
4378
|
* @experimental (since 1.7.0) - API is not yet finished and might change completely
|
|
4319
4379
|
*/
|
|
4320
4380
|
export default class SubstitutionRulesManager extends Control {
|
|
@@ -4399,6 +4459,7 @@ declare module "sap/uiext/inbox/SubstitutionRulesManager" {
|
|
|
4399
4459
|
/**
|
|
4400
4460
|
* Describes the settings that can be provided to the SubstitutionRulesManager constructor.
|
|
4401
4461
|
*
|
|
4462
|
+
* @deprecated (since 1.120) - the concept has been discarded.
|
|
4402
4463
|
* @experimental (since 1.7.0) - API is not yet finished and might change completely
|
|
4403
4464
|
*/
|
|
4404
4465
|
export interface $SubstitutionRulesManagerSettings extends $ControlSettings {}
|
package/types/sap.ushell.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.18
|
|
2
2
|
|
|
3
3
|
declare module "sap/ushell/library" {
|
|
4
4
|
/**
|
|
@@ -4766,6 +4766,10 @@ declare module "sap/ushell/services/Extension/Item" {
|
|
|
4766
4766
|
/**
|
|
4767
4767
|
* Item wrapping an item positioned in an extension point. To be instantiated by {@link sap.ushell.services.Extension}.
|
|
4768
4768
|
*
|
|
4769
|
+
* The item will be automatically destroyed when the user navigates away from the current application.
|
|
4770
|
+
* After calling {@link sap.ushell.services.Extension.Item#showOnHome} or {@link sap.ushell.services.Extension.Item#showForAllApps }
|
|
4771
|
+
* the item is not destroyed automatically and has to be destroyed manually via {@link sap.ushell.services.Extension.Item#destroy}.
|
|
4772
|
+
*
|
|
4769
4773
|
* @since 1.120.0
|
|
4770
4774
|
* @experimental (since 1.120.0)
|
|
4771
4775
|
*/
|
|
@@ -4799,6 +4803,7 @@ declare module "sap/ushell/services/Extension/Item" {
|
|
|
4799
4803
|
hideForCurrentApp(): Item;
|
|
4800
4804
|
/**
|
|
4801
4805
|
* Hides the item for launchpad "home". Does not change the visibility of the item within applications.
|
|
4806
|
+
* Disables the automatic destruction of the item when the user navigates away from the current application.
|
|
4802
4807
|
*
|
|
4803
4808
|
* @since 1.120.0
|
|
4804
4809
|
*
|
|
@@ -4807,6 +4812,7 @@ declare module "sap/ushell/services/Extension/Item" {
|
|
|
4807
4812
|
hideOnHome(): Item;
|
|
4808
4813
|
/**
|
|
4809
4814
|
* Shows the item for all applications. Does not change the visibility of the item for the launchpad "home".
|
|
4815
|
+
* Disables the automatic destruction of the item when the user navigates away from the current application.
|
|
4810
4816
|
*
|
|
4811
4817
|
* @since 1.120.0
|
|
4812
4818
|
*
|
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED
package/types/sap.zen.dsh.d.ts
CHANGED