@sapui5/sap.suite.ui.commons 1.139.0 → 1.139.1
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/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/networkgraph/Node.js +16 -9
- 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
|
@@ -195,7 +195,7 @@ sap.ui.define([
|
|
|
195
195
|
"sap.suite.ui.commons.TargetFilterMeasureColumn",
|
|
196
196
|
"sap.suite.ui.commons.AriaProperties"
|
|
197
197
|
],
|
|
198
|
-
version: "1.139.
|
|
198
|
+
version: "1.139.1",
|
|
199
199
|
extensions: {
|
|
200
200
|
flChangeHandlers: {
|
|
201
201
|
"sap.suite.ui.commons.Timeline": "sap/suite/ui/commons/flexibility/Timeline"
|
|
@@ -493,6 +493,8 @@ NETWORK_GRAPH_WRONGDATA=Network graph data is not consistent. Check the console
|
|
|
493
493
|
NETWORK_GRAPH_COLLAPSED=Collapsed
|
|
494
494
|
#XACT: Title for expanded icon.
|
|
495
495
|
NETWORK_GRAPH_EXPANDED=Expanded
|
|
496
|
+
#XACT: Title for collapsed icon.
|
|
497
|
+
NETWORK_GRAPH_PARTIAL=Partially Expanded
|
|
496
498
|
#XACT: No Data title
|
|
497
499
|
NETWORK_GRAPH_NO_DATA=No data found.
|
|
498
500
|
#XACT: Title for group details
|
|
@@ -615,9 +615,7 @@ sap.ui.define([
|
|
|
615
615
|
"class": "sapSuiteUiCommonsNetworkNodeActionCollapseIcon",
|
|
616
616
|
icon: this._getExpandIcon(true),
|
|
617
617
|
enable: this._hasVisibleChildren(),
|
|
618
|
-
title: this.
|
|
619
|
-
oResourceBundle.getText("NETWORK_GRAPH_EXPANDED") :
|
|
620
|
-
oResourceBundle.getText("NETWORK_GRAPH_COLLAPSED"),
|
|
618
|
+
title: this._getExpandStateTitle(),
|
|
621
619
|
id: this._getDomId("actionCollapse"),
|
|
622
620
|
click: this._expandClick.bind(this)
|
|
623
621
|
}, $right);
|
|
@@ -2041,6 +2039,19 @@ sap.ui.define([
|
|
|
2041
2039
|
}
|
|
2042
2040
|
};
|
|
2043
2041
|
|
|
2042
|
+
Node.prototype._getExpandStateTitle = function () {
|
|
2043
|
+
switch (this._oExpandState) {
|
|
2044
|
+
case ExpandState.PARTIAL:
|
|
2045
|
+
return oResourceBundle.getText("NETWORK_GRAPH_PARTIAL");
|
|
2046
|
+
case ExpandState.EXPANDED:
|
|
2047
|
+
return oResourceBundle.getText("NETWORK_GRAPH_EXPANDED");
|
|
2048
|
+
case ExpandState.COLLAPSED:
|
|
2049
|
+
return oResourceBundle.getText("NETWORK_GRAPH_COLLAPSED");
|
|
2050
|
+
default:
|
|
2051
|
+
return oResourceBundle.getText("NETWORK_GRAPH_EXPANDED");
|
|
2052
|
+
}
|
|
2053
|
+
};
|
|
2054
|
+
|
|
2044
2055
|
Node.prototype._createLineText = function(sText, iWidth, oText, iMaxLines) {
|
|
2045
2056
|
var aLines = [[]],
|
|
2046
2057
|
iLine = 0, sRest,
|
|
@@ -3158,9 +3169,7 @@ sap.ui.define([
|
|
|
3158
3169
|
icon: this._getExpandIcon(true),
|
|
3159
3170
|
"class": "sapSuiteUiCommonsNetworkNodeActionCollapseIcon",
|
|
3160
3171
|
enable: this._hasVisibleChildren(),
|
|
3161
|
-
title: this.
|
|
3162
|
-
oResourceBundle.getText("NETWORK_GRAPH_EXPANDED") :
|
|
3163
|
-
oResourceBundle.getText("NETWORK_GRAPH_COLLAPSED"),
|
|
3172
|
+
title: this._getExpandStateTitle(),
|
|
3164
3173
|
id: this._getDomId("actionCollapse"),
|
|
3165
3174
|
click: this._expandClick.bind(this)
|
|
3166
3175
|
});
|
|
@@ -3413,9 +3422,7 @@ sap.ui.define([
|
|
|
3413
3422
|
if ($icon[0]) {
|
|
3414
3423
|
$icon[0].textContent = this._getExpandIcon();
|
|
3415
3424
|
if ($iconParent && $iconParent.title) {
|
|
3416
|
-
$iconParent.title = this.
|
|
3417
|
-
oResourceBundle.getText("NETWORK_GRAPH_EXPANDED") :
|
|
3418
|
-
oResourceBundle.getText("NETWORK_GRAPH_COLLAPSED")
|
|
3425
|
+
$iconParent.title = this._getExpandStateTitle();
|
|
3419
3426
|
}
|
|
3420
3427
|
}
|
|
3421
3428
|
|