@sapui5/sap.suite.ui.commons 1.136.12 → 1.136.13

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.
Files changed (68) hide show
  1. package/package.json +1 -1
  2. package/src/sap/suite/ui/commons/.library +1 -1
  3. package/src/sap/suite/ui/commons/AriaProperties.js +1 -1
  4. package/src/sap/suite/ui/commons/CalculationBuilder.js +1 -1
  5. package/src/sap/suite/ui/commons/CalculationBuilderExpression.js +1 -1
  6. package/src/sap/suite/ui/commons/CalculationBuilderFunction.js +1 -1
  7. package/src/sap/suite/ui/commons/CalculationBuilderGroup.js +1 -1
  8. package/src/sap/suite/ui/commons/CalculationBuilderItem.js +1 -1
  9. package/src/sap/suite/ui/commons/CalculationBuilderValidationResult.js +1 -1
  10. package/src/sap/suite/ui/commons/CalculationBuilderVariable.js +1 -1
  11. package/src/sap/suite/ui/commons/CloudFilePicker.js +1 -1
  12. package/src/sap/suite/ui/commons/MicroProcessFlow.js +1 -1
  13. package/src/sap/suite/ui/commons/MicroProcessFlowItem.js +1 -1
  14. package/src/sap/suite/ui/commons/TimelineRenderManager.js +8 -4
  15. package/src/sap/suite/ui/commons/flexibility/changeHandler/PropertyChangeMapper.js +1 -1
  16. package/src/sap/suite/ui/commons/imageeditor/CropCustomShapeHistoryItem.js +1 -1
  17. package/src/sap/suite/ui/commons/imageeditor/CropEllipseHistoryItem.js +1 -1
  18. package/src/sap/suite/ui/commons/imageeditor/CropRectangleHistoryItem.js +1 -1
  19. package/src/sap/suite/ui/commons/imageeditor/CustomSizeItem.js +1 -1
  20. package/src/sap/suite/ui/commons/imageeditor/FilterHistoryItem.js +1 -1
  21. package/src/sap/suite/ui/commons/imageeditor/FlipHistoryItem.js +1 -1
  22. package/src/sap/suite/ui/commons/imageeditor/HistoryItem.js +1 -1
  23. package/src/sap/suite/ui/commons/imageeditor/ImageEditor.js +1 -1
  24. package/src/sap/suite/ui/commons/imageeditor/ImageEditorContainer.js +1 -1
  25. package/src/sap/suite/ui/commons/imageeditor/ImageEditorResponsiveContainer.js +1 -1
  26. package/src/sap/suite/ui/commons/imageeditor/ResizeHistoryItem.js +1 -1
  27. package/src/sap/suite/ui/commons/imageeditor/RotateHistoryItem.js +1 -1
  28. package/src/sap/suite/ui/commons/library.js +100 -3
  29. package/src/sap/suite/ui/commons/messagebundle.properties +73 -12
  30. package/src/sap/suite/ui/commons/messagebundle_en_US_saprigi.properties +39 -5
  31. package/src/sap/suite/ui/commons/messagebundle_fr_CA.properties +1 -1
  32. package/src/sap/suite/ui/commons/networkgraph/ElementBase.js +19 -1
  33. package/src/sap/suite/ui/commons/networkgraph/Graph.js +554 -45
  34. package/src/sap/suite/ui/commons/networkgraph/GraphMap.js +25 -3
  35. package/src/sap/suite/ui/commons/networkgraph/GraphRenderer.js +19 -8
  36. package/src/sap/suite/ui/commons/networkgraph/KeyboardNavigator.js +367 -12
  37. package/src/sap/suite/ui/commons/networkgraph/Line.js +814 -22
  38. package/src/sap/suite/ui/commons/networkgraph/Node.js +573 -79
  39. package/src/sap/suite/ui/commons/networkgraph/Tooltip.js +4 -0
  40. package/src/sap/suite/ui/commons/networkgraph/Utils.js +249 -10
  41. package/src/sap/suite/ui/commons/networkgraph/layout/NoopLayout.js +77 -7
  42. package/src/sap/suite/ui/commons/networkgraph/util/ConnectionPathUtils.js +1174 -0
  43. package/src/sap/suite/ui/commons/networkgraph/util/CreateConnectionPopover.js +374 -0
  44. package/src/sap/suite/ui/commons/networkgraph/util/DependencyLayoutHelper.js +1017 -0
  45. package/src/sap/suite/ui/commons/networkgraph/util/DragDropManager.js +721 -0
  46. package/src/sap/suite/ui/commons/networkgraph/util/PortManager.js +582 -0
  47. package/src/sap/suite/ui/commons/statusindicator/Circle.js +1 -1
  48. package/src/sap/suite/ui/commons/statusindicator/CustomShape.js +1 -1
  49. package/src/sap/suite/ui/commons/statusindicator/DiscreteThreshold.js +1 -1
  50. package/src/sap/suite/ui/commons/statusindicator/FillingOption.js +1 -1
  51. package/src/sap/suite/ui/commons/statusindicator/LibraryShape.js +1 -1
  52. package/src/sap/suite/ui/commons/statusindicator/Path.js +1 -1
  53. package/src/sap/suite/ui/commons/statusindicator/PropertyThreshold.js +1 -1
  54. package/src/sap/suite/ui/commons/statusindicator/Rectangle.js +1 -1
  55. package/src/sap/suite/ui/commons/statusindicator/Shape.js +1 -1
  56. package/src/sap/suite/ui/commons/statusindicator/ShapeGroup.js +1 -1
  57. package/src/sap/suite/ui/commons/statusindicator/SimpleShape.js +1 -1
  58. package/src/sap/suite/ui/commons/statusindicator/StatusIndicator.js +1 -1
  59. package/src/sap/suite/ui/commons/taccount/TAccount.js +1 -1
  60. package/src/sap/suite/ui/commons/taccount/TAccountGroup.js +1 -1
  61. package/src/sap/suite/ui/commons/taccount/TAccountItem.js +1 -1
  62. package/src/sap/suite/ui/commons/taccount/TAccountItemProperty.js +1 -1
  63. package/src/sap/suite/ui/commons/taccount/TAccountPanel.js +1 -1
  64. package/src/sap/suite/ui/commons/themes/base/NetworkGraph.less +26 -13
  65. package/src/sap/suite/ui/commons/themes/base/NetworkGroup.less +4 -0
  66. package/src/sap/suite/ui/commons/themes/base/NetworkLine.less +58 -13
  67. package/src/sap/suite/ui/commons/themes/base/NetworkNode.less +251 -47
  68. package/src/sap/suite/ui/commons/themes/base/SemanticColorMixins.less +55 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/sap.suite.ui.commons",
