@sapui5/ts-types 1.144.1 → 1.146.0
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.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +172 -99
- package/types/sap.f.d.ts +71 -528
- package/types/sap.fe.ariba.d.ts +1 -1
- package/types/sap.fe.base.d.ts +300 -28
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +165 -4
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +1137 -290
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +12 -1
- package/types/sap.fe.test.d.ts +150 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +181 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +356 -29
- 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.ovp.d.ts +32 -2
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +403 -21
- package/types/sap.suite.ui.generic.template.d.ts +46 -1
- package/types/sap.suite.ui.microchart.d.ts +2 -1
- package/types/sap.tnt.d.ts +27 -26
- 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 +76 -2
- package/types/sap.ui.core.d.ts +1173 -456
- 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 +9 -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.geomap.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +65 -265
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +357 -50
- package/types/sap.ui.richtexteditor.d.ts +33 -11
- 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 +5 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +77 -3
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +390 -2
- package/types/sap.ui.vtm.d.ts +2 -2
- 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 +188 -131
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +18 -8
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.146.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/suite/ui/commons/collaboration/BaseHelperService" {
|
|
4
4
|
/**
|
|
@@ -155,8 +155,6 @@ declare module "sap/suite/ui/commons/collaboration/BaseHelperService" {
|
|
|
155
155
|
declare module "sap/suite/ui/commons/collaboration/CollaborationHelper" {
|
|
156
156
|
/**
|
|
157
157
|
* CollaborationHelper for collaboration-related functionalities
|
|
158
|
-
*
|
|
159
|
-
* @since 1.108
|
|
160
158
|
*/
|
|
161
159
|
interface CollaborationHelper {
|
|
162
160
|
/**
|
|
@@ -3875,13 +3873,22 @@ declare namespace sap {
|
|
|
3875
3873
|
/**
|
|
3876
3874
|
* Enables advanced line routing algorithm that creates orthogonal bends along the pathfinding process for
|
|
3877
3875
|
* line creation.
|
|
3878
|
-
*
|
|
3879
|
-
* @since 1.144
|
|
3880
3876
|
*/
|
|
3881
3877
|
enableOptimizedLineAlgorithm?:
|
|
3882
3878
|
| boolean
|
|
3883
3879
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
3884
3880
|
| `{${string}}`;
|
|
3881
|
+
|
|
3882
|
+
/**
|
|
3883
|
+
* Defines how separate connected components should be arranged in the graph. Components can be arranged
|
|
3884
|
+
* either horizontally (side-by-side) or vertically (stacked).
|
|
3885
|
+
*
|
|
3886
|
+
* @since 1.146
|
|
3887
|
+
*/
|
|
3888
|
+
componentArrangement?:
|
|
3889
|
+
| sap.suite.ui.commons.networkgraph.ComponentArrangement
|
|
3890
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
3891
|
+
| `{${string}}`;
|
|
3885
3892
|
}
|
|
3886
3893
|
|
|
3887
3894
|
/**
|
|
@@ -4699,6 +4706,19 @@ declare namespace sap {
|
|
|
4699
4706
|
* @returns Metadata object describing this class
|
|
4700
4707
|
*/
|
|
4701
4708
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4709
|
+
/**
|
|
4710
|
+
* Gets current value of property {@link #getComponentArrangement componentArrangement}.
|
|
4711
|
+
*
|
|
4712
|
+
* Defines how separate connected components should be arranged in the graph. Components can be arranged
|
|
4713
|
+
* either horizontally (side-by-side) or vertically (stacked).
|
|
4714
|
+
*
|
|
4715
|
+
* Default value is `Horizontal`.
|
|
4716
|
+
*
|
|
4717
|
+
* @since 1.146
|
|
4718
|
+
*
|
|
4719
|
+
* @returns Value of property `componentArrangement`
|
|
4720
|
+
*/
|
|
4721
|
+
getComponentArrangement(): sap.suite.ui.commons.networkgraph.ComponentArrangement;
|
|
4702
4722
|
/**
|
|
4703
4723
|
* Gets current value of property {@link #getEnableOptimizedLineAlgorithm enableOptimizedLineAlgorithm}.
|
|
4704
4724
|
*
|
|
@@ -4707,7 +4727,6 @@ declare namespace sap {
|
|
|
4707
4727
|
*
|
|
4708
4728
|
* Default value is `false`.
|
|
4709
4729
|
*
|
|
4710
|
-
* @since 1.144
|
|
4711
4730
|
*
|
|
4712
4731
|
* @returns Value of property `enableOptimizedLineAlgorithm`
|
|
4713
4732
|
*/
|
|
@@ -4720,12 +4739,33 @@ declare namespace sap {
|
|
|
4720
4739
|
*/
|
|
4721
4740
|
getLayoutRenderType(): sap.suite.ui.commons.networkgraph.LayoutRenderType;
|
|
4722
4741
|
/**
|
|
4723
|
-
* Executes the layout algorithm.
|
|
4742
|
+
* Executes the layout algorithm. Automatically calculates initial positions for unpositioned nodes using
|
|
4743
|
+
* DependencyLayoutHelper, then normalizes line coordinates.
|
|
4724
4744
|
*
|
|
4725
4745
|
*
|
|
4726
4746
|
* @returns Task to get the layout calculated.
|
|
4727
4747
|
*/
|
|
4728
4748
|
layout(): sap.suite.ui.commons.networkgraph.layout.LayoutTask;
|
|
4749
|
+
/**
|
|
4750
|
+
* Sets a new value for property {@link #getComponentArrangement componentArrangement}.
|
|
4751
|
+
*
|
|
4752
|
+
* Defines how separate connected components should be arranged in the graph. Components can be arranged
|
|
4753
|
+
* either horizontally (side-by-side) or vertically (stacked).
|
|
4754
|
+
*
|
|
4755
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4756
|
+
*
|
|
4757
|
+
* Default value is `Horizontal`.
|
|
4758
|
+
*
|
|
4759
|
+
* @since 1.146
|
|
4760
|
+
*
|
|
4761
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4762
|
+
*/
|
|
4763
|
+
setComponentArrangement(
|
|
4764
|
+
/**
|
|
4765
|
+
* New value for property `componentArrangement`
|
|
4766
|
+
*/
|
|
4767
|
+
sComponentArrangement?: sap.suite.ui.commons.networkgraph.ComponentArrangement
|
|
4768
|
+
): this;
|
|
4729
4769
|
/**
|
|
4730
4770
|
* Sets a new value for property {@link #getEnableOptimizedLineAlgorithm enableOptimizedLineAlgorithm}.
|
|
4731
4771
|
*
|
|
@@ -4736,7 +4776,6 @@ declare namespace sap {
|
|
|
4736
4776
|
*
|
|
4737
4777
|
* Default value is `false`.
|
|
4738
4778
|
*
|
|
4739
|
-
* @since 1.144
|
|
4740
4779
|
*
|
|
4741
4780
|
* @returns Reference to `this` in order to allow method chaining
|
|
4742
4781
|
*/
|
|
@@ -5216,7 +5255,9 @@ declare namespace sap {
|
|
|
5216
5255
|
|
|
5217
5256
|
/**
|
|
5218
5257
|
* Enables the drag and drop of nodes. This property is ignored if the layout property is not set to noop.
|
|
5219
|
-
* If set to `true`, nodes can be dragged and dropped within the graph.
|
|
5258
|
+
* If set to `true`, nodes can be dragged and dropped within the graph. Note: Drag and drop functionality
|
|
5259
|
+
* is only available for nodes. Groups cannot be dragged and dropped, even when NoopLayout is used and enableDragAndDrop
|
|
5260
|
+
* is set to true.
|
|
5220
5261
|
*
|
|
5221
5262
|
* @since 1.144
|
|
5222
5263
|
*/
|
|
@@ -5371,8 +5412,12 @@ declare namespace sap {
|
|
|
5371
5412
|
search?: (oEvent: Graph$SearchEvent) => void;
|
|
5372
5413
|
|
|
5373
5414
|
/**
|
|
5374
|
-
* This event is fired when a user drops a node in the graph. This event is available only
|
|
5375
|
-
*
|
|
5415
|
+
* This event is fired when a user drops a node in the graph. This event is available only when the layout
|
|
5416
|
+
* algorithm is set to "NoopLayout" and the `enableDragAndDrop` property is set to `true`. Note: When a
|
|
5417
|
+
* node is dropped near the TOP or LEFT boundary of the graph canvas, its position is automatically adjusted
|
|
5418
|
+
* (clamped) to ensure the node and its elements remain fully visible. This provides better visualization
|
|
5419
|
+
* by preventing nodes from being positioned at coordinates that would make them invisible or partially
|
|
5420
|
+
* hidden.
|
|
5376
5421
|
*
|
|
5377
5422
|
* @since 1.144
|
|
5378
5423
|
*/
|
|
@@ -5384,6 +5429,15 @@ declare namespace sap {
|
|
|
5384
5429
|
* @since 1.144
|
|
5385
5430
|
*/
|
|
5386
5431
|
connectionCreated?: (oEvent: Graph$ConnectionCreatedEvent) => void;
|
|
5432
|
+
|
|
5433
|
+
/**
|
|
5434
|
+
* This event is fired when a user presses the delete key on a focused node or line. This event is available
|
|
5435
|
+
* only when the layout algorithm is set to "NoopLayout" and the `enableDragAndDrop` property is set to
|
|
5436
|
+
* `true`.
|
|
5437
|
+
*
|
|
5438
|
+
* @since 1.145
|
|
5439
|
+
*/
|
|
5440
|
+
itemDeleted?: (oEvent: Graph$ItemDeletedEvent) => void;
|
|
5387
5441
|
}
|
|
5388
5442
|
|
|
5389
5443
|
/**
|
|
@@ -5809,6 +5863,31 @@ declare namespace sap {
|
|
|
5809
5863
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
5810
5864
|
| `{${string}}`;
|
|
5811
5865
|
|
|
5866
|
+
/**
|
|
5867
|
+
* Determines the port configuration for this node. When set, it overrides the graph-level nodePorts setting.
|
|
5868
|
+
* If not set (defaults to None), the graph-level setting is used. Ports are available only when the layout
|
|
5869
|
+
* algorithm is set to "NoopLayout", and when the drag and drop is enabled.
|
|
5870
|
+
*
|
|
5871
|
+
* @since 1.145
|
|
5872
|
+
*/
|
|
5873
|
+
nodePorts?: /* was: sap.suite.ui.commons.networkgraph.NodePorts */
|
|
5874
|
+
| any
|
|
5875
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
5876
|
+
| `{${string}}`;
|
|
5877
|
+
|
|
5878
|
+
/**
|
|
5879
|
+
* Determines whether the 'Create Connection' action button is displayed on this node. When set, it overrides
|
|
5880
|
+
* the graph-level showCreateConnectionButton setting. If set to default (true), the graph-level setting
|
|
5881
|
+
* is used. The button is used to create connections between nodes as an accessible alternative to node
|
|
5882
|
+
* ports.
|
|
5883
|
+
*
|
|
5884
|
+
* @since 1.145
|
|
5885
|
+
*/
|
|
5886
|
+
showCreateConnectionButton?:
|
|
5887
|
+
| boolean
|
|
5888
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
5889
|
+
| `{${string}}`;
|
|
5890
|
+
|
|
5812
5891
|
/**
|
|
5813
5892
|
* A list of links to be shown in the links area. A link may point to any UI5 control. It's up to the caller
|
|
5814
5893
|
* to set up all necessary callback functions.
|
|
@@ -6095,6 +6174,16 @@ declare namespace sap {
|
|
|
6095
6174
|
*/
|
|
6096
6175
|
interface Graph$GraphReadyEventParameters {}
|
|
6097
6176
|
|
|
6177
|
+
/**
|
|
6178
|
+
* Parameters of the Graph#itemDeleted event.
|
|
6179
|
+
*/
|
|
6180
|
+
interface Graph$ItemDeletedEventParameters {
|
|
6181
|
+
/**
|
|
6182
|
+
* The item (node or line) that is to be deleted.
|
|
6183
|
+
*/
|
|
6184
|
+
item?: sap.suite.ui.commons.networkgraph.ElementBase;
|
|
6185
|
+
}
|
|
6186
|
+
|
|
6098
6187
|
/**
|
|
6099
6188
|
* Parameters of the Graph#nodeDropped event.
|
|
6100
6189
|
*/
|
|
@@ -7438,14 +7527,73 @@ declare namespace sap {
|
|
|
7438
7527
|
*/
|
|
7439
7528
|
oListener?: object
|
|
7440
7529
|
): this;
|
|
7530
|
+
/**
|
|
7531
|
+
* Attaches event handler `fnFunction` to the {@link #event:itemDeleted itemDeleted} event of this `sap.suite.ui.commons.networkgraph.Graph`.
|
|
7532
|
+
*
|
|
7533
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7534
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.networkgraph.Graph` itself.
|
|
7535
|
+
*
|
|
7536
|
+
* This event is fired when a user presses the delete key on a focused node or line. This event is available
|
|
7537
|
+
* only when the layout algorithm is set to "NoopLayout" and the `enableDragAndDrop` property is set to
|
|
7538
|
+
* `true`.
|
|
7539
|
+
*
|
|
7540
|
+
* @since 1.145
|
|
7541
|
+
*
|
|
7542
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
7543
|
+
*/
|
|
7544
|
+
attachItemDeleted(
|
|
7545
|
+
/**
|
|
7546
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
7547
|
+
* object when firing the event
|
|
7548
|
+
*/
|
|
7549
|
+
oData: object,
|
|
7550
|
+
/**
|
|
7551
|
+
* The function to be called when the event occurs
|
|
7552
|
+
*/
|
|
7553
|
+
fnFunction: (p1: Graph$ItemDeletedEvent) => void,
|
|
7554
|
+
/**
|
|
7555
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.networkgraph.Graph`
|
|
7556
|
+
* itself
|
|
7557
|
+
*/
|
|
7558
|
+
oListener?: object
|
|
7559
|
+
): this;
|
|
7560
|
+
/**
|
|
7561
|
+
* Attaches event handler `fnFunction` to the {@link #event:itemDeleted itemDeleted} event of this `sap.suite.ui.commons.networkgraph.Graph`.
|
|
7562
|
+
*
|
|
7563
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7564
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.networkgraph.Graph` itself.
|
|
7565
|
+
*
|
|
7566
|
+
* This event is fired when a user presses the delete key on a focused node or line. This event is available
|
|
7567
|
+
* only when the layout algorithm is set to "NoopLayout" and the `enableDragAndDrop` property is set to
|
|
7568
|
+
* `true`.
|
|
7569
|
+
*
|
|
7570
|
+
* @since 1.145
|
|
7571
|
+
*
|
|
7572
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
7573
|
+
*/
|
|
7574
|
+
attachItemDeleted(
|
|
7575
|
+
/**
|
|
7576
|
+
* The function to be called when the event occurs
|
|
7577
|
+
*/
|
|
7578
|
+
fnFunction: (p1: Graph$ItemDeletedEvent) => void,
|
|
7579
|
+
/**
|
|
7580
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.networkgraph.Graph`
|
|
7581
|
+
* itself
|
|
7582
|
+
*/
|
|
7583
|
+
oListener?: object
|
|
7584
|
+
): this;
|
|
7441
7585
|
/**
|
|
7442
7586
|
* Attaches event handler `fnFunction` to the {@link #event:nodeDropped nodeDropped} event of this `sap.suite.ui.commons.networkgraph.Graph`.
|
|
7443
7587
|
*
|
|
7444
7588
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7445
7589
|
* otherwise it will be bound to this `sap.suite.ui.commons.networkgraph.Graph` itself.
|
|
7446
7590
|
*
|
|
7447
|
-
* This event is fired when a user drops a node in the graph. This event is available only
|
|
7448
|
-
*
|
|
7591
|
+
* This event is fired when a user drops a node in the graph. This event is available only when the layout
|
|
7592
|
+
* algorithm is set to "NoopLayout" and the `enableDragAndDrop` property is set to `true`. Note: When a
|
|
7593
|
+
* node is dropped near the TOP or LEFT boundary of the graph canvas, its position is automatically adjusted
|
|
7594
|
+
* (clamped) to ensure the node and its elements remain fully visible. This provides better visualization
|
|
7595
|
+
* by preventing nodes from being positioned at coordinates that would make them invisible or partially
|
|
7596
|
+
* hidden.
|
|
7449
7597
|
*
|
|
7450
7598
|
* @since 1.144
|
|
7451
7599
|
*
|
|
@@ -7473,8 +7621,12 @@ declare namespace sap {
|
|
|
7473
7621
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7474
7622
|
* otherwise it will be bound to this `sap.suite.ui.commons.networkgraph.Graph` itself.
|
|
7475
7623
|
*
|
|
7476
|
-
* This event is fired when a user drops a node in the graph. This event is available only
|
|
7477
|
-
*
|
|
7624
|
+
* This event is fired when a user drops a node in the graph. This event is available only when the layout
|
|
7625
|
+
* algorithm is set to "NoopLayout" and the `enableDragAndDrop` property is set to `true`. Note: When a
|
|
7626
|
+
* node is dropped near the TOP or LEFT boundary of the graph canvas, its position is automatically adjusted
|
|
7627
|
+
* (clamped) to ensure the node and its elements remain fully visible. This provides better visualization
|
|
7628
|
+
* by preventing nodes from being positioned at coordinates that would make them invisible or partially
|
|
7629
|
+
* hidden.
|
|
7478
7630
|
*
|
|
7479
7631
|
* @since 1.144
|
|
7480
7632
|
*
|
|
@@ -7842,6 +7994,25 @@ declare namespace sap {
|
|
|
7842
7994
|
*/
|
|
7843
7995
|
oListener?: object
|
|
7844
7996
|
): this;
|
|
7997
|
+
/**
|
|
7998
|
+
* Detaches event handler `fnFunction` from the {@link #event:itemDeleted itemDeleted} event of this `sap.suite.ui.commons.networkgraph.Graph`.
|
|
7999
|
+
*
|
|
8000
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
8001
|
+
*
|
|
8002
|
+
* @since 1.145
|
|
8003
|
+
*
|
|
8004
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8005
|
+
*/
|
|
8006
|
+
detachItemDeleted(
|
|
8007
|
+
/**
|
|
8008
|
+
* The function to be called, when the event occurs
|
|
8009
|
+
*/
|
|
8010
|
+
fnFunction: (p1: Graph$ItemDeletedEvent) => void,
|
|
8011
|
+
/**
|
|
8012
|
+
* Context object on which the given function had to be called
|
|
8013
|
+
*/
|
|
8014
|
+
oListener?: object
|
|
8015
|
+
): this;
|
|
7845
8016
|
/**
|
|
7846
8017
|
* Detaches event handler `fnFunction` from the {@link #event:nodeDropped nodeDropped} event of this `sap.suite.ui.commons.networkgraph.Graph`.
|
|
7847
8018
|
*
|
|
@@ -8001,6 +8172,20 @@ declare namespace sap {
|
|
|
8001
8172
|
*/
|
|
8002
8173
|
mParameters?: object
|
|
8003
8174
|
): this;
|
|
8175
|
+
/**
|
|
8176
|
+
* Fires event {@link #event:itemDeleted itemDeleted} to attached listeners.
|
|
8177
|
+
*
|
|
8178
|
+
* @since 1.145
|
|
8179
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8180
|
+
*
|
|
8181
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8182
|
+
*/
|
|
8183
|
+
fireItemDeleted(
|
|
8184
|
+
/**
|
|
8185
|
+
* Parameters to pass along with the event
|
|
8186
|
+
*/
|
|
8187
|
+
mParameters?: sap.suite.ui.commons.networkgraph.Graph$ItemDeletedEventParameters
|
|
8188
|
+
): this;
|
|
8004
8189
|
/**
|
|
8005
8190
|
* Fires event {@link #event:nodeDropped nodeDropped} to attached listeners.
|
|
8006
8191
|
*
|
|
@@ -11287,6 +11472,18 @@ declare namespace sap {
|
|
|
11287
11472
|
* @returns Value of property `maxWidth`
|
|
11288
11473
|
*/
|
|
11289
11474
|
getMaxWidth(): int;
|
|
11475
|
+
/**
|
|
11476
|
+
* Gets current value of property {@link #getNodePorts nodePorts}.
|
|
11477
|
+
*
|
|
11478
|
+
* Determines the port configuration for this node. When set, it overrides the graph-level nodePorts setting.
|
|
11479
|
+
* If not set (defaults to None), the graph-level setting is used. Ports are available only when the layout
|
|
11480
|
+
* algorithm is set to "NoopLayout", and when the drag and drop is enabled.
|
|
11481
|
+
*
|
|
11482
|
+
* @since 1.145
|
|
11483
|
+
*
|
|
11484
|
+
* @returns Value of property `nodePorts`
|
|
11485
|
+
*/
|
|
11486
|
+
getNodePorts(): /* was: sap.suite.ui.commons.networkgraph.NodePorts */ any;
|
|
11290
11487
|
/**
|
|
11291
11488
|
* Gets current value of property {@link #getNodeTitleBackground nodeTitleBackground}.
|
|
11292
11489
|
*
|
|
@@ -11347,6 +11544,21 @@ declare namespace sap {
|
|
|
11347
11544
|
* @returns Value of property `showActionLinksButton`
|
|
11348
11545
|
*/
|
|
11349
11546
|
getShowActionLinksButton(): boolean;
|
|
11547
|
+
/**
|
|
11548
|
+
* Gets current value of property {@link #getShowCreateConnectionButton showCreateConnectionButton}.
|
|
11549
|
+
*
|
|
11550
|
+
* Determines whether the 'Create Connection' action button is displayed on this node. When set, it overrides
|
|
11551
|
+
* the graph-level showCreateConnectionButton setting. If set to default (true), the graph-level setting
|
|
11552
|
+
* is used. The button is used to create connections between nodes as an accessible alternative to node
|
|
11553
|
+
* ports.
|
|
11554
|
+
*
|
|
11555
|
+
* Default value is `true`.
|
|
11556
|
+
*
|
|
11557
|
+
* @since 1.145
|
|
11558
|
+
*
|
|
11559
|
+
* @returns Value of property `showCreateConnectionButton`
|
|
11560
|
+
*/
|
|
11561
|
+
getShowCreateConnectionButton(): boolean;
|
|
11350
11562
|
/**
|
|
11351
11563
|
* Gets current value of property {@link #getShowDetailButton showDetailButton}.
|
|
11352
11564
|
*
|
|
@@ -11965,6 +12177,25 @@ declare namespace sap {
|
|
|
11965
12177
|
*/
|
|
11966
12178
|
iMaxWidth?: int
|
|
11967
12179
|
): this;
|
|
12180
|
+
/**
|
|
12181
|
+
* Sets a new value for property {@link #getNodePorts nodePorts}.
|
|
12182
|
+
*
|
|
12183
|
+
* Determines the port configuration for this node. When set, it overrides the graph-level nodePorts setting.
|
|
12184
|
+
* If not set (defaults to None), the graph-level setting is used. Ports are available only when the layout
|
|
12185
|
+
* algorithm is set to "NoopLayout", and when the drag and drop is enabled.
|
|
12186
|
+
*
|
|
12187
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
12188
|
+
*
|
|
12189
|
+
* @since 1.145
|
|
12190
|
+
*
|
|
12191
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12192
|
+
*/
|
|
12193
|
+
setNodePorts(
|
|
12194
|
+
/**
|
|
12195
|
+
* New value for property `nodePorts`
|
|
12196
|
+
*/
|
|
12197
|
+
sNodePorts: /* was: sap.suite.ui.commons.networkgraph.NodePorts */ any
|
|
12198
|
+
): this;
|
|
11968
12199
|
/**
|
|
11969
12200
|
* Sets a new value for property {@link #getNodeTitleBackground nodeTitleBackground}.
|
|
11970
12201
|
*
|
|
@@ -12039,6 +12270,28 @@ declare namespace sap {
|
|
|
12039
12270
|
*/
|
|
12040
12271
|
bShowActionLinksButton?: boolean
|
|
12041
12272
|
): this;
|
|
12273
|
+
/**
|
|
12274
|
+
* Sets a new value for property {@link #getShowCreateConnectionButton showCreateConnectionButton}.
|
|
12275
|
+
*
|
|
12276
|
+
* Determines whether the 'Create Connection' action button is displayed on this node. When set, it overrides
|
|
12277
|
+
* the graph-level showCreateConnectionButton setting. If set to default (true), the graph-level setting
|
|
12278
|
+
* is used. The button is used to create connections between nodes as an accessible alternative to node
|
|
12279
|
+
* ports.
|
|
12280
|
+
*
|
|
12281
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
12282
|
+
*
|
|
12283
|
+
* Default value is `true`.
|
|
12284
|
+
*
|
|
12285
|
+
* @since 1.145
|
|
12286
|
+
*
|
|
12287
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12288
|
+
*/
|
|
12289
|
+
setShowCreateConnectionButton(
|
|
12290
|
+
/**
|
|
12291
|
+
* New value for property `showCreateConnectionButton`
|
|
12292
|
+
*/
|
|
12293
|
+
bShowCreateConnectionButton?: boolean
|
|
12294
|
+
): this;
|
|
12042
12295
|
/**
|
|
12043
12296
|
* Sets a new value for property {@link #getShowDetailButton showDetailButton}.
|
|
12044
12297
|
*
|
|
@@ -12932,6 +13185,24 @@ declare namespace sap {
|
|
|
12932
13185
|
*/
|
|
12933
13186
|
White = "White",
|
|
12934
13187
|
}
|
|
13188
|
+
/**
|
|
13189
|
+
* Defines the arrangement of components in the dependency layout.
|
|
13190
|
+
*
|
|
13191
|
+
* This enum is part of the 'sap/suite/ui/commons/library' module export and must be accessed by the property
|
|
13192
|
+
* 'networkgraph.ComponentArrangement'.
|
|
13193
|
+
*
|
|
13194
|
+
* @since 1.145
|
|
13195
|
+
*/
|
|
13196
|
+
enum ComponentArrangement {
|
|
13197
|
+
/**
|
|
13198
|
+
* Components are arranged horizontally.
|
|
13199
|
+
*/
|
|
13200
|
+
Horizontal = "Horizontal",
|
|
13201
|
+
/**
|
|
13202
|
+
* Components are arranged vertically.
|
|
13203
|
+
*/
|
|
13204
|
+
Vertical = "Vertical",
|
|
13205
|
+
}
|
|
12935
13206
|
/**
|
|
12936
13207
|
* Semantic type of the node status.
|
|
12937
13208
|
*
|
|
@@ -13202,6 +13473,14 @@ declare namespace sap {
|
|
|
13202
13473
|
Graph
|
|
13203
13474
|
>;
|
|
13204
13475
|
|
|
13476
|
+
/**
|
|
13477
|
+
* Event object of the Graph#itemDeleted event.
|
|
13478
|
+
*/
|
|
13479
|
+
type Graph$ItemDeletedEvent = sap.ui.base.Event<
|
|
13480
|
+
Graph$ItemDeletedEventParameters,
|
|
13481
|
+
Graph
|
|
13482
|
+
>;
|
|
13483
|
+
|
|
13205
13484
|
/**
|
|
13206
13485
|
* Event object of the Graph#nodeDropped event.
|
|
13207
13486
|
*/
|
|
@@ -19968,6 +20247,13 @@ declare namespace sap {
|
|
|
19968
20247
|
* This event is fired after the expression is validated.
|
|
19969
20248
|
*/
|
|
19970
20249
|
afterValidation?: (oEvent: sap.ui.base.Event) => void;
|
|
20250
|
+
|
|
20251
|
+
/**
|
|
20252
|
+
* This event is triggered when the focus leaves the input field.
|
|
20253
|
+
*
|
|
20254
|
+
* @since 1.146
|
|
20255
|
+
*/
|
|
20256
|
+
focusChange?: (oEvent: CalculationBuilder$FocusChangeEvent) => void;
|
|
19971
20257
|
}
|
|
19972
20258
|
|
|
19973
20259
|
/**
|
|
@@ -20353,8 +20639,6 @@ declare namespace sap {
|
|
|
20353
20639
|
|
|
20354
20640
|
/**
|
|
20355
20641
|
* Describes the settings that can be provided to the CloudFilePicker constructor.
|
|
20356
|
-
*
|
|
20357
|
-
* @experimental
|
|
20358
20642
|
*/
|
|
20359
20643
|
interface $CloudFilePickerSettings extends sap.m.$DialogSettings {
|
|
20360
20644
|
/**
|
|
@@ -23814,6 +24098,15 @@ declare namespace sap {
|
|
|
23814
24098
|
*/
|
|
23815
24099
|
interface CalculationBuilder$ChangeEventParameters {}
|
|
23816
24100
|
|
|
24101
|
+
/**
|
|
24102
|
+
* Parameters of the CalculationBuilder#focusChange event.
|
|
24103
|
+
*/
|
|
24104
|
+
interface CalculationBuilder$FocusChangeEventParameters {
|
|
24105
|
+
value?: String;
|
|
24106
|
+
|
|
24107
|
+
position?: int;
|
|
24108
|
+
}
|
|
24109
|
+
|
|
23817
24110
|
/**
|
|
23818
24111
|
* Parameters of the CalculationBuilder#validateFunction event.
|
|
23819
24112
|
*/
|
|
@@ -25718,6 +26011,57 @@ declare namespace sap {
|
|
|
25718
26011
|
*/
|
|
25719
26012
|
oListener?: object
|
|
25720
26013
|
): this;
|
|
26014
|
+
/**
|
|
26015
|
+
* Attaches event handler `fnFunction` to the {@link #event:focusChange focusChange} event of this `sap.suite.ui.commons.CalculationBuilder`.
|
|
26016
|
+
*
|
|
26017
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
26018
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.CalculationBuilder` itself.
|
|
26019
|
+
*
|
|
26020
|
+
* This event is triggered when the focus leaves the input field.
|
|
26021
|
+
*
|
|
26022
|
+
* @since 1.146
|
|
26023
|
+
*
|
|
26024
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
26025
|
+
*/
|
|
26026
|
+
attachFocusChange(
|
|
26027
|
+
/**
|
|
26028
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
26029
|
+
* object when firing the event
|
|
26030
|
+
*/
|
|
26031
|
+
oData: object,
|
|
26032
|
+
/**
|
|
26033
|
+
* The function to be called when the event occurs
|
|
26034
|
+
*/
|
|
26035
|
+
fnFunction: (p1: CalculationBuilder$FocusChangeEvent) => void,
|
|
26036
|
+
/**
|
|
26037
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.CalculationBuilder`
|
|
26038
|
+
* itself
|
|
26039
|
+
*/
|
|
26040
|
+
oListener?: object
|
|
26041
|
+
): this;
|
|
26042
|
+
/**
|
|
26043
|
+
* Attaches event handler `fnFunction` to the {@link #event:focusChange focusChange} event of this `sap.suite.ui.commons.CalculationBuilder`.
|
|
26044
|
+
*
|
|
26045
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
26046
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.CalculationBuilder` itself.
|
|
26047
|
+
*
|
|
26048
|
+
* This event is triggered when the focus leaves the input field.
|
|
26049
|
+
*
|
|
26050
|
+
* @since 1.146
|
|
26051
|
+
*
|
|
26052
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
26053
|
+
*/
|
|
26054
|
+
attachFocusChange(
|
|
26055
|
+
/**
|
|
26056
|
+
* The function to be called when the event occurs
|
|
26057
|
+
*/
|
|
26058
|
+
fnFunction: (p1: CalculationBuilder$FocusChangeEvent) => void,
|
|
26059
|
+
/**
|
|
26060
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.CalculationBuilder`
|
|
26061
|
+
* itself
|
|
26062
|
+
*/
|
|
26063
|
+
oListener?: object
|
|
26064
|
+
): this;
|
|
25721
26065
|
/**
|
|
25722
26066
|
* Attaches event handler `fnFunction` to the {@link #event:validateFunction validateFunction} event of
|
|
25723
26067
|
* this `sap.suite.ui.commons.CalculationBuilder`.
|
|
@@ -25860,6 +26204,25 @@ declare namespace sap {
|
|
|
25860
26204
|
*/
|
|
25861
26205
|
oListener?: object
|
|
25862
26206
|
): this;
|
|
26207
|
+
/**
|
|
26208
|
+
* Detaches event handler `fnFunction` from the {@link #event:focusChange focusChange} event of this `sap.suite.ui.commons.CalculationBuilder`.
|
|
26209
|
+
*
|
|
26210
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
26211
|
+
*
|
|
26212
|
+
* @since 1.146
|
|
26213
|
+
*
|
|
26214
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
26215
|
+
*/
|
|
26216
|
+
detachFocusChange(
|
|
26217
|
+
/**
|
|
26218
|
+
* The function to be called, when the event occurs
|
|
26219
|
+
*/
|
|
26220
|
+
fnFunction: (p1: CalculationBuilder$FocusChangeEvent) => void,
|
|
26221
|
+
/**
|
|
26222
|
+
* Context object on which the given function had to be called
|
|
26223
|
+
*/
|
|
26224
|
+
oListener?: object
|
|
26225
|
+
): this;
|
|
25863
26226
|
/**
|
|
25864
26227
|
* Detaches event handler `fnFunction` from the {@link #event:validateFunction validateFunction} event of
|
|
25865
26228
|
* this `sap.suite.ui.commons.CalculationBuilder`.
|
|
@@ -25905,6 +26268,20 @@ declare namespace sap {
|
|
|
25905
26268
|
*/
|
|
25906
26269
|
mParameters?: object
|
|
25907
26270
|
): this;
|
|
26271
|
+
/**
|
|
26272
|
+
* Fires event {@link #event:focusChange focusChange} to attached listeners.
|
|
26273
|
+
*
|
|
26274
|
+
* @since 1.146
|
|
26275
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
26276
|
+
*
|
|
26277
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
26278
|
+
*/
|
|
26279
|
+
fireFocusChange(
|
|
26280
|
+
/**
|
|
26281
|
+
* Parameters to pass along with the event
|
|
26282
|
+
*/
|
|
26283
|
+
mParameters?: sap.suite.ui.commons.CalculationBuilder$FocusChangeEventParameters
|
|
26284
|
+
): this;
|
|
25908
26285
|
/**
|
|
25909
26286
|
* Fires event {@link #event:validateFunction validateFunction} to attached listeners.
|
|
25910
26287
|
*
|
|
@@ -29078,10 +29455,7 @@ declare namespace sap {
|
|
|
29078
29455
|
sUnit?: string
|
|
29079
29456
|
): this;
|
|
29080
29457
|
}
|
|
29081
|
-
|
|
29082
|
-
* @since 1.101
|
|
29083
|
-
* @experimental
|
|
29084
|
-
*/
|
|
29458
|
+
|
|
29085
29459
|
class CloudFilePicker extends sap.m.Dialog {
|
|
29086
29460
|
/**
|
|
29087
29461
|
* Constructor of the CloudFilePicker
|
|
@@ -51434,6 +51808,14 @@ declare namespace sap {
|
|
|
51434
51808
|
CalculationBuilder
|
|
51435
51809
|
>;
|
|
51436
51810
|
|
|
51811
|
+
/**
|
|
51812
|
+
* Event object of the CalculationBuilder#focusChange event.
|
|
51813
|
+
*/
|
|
51814
|
+
type CalculationBuilder$FocusChangeEvent = sap.ui.base.Event<
|
|
51815
|
+
CalculationBuilder$FocusChangeEventParameters,
|
|
51816
|
+
CalculationBuilder
|
|
51817
|
+
>;
|
|
51818
|
+
|
|
51437
51819
|
/**
|
|
51438
51820
|
* Event object of the CalculationBuilder#validateFunction event.
|
|
51439
51821
|
*/
|