@sapui5/sap.suite.ui.commons 1.120.16 → 1.120.17
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/src/sap/suite/ui/commons/.library +1 -1
- package/src/sap/suite/ui/commons/AriaProperties.js +1 -1
- package/src/sap/suite/ui/commons/CalculationBuilder.js +1 -1
- package/src/sap/suite/ui/commons/CalculationBuilderExpression.js +1 -1
- package/src/sap/suite/ui/commons/CalculationBuilderFunction.js +1 -1
- package/src/sap/suite/ui/commons/CalculationBuilderGroup.js +1 -1
- package/src/sap/suite/ui/commons/CalculationBuilderItem.js +1 -1
- package/src/sap/suite/ui/commons/CalculationBuilderValidationResult.js +1 -1
- package/src/sap/suite/ui/commons/CalculationBuilderVariable.js +1 -1
- package/src/sap/suite/ui/commons/CloudFilePicker.js +1 -1
- package/src/sap/suite/ui/commons/MicroProcessFlow.js +1 -1
- package/src/sap/suite/ui/commons/MicroProcessFlowItem.js +1 -1
- package/src/sap/suite/ui/commons/ProcessFlowRenderer.js +21 -15
- package/src/sap/suite/ui/commons/flexibility/changeHandler/PropertyChangeMapper.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/CropCustomShapeHistoryItem.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/CropEllipseHistoryItem.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/CropRectangleHistoryItem.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/CustomSizeItem.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/FilterHistoryItem.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/FlipHistoryItem.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/HistoryItem.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/ImageEditor.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/ImageEditorContainer.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/ImageEditorResponsiveContainer.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/ResizeHistoryItem.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/RotateHistoryItem.js +1 -1
- package/src/sap/suite/ui/commons/library.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/Circle.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/CustomShape.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/DiscreteThreshold.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/FillingOption.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/LibraryShape.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/Path.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/PropertyThreshold.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/Rectangle.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/Shape.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/ShapeGroup.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/SimpleShape.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/StatusIndicator.js +1 -1
- package/src/sap/suite/ui/commons/taccount/TAccount.js +1 -1
- package/src/sap/suite/ui/commons/taccount/TAccountGroup.js +1 -1
- package/src/sap/suite/ui/commons/taccount/TAccountItem.js +1 -1
- package/src/sap/suite/ui/commons/taccount/TAccountItemProperty.js +1 -1
- package/src/sap/suite/ui/commons/taccount/TAccountPanel.js +1 -1
package/package.json
CHANGED
|
@@ -189,6 +189,9 @@ sap.ui.define([
|
|
|
189
189
|
oRm.attr("tabindex", 0);
|
|
190
190
|
}
|
|
191
191
|
oRm.openEnd();
|
|
192
|
+
oRm.openStart("span").class("sapUiPseudoInvisibleText").openEnd();
|
|
193
|
+
oRm.text(this._oResBundle.getText("PF_ARIA_PROCESS_FLOW_EMPTY_NODE_DESC"));
|
|
194
|
+
oRm.close("span");
|
|
192
195
|
isTDTagOpen = false;
|
|
193
196
|
}
|
|
194
197
|
connection.setZoomLevel(oControl.getZoomLevel());
|
|
@@ -324,18 +327,21 @@ sap.ui.define([
|
|
|
324
327
|
if (iMatrixDim1 > 0) {
|
|
325
328
|
oRm.openStart("tr").openEnd();
|
|
326
329
|
oRm.openStart("td");
|
|
327
|
-
oRm.attr("aria-label", this._oResBundle.getText("PF_ARIA_PROCESS_FLOW_EMPTY_NODE_DESC"));
|
|
328
330
|
oRm.attr("colspan", (laneNumber * 5).toString());
|
|
329
331
|
oRm.openEnd();
|
|
330
|
-
oRm.openStart("
|
|
332
|
+
oRm.openStart("span").class("sapUiPseudoInvisibleText").openEnd();
|
|
333
|
+
oRm.text(this._oResBundle.getText("PF_ARIA_PROCESS_FLOW_EMPTY_NODE_DESC"));
|
|
334
|
+
oRm.close("span");
|
|
331
335
|
oRm.close("td");
|
|
332
336
|
oRm.close("tr");
|
|
333
337
|
}
|
|
334
338
|
i = 0;
|
|
335
339
|
while (i < iMatrixDim1) {
|
|
336
340
|
oRm.openStart("tr").openEnd();
|
|
337
|
-
oRm.openStart("td").
|
|
338
|
-
oRm.openStart("
|
|
341
|
+
oRm.openStart("td").openEnd();
|
|
342
|
+
oRm.openStart("span").class("sapUiPseudoInvisibleText").openEnd();
|
|
343
|
+
oRm.text(this._oResBundle.getText("PF_ARIA_PROCESS_FLOW_EMPTY_NODE_DESC"));
|
|
344
|
+
oRm.close("span");
|
|
339
345
|
oRm.close("td");
|
|
340
346
|
|
|
341
347
|
iMatrixDim2 = calculatedMatrix[i].length;
|
|
@@ -344,10 +350,8 @@ sap.ui.define([
|
|
|
344
350
|
while (j < iMatrixDim2 - 1) {
|
|
345
351
|
oNode = calculatedMatrix[i][j];
|
|
346
352
|
var isTDTagOpen = true; //Indicates if td element tag is open.
|
|
347
|
-
var noColSpan;
|
|
348
353
|
if ((j == 0) || (j % 2)) {
|
|
349
354
|
oRm.openStart("td");
|
|
350
|
-
noColSpan = true;
|
|
351
355
|
} else {
|
|
352
356
|
oRm.openStart("td").attr("colspan", "4");
|
|
353
357
|
//Needed by Chrome (cr) in order to render the connections correctly on the
|
|
@@ -365,27 +369,29 @@ sap.ui.define([
|
|
|
365
369
|
row: i,
|
|
366
370
|
column: j
|
|
367
371
|
}, oControl, bSelectedOrHighlightedWasFound);
|
|
368
|
-
oRm.attr("aria-label", this._oResBundle.getText("PF_ARIA_PROCESS_FLOW_EMPTY_NODE_DESC"));
|
|
369
372
|
isTDTagOpen = ProcessFlowRenderer._renderConnection(oRm, oControl, oNode, isTDTagOpen);
|
|
370
373
|
}
|
|
371
374
|
}
|
|
372
|
-
else if (noColSpan) {
|
|
373
|
-
oRm.attr("aria-label", this._oResBundle.getText("PF_ARIA_PROCESS_FLOW_EMPTY_NODE_DESC"));
|
|
374
|
-
}
|
|
375
375
|
if (isTDTagOpen) {
|
|
376
376
|
oRm.openEnd();
|
|
377
|
-
oRm.openStart("
|
|
377
|
+
oRm.openStart("span").class("sapUiPseudoInvisibleText").openEnd();
|
|
378
|
+
oRm.text(this._oResBundle.getText("PF_ARIA_PROCESS_FLOW_EMPTY_NODE_DESC"));
|
|
379
|
+
oRm.close("span");
|
|
378
380
|
}
|
|
379
381
|
oRm.close("td");
|
|
380
382
|
j++;
|
|
381
383
|
}
|
|
382
384
|
|
|
383
385
|
//The last space after a node + space under the end symbol.
|
|
384
|
-
oRm.openStart("td").
|
|
385
|
-
oRm.openStart("
|
|
386
|
+
oRm.openStart("td").openEnd();
|
|
387
|
+
oRm.openStart("span").class("sapUiPseudoInvisibleText").openEnd();
|
|
388
|
+
oRm.text(this._oResBundle.getText("PF_ARIA_PROCESS_FLOW_EMPTY_NODE_DESC"));
|
|
389
|
+
oRm.close("span");
|
|
386
390
|
oRm.close("td");
|
|
387
|
-
oRm.openStart("td").
|
|
388
|
-
oRm.openStart("
|
|
391
|
+
oRm.openStart("td").openEnd();
|
|
392
|
+
oRm.openStart("span").class("sapUiPseudoInvisibleText").openEnd();
|
|
393
|
+
oRm.text(this._oResBundle.getText("PF_ARIA_PROCESS_FLOW_EMPTY_NODE_DESC"));
|
|
394
|
+
oRm.close("span");
|
|
389
395
|
oRm.close("td");
|
|
390
396
|
oRm.close("tr");
|
|
391
397
|
i++;
|