@sapui5/sap.suite.ui.commons 1.120.12 → 1.120.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.
- 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/ProcessFlowNode.js +3 -3
- package/src/sap/suite/ui/commons/ProcessFlowRenderer.js +19 -14
- 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/messagebundle.properties +2 -0
- 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
|
@@ -972,10 +972,10 @@ sap.ui.define([
|
|
|
972
972
|
|
|
973
973
|
var sAggregatedText = "";
|
|
974
974
|
if (this.getType() === library.ProcessFlowNodeType.Aggregated) {
|
|
975
|
-
sAggregatedText = this._oResBundle.getText(
|
|
975
|
+
sAggregatedText = this._oResBundle.getText('PF_ARIA_TYPE');
|
|
976
976
|
}
|
|
977
|
-
|
|
978
|
-
return this._oResBundle.getText('PF_ARIA_NODE', [sTitleText, sStateValueText, sStateText, sLaneText, sContentText, iParentsCount, iChildrenCount, sAggregatedText]);
|
|
977
|
+
var sDefaultActivateNode = this._oResBundle.getText("PF_DEFAULT_NODE_ACTIVATE");
|
|
978
|
+
return this._oResBundle.getText('PF_ARIA_NODE', [sTitleText, sStateValueText, sStateText, sLaneText, sContentText, iParentsCount, iChildrenCount, sDefaultActivateNode, sAggregatedText]);
|
|
979
979
|
};
|
|
980
980
|
|
|
981
981
|
/**
|
|
@@ -222,25 +222,25 @@ sap.ui.define([
|
|
|
222
222
|
oRm.openEnd();
|
|
223
223
|
|
|
224
224
|
//Reserves space width for start symbol.
|
|
225
|
-
oRm.openStart("th").openEnd().close("th");
|
|
225
|
+
oRm.openStart("th").attr("aria-hidden", "true").openEnd().close("th");
|
|
226
226
|
iLanePosition = 0;
|
|
227
227
|
while (iLanePosition < laneNumber - 1) {
|
|
228
228
|
//Reserves space width for other parts to be displayed.
|
|
229
|
-
oRm.openStart("th").openEnd().close("th");
|
|
230
|
-
oRm.openStart("th").openEnd().close("th");
|
|
231
|
-
oRm.openStart("th").openEnd().close("th");
|
|
232
|
-
oRm.openStart("th").openEnd().close("th");
|
|
233
|
-
oRm.openStart("th").openEnd().close("th");
|
|
229
|
+
oRm.openStart("th").attr("aria-hidden", "true").openEnd().close("th");
|
|
230
|
+
oRm.openStart("th").attr("aria-hidden", "true").openEnd().close("th");
|
|
231
|
+
oRm.openStart("th").attr("aria-hidden", "true").openEnd().close("th");
|
|
232
|
+
oRm.openStart("th").attr("aria-hidden", "true").openEnd().close("th");
|
|
233
|
+
oRm.openStart("th").attr("aria-hidden", "true").openEnd().close("th");
|
|
234
234
|
iLanePosition++;
|
|
235
235
|
}
|
|
236
236
|
|
|
237
237
|
//Space for the last node.
|
|
238
|
-
oRm.openStart("th").openEnd().close("th");
|
|
239
|
-
oRm.openStart("th").openEnd().close("th");
|
|
240
|
-
oRm.openStart("th").openEnd().close("th");
|
|
238
|
+
oRm.openStart("th").attr("aria-hidden", "true").openEnd().close("th");
|
|
239
|
+
oRm.openStart("th").attr("aria-hidden", "true").openEnd().close("th");
|
|
240
|
+
oRm.openStart("th").attr("aria-hidden", "true").openEnd().close("th");
|
|
241
241
|
|
|
242
242
|
//Reserves space width for end symbol.
|
|
243
|
-
oRm.openStart("th").openEnd().close("th");
|
|
243
|
+
oRm.openStart("th").attr("aria-hidden", "true").openEnd().close("th");
|
|
244
244
|
oRm.close("tr");
|
|
245
245
|
|
|
246
246
|
oRm.openStart("tr");
|
|
@@ -320,7 +320,7 @@ sap.ui.define([
|
|
|
320
320
|
if (iMatrixDim1 > 0) {
|
|
321
321
|
oRm.openStart("tr").openEnd();
|
|
322
322
|
oRm.openStart("td");
|
|
323
|
-
oRm.attr("colspan", (laneNumber * 5).toString());
|
|
323
|
+
oRm.attr("colspan", (laneNumber * 5).toString()).attr("aria-hidden", "true");
|
|
324
324
|
oRm.openEnd();
|
|
325
325
|
oRm.close("td");
|
|
326
326
|
oRm.close("tr");
|
|
@@ -328,7 +328,7 @@ sap.ui.define([
|
|
|
328
328
|
i = 0;
|
|
329
329
|
while (i < iMatrixDim1) {
|
|
330
330
|
oRm.openStart("tr").openEnd();
|
|
331
|
-
oRm.openStart("td").openEnd().close("td");
|
|
331
|
+
oRm.openStart("td").attr("aria-hidden", "true").openEnd().close("td");
|
|
332
332
|
|
|
333
333
|
iMatrixDim2 = calculatedMatrix[i].length;
|
|
334
334
|
j = 0;
|
|
@@ -336,8 +336,10 @@ sap.ui.define([
|
|
|
336
336
|
while (j < iMatrixDim2 - 1) {
|
|
337
337
|
oNode = calculatedMatrix[i][j];
|
|
338
338
|
var isTDTagOpen = true; //Indicates if td element tag is open.
|
|
339
|
+
var noColSpan;
|
|
339
340
|
if ((j == 0) || (j % 2)) {
|
|
340
341
|
oRm.openStart("td");
|
|
342
|
+
noColSpan = true;
|
|
341
343
|
} else {
|
|
342
344
|
oRm.openStart("td").attr("colspan", "4");
|
|
343
345
|
//Needed by Chrome (cr) in order to render the connections correctly on the
|
|
@@ -358,6 +360,9 @@ sap.ui.define([
|
|
|
358
360
|
isTDTagOpen = ProcessFlowRenderer._renderConnection(oRm, oControl, oNode, isTDTagOpen);
|
|
359
361
|
}
|
|
360
362
|
}
|
|
363
|
+
else if (noColSpan) {
|
|
364
|
+
oRm.attr("aria-hidden", "true");
|
|
365
|
+
}
|
|
361
366
|
if (isTDTagOpen) {
|
|
362
367
|
oRm.openEnd();
|
|
363
368
|
}
|
|
@@ -366,8 +371,8 @@ sap.ui.define([
|
|
|
366
371
|
}
|
|
367
372
|
|
|
368
373
|
//The last space after a node + space under the end symbol.
|
|
369
|
-
oRm.openStart("td").openEnd().close("td");
|
|
370
|
-
oRm.openStart("td").openEnd().close("td");
|
|
374
|
+
oRm.openStart("td").attr("aria-hidden", "true").openEnd().close("td");
|
|
375
|
+
oRm.openStart("td").attr("aria-hidden", "true").openEnd().close("td");
|
|
371
376
|
oRm.close("tr");
|
|
372
377
|
i++;
|
|
373
378
|
}
|
|
@@ -347,6 +347,8 @@ PF_CONNECTION_VERTICAL_LINE=vertical line
|
|
|
347
347
|
PF_CONNECTION_BRANCH=branch
|
|
348
348
|
#XACT: Text for 'undefined' values in Aria
|
|
349
349
|
PF_VALUE_UNDEFINED=Undefined
|
|
350
|
+
#XACT: Text for default node activate
|
|
351
|
+
PF_DEFAULT_NODE_ACTIVATE=To Activate Press Enter
|
|
350
352
|
#XACT: Text for status for header lane
|
|
351
353
|
PF_ARIA_STATUS=the status is
|
|
352
354
|
#XACT: Text for positive status value for header lane
|