3
- "version": "1.136.12",
3
+ "version": "1.136.13",
4
4
  "description": "SAPUI5 Library sap.suite.ui.commons",
5
5
  "homepage": "https://sap.github.io/ui5-tooling/pages/SAPUI5/",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -7,7 +7,7 @@
7
7
  SAP UI development toolkit for HTML5 (SAPUI5)
8
8
  (c) Copyright 2009-2015 SAP SE. All rights reserved
9
9
  </copyright>
10
- <version>1.136.12</version>
10
+ <version>1.136.13</version>
11
11
 
12
12
  <documentation>SAP UI library: sap.suite.ui.commons</documentation>
13
13
 
@@ -19,7 +19,7 @@ sap.ui.define([
19
19
  * @extends sap.ui.core.Element
20
20
  *
21
21
  * @author SAP SE
22
- * @version 1.136.12
22
+ * @version 1.136.13
23
23
  * @since 1.65.0
24
24
  *
25
25
  * @constructor
@@ -134,7 +134,7 @@ sap.ui.define([
134
134
  * @extends sap.ui.core.Control
135
135
  *
136
136
  * @author SAP SE
137
- * @version 1.136.12
137
+ * @version 1.136.13
138
138
  * @since 1.56.0
139
139
  *
140
140
  * @constructor
@@ -169,7 +169,7 @@ sap.ui.define([
169
169
  * @extends sap.ui.core.Control
170
170
  *
171
171
  * @author SAP SE
172
- * @version 1.136.12
172
+ * @version 1.136.13
173
173
  * @since 1.56.0
174
174
  *
175
175
  * @constructor
@@ -26,7 +26,7 @@ sap.ui.define([
26
26
  * @extends sap.ui.core.Control
27
27
  *
28
28
  * @author SAP SE
29
- * @version 1.136.12
29
+ * @version 1.136.13
30
30
  * @since 1.56.0
31
31
  *
32
32
  * @constructor
@@ -22,7 +22,7 @@ sap.ui.define([
22
22
  * @extends sap.ui.core.Control
23
23
  *
24
24
  * @author SAP SE
25
- * @version 1.136.12
25
+ * @version 1.136.13
26
26
  * @since 1.60.0
27
27
  *
28
28
  * @constructor
@@ -39,7 +39,7 @@ sap.ui.define([
39
39
  * @extends sap.ui.core.Control
40
40
  *
41
41
  * @author SAP SE
42
- * @version 1.136.12
42
+ * @version 1.136.13
43
43
  * @since 1.56.0
44
44
  *
45
45
  * @constructor
@@ -21,7 +21,7 @@ sap.ui.define([
21
21
  * @extends sap.ui.base.ManagedObject
22
22
  *
23
23
  * @author SAP SE
24
- * @version 1.136.12
24
+ * @version 1.136.13
25
25
  * @since 1.56.0
26
26
  *
27
27
  * @constructor
@@ -23,7 +23,7 @@ sap.ui.define([
23
23
  * @extends sap.ui.core.Control
24
24
  *
25
25
  * @author SAP SE
26
- * @version 1.136.12
26
+ * @version 1.136.13
27
27
  * @since 1.56.0
28
28
  *
29
29
  * @constructor
@@ -118,7 +118,7 @@ sap.ui.define([
118
118
  * @class
119
119
  * @public
120
120
  * @internal
121
- * @version 1.136.12
121
+ * @version 1.136.13
122
122
  */
123
123
  var CloudFilePicker = Dialog.extend("sap.suite.ui.commons.CloudFilePicker", {
124
124
  metadata: {
@@ -47,7 +47,7 @@ sap.ui.define([
47
47
  * @extends sap.ui.core.Control
48
48
  *
49
49
  * @author SAP SE
50
- * @version 1.136.12
50
+ * @version 1.136.13
51
51
  *
52
52
  * @constructor
53
53
  * @public
@@ -38,7 +38,7 @@ sap.ui.define([
38
38
  * @extends sap.ui.core.Control
39
39
  *
40
40
  * @author SAP SE
41
- * @version 1.136.12
41
+ * @version 1.136.13
42
42
  *
43
43
  * @constructor
44
44
  * @public
@@ -217,7 +217,7 @@ sap.ui.define([
217
217
  return sName + "-" + (this._bRtlMode ? "right" : "left");
218
218
  }.bind(this),
219
219
  // icon in middle line for corresponding timeline item
220
- $icon = jQuery("#" + oItem.id + "-line"),
220
+ $icon = jQuery(document.getElementById(oItem.id + "-line")),
221
221
  // left (right for RTL) for timeline icon
222
222
  iDistance = this._bRtlMode ? fnRight($icon) : $icon.position().left,
223
223
  // distance between left icon pos and start of timeline item
@@ -230,9 +230,13 @@ sap.ui.define([
230
230
  iMargin = iDistance - OFFSET - iLineMargin;
231
231
  } else {
232
232
  $prev = $item.prevAll(".sapSuiteUiCommonsTimelineItemLiWrapperV:visible:first");
233
- // otherwise count margin as previsous item left + width minus from group header left position + OFFSET
234
- iPrevPos = this._bRtlMode ? fnRight($prev) : ($prev.position().left + _getConvertedAttribute($prev, fnCreateAttribute("margin")));
235
- iMargin = (iDistance - OFFSET) - (iPrevPos + $prev.outerWidth());
233
+ if ($prev.length > 0) {
234
+ // otherwise count margin as previsous item left + width minus from group header left position + OFFSET
235
+ iPrevPos = this._bRtlMode ? fnRight($prev) : ($prev.position().left + _getConvertedAttribute($prev, fnCreateAttribute("margin")));
236
+ iMargin = (iDistance - OFFSET) - (iPrevPos + $prev.outerWidth());
237
+ } else {
238
+ iMargin = iDistance - OFFSET - iLineMargin;
239
+ }
236
240
  }
237
241
  $item.css(fnCreateAttribute("margin"), iMargin + "px");
238
242
  }.bind(this));
@@ -22,7 +22,7 @@ sap.ui.define([
22
22
  *
23
23
  * @constructor
24
24
  * @alias sap.suite.ui.commons.flexibility.changeHandler.PropertyChangeMapper
25
- * @version 1.136.12
25
+ * @version 1.136.13
26
26
  * @since 1.50
27
27
  * @private
28
28
  */
@@ -28,7 +28,7 @@ sap.ui.define([
28
28
  * @extends sap.suite.ui.commons.imageeditor.HistoryItem
29
29
  *
30
30
  * @author SAP SE
31
- * @version 1.136.12
31
+ * @version 1.136.13
32
32
  * @since 1.67.0
33
33
  *
34
34
  * @constructor
@@ -30,7 +30,7 @@ sap.ui.define([
30
30
  * @extends sap.suite.ui.commons.imageeditor.HistoryItem
31
31
  *
32
32
  * @author SAP SE
33
- * @version 1.136.12
33
+ * @version 1.136.13
34
34
  * @since 1.66.0
35
35
  *
36
36
  * @constructor
@@ -28,7 +28,7 @@ sap.ui.define([
28
28
  * @extends sap.suite.ui.commons.imageeditor.HistoryItem
29
29
  *
30
30
  * @author SAP SE
31
- * @version 1.136.12
31
+ * @version 1.136.13
32
32
  * @since 1.66.0
33
33
  *
34
34
  * @constructor
@@ -22,7 +22,7 @@ sap.ui.define([
22
22
  * @extends sap.ui.core.Element
23
23
  *
24
24
  * @author SAP SE
25
- * @version 1.136.12
25
+ * @version 1.136.13
26
26
  * @since 1.66.0
27
27
  *
28
28
  * @constructor
@@ -28,7 +28,7 @@ sap.ui.define([
28
28
  * @extends sap.suite.ui.commons.imageeditor.HistoryItem
29
29
  *
30
30
  * @author SAP SE
31
- * @version 1.136.12
31
+ * @version 1.136.13
32
32
  * @since 1.66.0
33
33
  *
34
34
  * @constructor
@@ -25,7 +25,7 @@ sap.ui.define([
25
25
  * @extends sap.suite.ui.commons.imageeditor.HistoryItem
26
26
  *
27
27
  * @author SAP SE
28
- * @version 1.136.12
28
+ * @version 1.136.13
29
29
  * @since 1.66.0
30
30
  *
31
31
  * @constructor
@@ -17,7 +17,7 @@ sap.ui.define([
17
17
  * @extends sap.ui.base.Object
18
18
  *
19
19
  * @author SAP SE
20
- * @version 1.136.12
20
+ * @version 1.136.13
21
21
  * @since 1.66.0
22
22
  *
23
23
  * @abstract
@@ -50,7 +50,7 @@ sap.ui.define([
50
50
  * @extends sap.ui.core.Control
51
51
  *
52
52
  * @author SAP SE
53
- * @version 1.136.12
53
+ * @version 1.136.13
54
54
  * @since 1.66.0
55
55
  *
56
56
  * @constructor
@@ -162,7 +162,7 @@ sap.ui.define([
162
162
  * @extends sap.ui.core.Control
163
163
  *
164
164
  * @author SAP SE
165
- * @version 1.136.12
165
+ * @version 1.136.13
166
166
  * @since 1.66.0
167
167
  *
168
168
  * @constructor
@@ -34,7 +34,7 @@ sap.ui.define([
34
34
  * @extends sap.suite.ui.commons.imageeditor.ImageEditorContainer
35
35
  *
36
36
  * @author SAP SE
37
- * @version 1.136.12
37
+ * @version 1.136.13
38
38
  * @since 1.68.0
39
39
  *
40
40
  * @constructor
@@ -29,7 +29,7 @@ sap.ui.define([
29
29
  * @extends sap.suite.ui.commons.imageeditor.HistoryItem
30
30
  *
31
31
  * @author SAP SE
32
- * @version 1.136.12
32
+ * @version 1.136.13
33
33
  * @since 1.66.0
34
34
  *
35
35
  * @constructor
@@ -23,7 +23,7 @@ sap.ui.define([
23
23
  * @extends sap.suite.ui.commons.imageeditor.HistoryItem
24
24
  *
25
25
  * @author SAP SE
26
- * @version 1.136.12
26
+ * @version 1.136.13
27
27
  * @since 1.66.0
28
28
  *
29
29
  * @constructor
@@ -58,6 +58,7 @@ sap.ui.define([
58
58
  "sap.suite.ui.commons.MicroProcessFlowRenderType",
59
59
  "sap.suite.ui.commons.networkgraph.ActionButtonPosition",
60
60
  "sap.suite.ui.commons.networkgraph.BackgroundColor",
61
+ "sap.suite.ui.commons.networkgraph.ComponentArrangement",
61
62
  "sap.suite.ui.commons.networkgraph.ElementStatus",
62
63
  "sap.suite.ui.commons.networkgraph.LayoutRenderType",
63
64
  "sap.suite.ui.commons.networkgraph.LineArrowOrientation",
@@ -95,7 +96,9 @@ sap.ui.define([
95
96
  "sap.suite.ui.commons.ImageEditorContainerButton",
96
97
  "sap.suite.ui.commons.FilePickerModes",
97
98
  "sap.suite.ui.commons.FilePickerType",
98
- "sap.suite.ui.commons.SelectionModes"
99
+ "sap.suite.ui.commons.SelectionModes",
100
+ "sap.suite.ui.commons.networkgraph.NodePorts",
101
+ "sap.suite.ui.commons.networkgraph.ConnectionType"
99
102
  ],
100
103
  interfaces: [],
101
104
  controls: [
@@ -195,7 +198,7 @@ sap.ui.define([
195
198
  "sap.suite.ui.commons.TargetFilterMeasureColumn",
196
199
  "sap.suite.ui.commons.AriaProperties"
197
200
  ],
198
- version: "1.136.12",
201
+ version: "1.136.13",
199
202
  extensions: {
200
203
  flChangeHandlers: {
201
204
  "sap.suite.ui.commons.Timeline": "sap/suite/ui/commons/flexibility/Timeline"
@@ -1204,6 +1207,71 @@ sap.ui.define([
1204
1207
 
1205
1208
  DataType.registerEnum("sap.suite.ui.commons.networkgraph.LineType", oSuiteCommonsLib.networkgraph.LineType);
1206
1209
 
1210
+ /**
1211
+ * Types of connection between source and target nodes in a network graph.
1212
+ * This setting is ignored if layout property is not set to noop.
1213
+ *
1214
+ * @enum {string}
1215
+ * @experimental Since 1.144 . This enumeration is experimental and might be modified or removed in future versions.
1216
+ */
1217
+ oSuiteCommonsLib.networkgraph.ConnectionType = {
1218
+
1219
+ /**
1220
+ * Connection from the left side of a source node to the left side of a target node.
1221
+ */
1222
+ LeftToLeft: "LeftToLeft",
1223
+
1224
+ /**
1225
+ * Connection from the left side of a source node to the right side of a target node.
1226
+ */
1227
+ LeftToRight: "LeftToRight",
1228
+
1229
+ /**
1230
+ * Connection from the right side of a source node to the left side of a target node.
1231
+ */
1232
+ RightToLeft: "RightToLeft",
1233
+
1234
+ /**
1235
+ * Connection from the right side of a source node to the right side of a target node.
1236
+ */
1237
+ RightToRight: "RightToRight"
1238
+ };
1239
+
1240
+ DataType.registerEnum("sap.suite.ui.commons.networkgraph.ConnectionType", oSuiteCommonsLib.networkgraph.ConnectionType);
1241
+
1242
+ /**
1243
+ * Defines port placements on a node.
1244
+ * This setting is ignored if the layout property is not set to noop.
1245
+ *
1246
+ * @enum {string}
1247
+ * @experimental Since 1.144 . This enumeration is experimental and might be modified or removed in future versions.
1248
+ */
1249
+ oSuiteCommonsLib.networkgraph.NodePorts = {
1250
+ /**
1251
+ * No ports are displayed on the node.
1252
+ */
1253
+ None: "None",
1254
+
1255
+ // /**
1256
+ // * Ports are displayed on all four sides of the node (top, right, bottom, left).
1257
+ // * @private
1258
+ // */
1259
+ // All: "All",
1260
+
1261
+ /**
1262
+ * Ports are displayed on the left and right sides of the node.
1263
+ */
1264
+ LeftRight: "LeftRight"
1265
+
1266
+ // /**
1267
+ // * Ports are displayed on the top and bottom sides of the node.
1268
+ // * @private
1269
+ // */
1270
+ // TopBottom: "TopBottom"
1271
+ };
1272
+
1273
+ DataType.registerEnum("sap.suite.ui.commons.networkgraph.NodePorts", oSuiteCommonsLib.networkgraph.NodePorts);
1274
+
1207
1275
  /**
1208
1276
  * Type of node placement for Layered Algorithm.
1209
1277
  * See {@link https://rtsys.informatik.uni-kiel.de/confluence/display/KIELER/KLay+Layered+Layout+Options#KLayLayeredLayoutOptions-nodePlacement}
@@ -1307,6 +1375,29 @@ sap.ui.define([
1307
1375
 
1308
1376
  DataType.registerEnum("sap.suite.ui.commons.networkgraph.Orientation", oSuiteCommonsLib.networkgraph.Orientation);
1309
1377
 
1378
+ /**
1379
+ * Defines the arrangement of components in the dependency layout.
1380
+ *
1381
+ * @enum {string}
1382
+ * @public
1383
+ * @since 1.136.19
1384
+ */
1385
+ oSuiteCommonsLib.networkgraph.ComponentArrangement = {
1386
+ /**
1387
+ * Components are arranged horizontally.
1388
+ * @public
1389
+ */
1390
+ Horizontal: "Horizontal",
1391
+
1392
+ /**
1393
+ * Components are arranged vertically.
1394
+ * @public
1395
+ */
1396
+ Vertical: "Vertical"
1397
+ };
1398
+
1399
+ DataType.registerEnum("sap.suite.ui.commons.networkgraph.ComponentArrangement", oSuiteCommonsLib.networkgraph.ComponentArrangement);
1400
+
1310
1401
  /**
1311
1402
  * Determines how nodes are rendered. For optimal performance and usability, it is recommended that you use HTML,
1312
1403
  * which allows you to avoid dealing with SVG limitations.
@@ -1390,7 +1481,13 @@ sap.ui.define([
1390
1481
  * The arrow is placed at the end of the last line segment.
1391
1482
  * @public
1392
1483
  */
1393
- End: "End"
1484
+ End: "End",
1485
+
1486
+ /**
1487
+ * The arrows are placed at both the beginning of the first line segment and the end of the last line segment. This options is valid only with layout type "noop" and optimizedlinealorithm is set.
1488
+ * @experimental Since 1.144 . This enumeration is experimental and might be modified or removed in future versions.
1489
+ */
1490
+ Both: "Both"
1394
1491
  };
1395
1492
 
1396
1493
  DataType.registerEnum("sap.suite.ui.commons.networkgraph.LineArrowPosition", oSuiteCommonsLib.networkgraph.LineArrowPosition);
@@ -449,8 +449,10 @@ NETWORK_GRAPH_EXPAND_COLLAPSE=Expand/Collapse
449
449
  NETWORK_GRAPH_NODE_DETAILS=Node details
450
450
  #XACT: Action button tooltip links
451
451
  NETWORK_GRAPH_NODE_LINKS=Node links
452
+ #XACT: Action button tooltip create connection
453
+ NETWORK_GRAPH_CREATE_CONNECTION=Create Connection
452
454
  #XACT: Action button group detail
453
- NETWORK_GRAPH_GROUP_DETAIL=Group detail
455
+ NETWORK_GRAPH_GROUP_DETAIL=Group Detail
454
456
  #XACT: Accessibility title for Network Graph
455
457
  NETWORK_GRAPH_ACCESSIBILITY_LABEL=Network Graph
456
458
  #XACT: Accessibility title for Network Graph SVG
@@ -459,16 +461,10 @@ NETWORK_GRAPH_SVG_ACCESSIBILITY_LABEL=Network Graph SVG
459
461
  NETWORK_GRAPH_OVERVIEW_SVG_ACCESSIBILITY_LABEL=Network Graph Overview SVG
460
462
  #XACT: Accessibility title for Network Graph Overview
461
463
  NETWORK_GRAPH_NAVIGATOR_SVG_ACCESSIBILITY_LABEL=Network Graph Navigator SVG
462
- #XACT: Accessibility role description for Network Graph
463
- NETWORK_GRAPH_ACCESSIBILITY_DESCRIPTION=Switch off reading mode to navigate within
464
- #XACT: Accessibility title for Network Graph content area
465
464
  NETWORK_GRAPH_ACCESSIBILITY_CONTENT=Network Graph content
466
- #XACT: Accessibility label for a line. {0} will be filled with title of the node the line start at and {1} will be filled with title of the node the line ends in.
467
- NETWORK_GRAPH_ACCESSIBILITY_LINE_LABEL=Line from {0} to {1}
468
- #XACT: Accessibility label for a line on toggling the state
469
- NETWORK_GRAPH_ACCESSIBILITY_TOGGLE_STATE=Press spacebar to toggle the state
465
+ NETWORK_GRAPH_ACCESSIBILITY_TOGGLE_STATE=To toggle the state, press space bar
470
466
  #XACT: Accessibility label for action button
471
- NETWORK_GRAPH_ACCESSIBILITY_ACTION_BUTTON=Action button
467
+ NETWORK_GRAPH_ACCESSIBILITY_ACTION_BUTTON=Action Button
472
468
  #XACT: Accessibility label for action button
473
469
  NETWORK_GRAPH_ACCESSIBILITY_ACTION_BUTTONS_LEFT=Left
474
470
  #XACT: Accessibility label for action button
@@ -497,6 +493,10 @@ NETWORK_GRAPH_EXPANDED=Expanded
497
493
  NETWORK_GRAPH_PARTIAL=Partially Expanded
498
494
  #XACT: No Data title
499
495
  NETWORK_GRAPH_NO_DATA=No data found.
496
+ #XACT: Empty state title when drag and drop is enabled
497
+ NETWORK_GRAPH_DND_EMPTY_TITLE=Let's build your plan
498
+ #XACT: Empty state description when drag and drop is enabled
499
+ NETWORK_GRAPH_DND_EMPTY_DESCRIPTION=Start by adding operations to your canvas
500
500
  #XACT: Title for group details
501
501
  NETWORK_GRAPH_GROUP_DETAILS=Group details
502
502
  #XACT: Title for selected Node
@@ -513,7 +513,69 @@ NETWORK_GRAPH_ERROR=Error
513
513
  NETWORK_GRAPH_INFORMATION=Information
514
514
  #XACT: Zoom Level accessibility label
515
515
  NETWORK_GRAPH_ZOOM_LEVEL=Zoom Level
516
-
516
+ #XACT: Loading message for Network Graph
517
+ NETWORK_GRAPH_OPENING_CANVAS=Opening canvas...
518
+ #XTIT: Connection Creation Popover Title
519
+ NETWORKGRAPH_CONNECTION_POPOVER_TITLE=Connection
520
+ #XLBL: Label for Connection Type dropdown
521
+ NETWORKGRAPH_CONNECTION_TYPE_LABEL=Connection Type:
522
+ #XLBL: Label for Destination node dropdown
523
+ NETWORKGRAPH_DESTINATION_LABEL=Destination:
524
+ #XBUT: OK button text
525
+ NETWORKGRAPH_OK_BUTTON=OK
526
+ #XBUT: Cancel button text
527
+ NETWORKGRAPH_CANCEL_BUTTON=Cancel
528
+ #XBUT: Cancel button text
529
+ NETWORKGRAPH_CREATE_BUTTON=Create
530
+ #XTXT: Connection type display texts
531
+ NETWORKGRAPH_CONNECTION_TYPE_LEFT_TO_LEFT=Start to Start
532
+ NETWORKGRAPH_CONNECTION_TYPE_LEFT_TO_RIGHT=Start to Finish
533
+ NETWORKGRAPH_CONNECTION_TYPE_RIGHT_TO_LEFT=Finish to Start
534
+ NETWORKGRAPH_CONNECTION_TYPE_RIGHT_TO_RIGHT=Finish to Finish
535
+ NETWORKGRAPH_CONNECTION_TYPE_TOP_TO_TOP=Top to Top
536
+ NETWORKGRAPH_CONNECTION_TYPE_TOP_TO_BOTTOM=Top to Bottom
537
+ NETWORKGRAPH_CONNECTION_TYPE_BOTTOM_TO_TOP=Bottom to Top
538
+ NETWORKGRAPH_CONNECTION_TYPE_BOTTOM_TO_BOTTOM=Bottom to Bottom
539
+ #XACT: Connection type Start to Start
540
+ NETWORKGRAPH_CONNECTION_TYPE_START_TO_START=Start to Start
541
+ #XACT: Connection type Start to Finish
542
+ NETWORKGRAPH_CONNECTION_TYPE_START_TO_FINISH=Start to Finish
543
+ #XACT: Connection type Finish to Start
544
+ NETWORKGRAPH_CONNECTION_TYPE_FINISH_TO_START=Finish to Start
545
+ #XACT: Connection type Finish to Finish
546
+ NETWORKGRAPH_CONNECTION_TYPE_FINISH_TO_FINISH=Finish to Finish
547
+ #XACT: Text for node attributes accessibility label
548
+ NETWORK_GRAPH_NODE_ATTRIBUTES=Attributes are
549
+ #XACT: Text for node status accessibility label
550
+ NETWORK_GRAPH_NODE_ACCESSIBILITY_STATUS=Status is
551
+ #XACT: Text for incoming connectors accessibility label (singular)
552
+ NETWORK_GRAPH_INCOMING_CONNECTOR_SINGULAR={0} incoming connector
553
+ #XACT: Text for incoming connectors accessibility label (plural)
554
+ NETWORK_GRAPH_INCOMING_CONNECTORS_PLURAL={0} incoming connectors
555
+ #XACT: Text for outgoing connectors accessibility label (singular)
556
+ NETWORK_GRAPH_OUTGOING_CONNECTOR_SINGULAR={0} outgoing connector
557
+ #XACT: Text for outgoing connectors accessibility label (plural)
558
+ NETWORK_GRAPH_OUTGOING_CONNECTORS_PLURAL={0} outgoing connectors
559
+ #XACT: Text for keyboard navigation to outgoing connector
560
+ NETWORK_GRAPH_NAVIGATION_TAB_TO_OUTGOING=To navigate to the outgoing connector, press Tab
561
+ #XACT: Text for keyboard navigation to incoming connector
562
+ NETWORK_GRAPH_NAVIGATION_SHIFT_TAB_TO_INCOMING=To navigate to the incoming connector, press Shift + Tab
563
+ #XACT: Text for keyboard navigation to target node from connector
564
+ NETWORK_GRAPH_LINE_NAVIGATION_TAB_TO_TARGET=To navigate to {0}, press Tab
565
+ #XACT: Text for keyboard navigation back to source node from connector
566
+ NETWORK_GRAPH_LINE_NAVIGATION_SHIFT_TAB_TO_SOURCE=To navigate back to {0}, press Shift + Tab
567
+ #XACT: Text for keyboard navigation between connectors
568
+ NETWORK_GRAPH_LINE_NAVIGATION_ARROW_KEYS=To navigate to other connectors from {0}, Use arrow keys
569
+ #XACT: Text hint to hear individual connector navigation options via Alt+
570
+ NETWORK_GRAPH_NAVIGATION_ALT_CONNECTORS=To hear possible connectors, press ALT +
571
+ #XACT: Text for individual connector announcement when Alt+ is pressed. {0}=type, {1}=direction, {2}=connection type, {3}=from node, {4}=to node, {5}=number
572
+ NETWORK_GRAPH_NAVIGATION_ALT_CONNECTOR_ANNOUNCE=Navigate to {0} connector on {1}, {2} connector connecting {3} to {4}, press ALT + {5}
573
+ #XACT: Text for line status accessibility label
574
+ NETWORK_GRAPH_LINE_ACCESSIBILITY_STATUS=Status is
575
+ #XACT: Text for line accessibility - connection going from source to destination
576
+ NETWORK_GRAPH_LINE_ACCESSIBILITY_CONNECTION_FROM_TO=Connection going from {0} to {1}
577
+ #XACT: Text for basic node description
578
+ NETWORK_GRAPH_NODE_DESCRIPTION=Description
517
579
 
518
580
  #XACT: Text for ARIA label for the whole status indicator
519
581
  STATUS_INDICATOR_ARIA_LABEL=Status Indicator
@@ -1061,5 +1123,4 @@ DONOTDISTURB=Do not disturb
1061
1123
  INACALL=In a call
1062
1124
  INAMEETING=In a meeting
1063
1125
  BERIGHTBACK=Be right back
1064
- OFFWORK=Offline
1065
-
1126
+ OFFWORK=Offline