@sapui5/sap.suite.ui.commons 1.150.0 → 1.151.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/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/TimelineItem.js +2 -3
- package/src/sap/suite/ui/commons/collaboration/UniversalCollaborationBar.js +3 -2
- 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_de.properties +2 -2
- package/src/sap/suite/ui/commons/messagebundle_en_US_saptrc.properties +616 -537
- package/src/sap/suite/ui/commons/messagebundle_pl.properties +1 -1
- package/src/sap/suite/ui/commons/networkgraph/Graph.js +11 -4
- package/src/sap/suite/ui/commons/networkgraph/GraphRenderer.js +1 -1
- package/src/sap/suite/ui/commons/networkgraph/KeyboardNavigator.js +2 -0
- package/src/sap/suite/ui/commons/networkgraph/Line.js +13 -0
- package/src/sap/suite/ui/commons/networkgraph/util/ConnectionPathUtils.js +315 -69
- package/src/sap/suite/ui/commons/networkgraph/util/DependencyLayoutHelper.js +21 -6
- 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/src/sap/suite/ui/commons/themes/base/MicroProcessFlow.less +2 -1
package/package.json
CHANGED
|
@@ -914,9 +914,8 @@ sap.ui.define([
|
|
|
914
914
|
for (var i = 0; i < this._actionList.length; i++) {
|
|
915
915
|
var key = this._actionList[i].getKey();
|
|
916
916
|
var value = this._actionList[i].getValue();
|
|
917
|
-
var actionLink = new Link(
|
|
918
|
-
|
|
919
|
-
});
|
|
917
|
+
var actionLink = new Link();
|
|
918
|
+
actionLink.setText(value);
|
|
920
919
|
actionLink.addStyleClass("sapSuiteUiCommonsTimelineItemActionLink");
|
|
921
920
|
actionLink.attachPress({"value": value, "key": key}, fnFireCustomActionClicked);
|
|
922
921
|
|
|
@@ -38,9 +38,10 @@ sap.ui.define([
|
|
|
38
38
|
"shareToCollaborationManagerSelected": {}
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
|
+
renderer: null, // no renderer
|
|
41
42
|
|
|
42
43
|
init: function() {
|
|
43
|
-
|
|
44
|
+
Menu.prototype.init.apply(this, arguments);
|
|
44
45
|
this._mActionHandlers = {
|
|
45
46
|
[COLLABORATION_MAIL]: (...args) => {
|
|
46
47
|
if (this.hasListeners("shareToEmailSelected")) {
|
|
@@ -74,7 +75,7 @@ sap.ui.define([
|
|
|
74
75
|
if (!this.getItems().length) {
|
|
75
76
|
this._renderMenuItems();
|
|
76
77
|
}
|
|
77
|
-
return
|
|
78
|
+
return Menu.prototype.openBy.apply(this, arguments);
|
|
78
79
|
},
|
|
79
80
|
|
|
80
81
|
/**
|
|
@@ -198,7 +198,7 @@ sap.ui.define([
|
|
|
198
198
|
"sap.suite.ui.commons.TargetFilterMeasureColumn",
|
|
199
199
|
"sap.suite.ui.commons.AriaProperties"
|
|
200
200
|
],
|
|
201
|
-
version: "1.
|
|
201
|
+
version: "1.151.0",
|
|
202
202
|
extensions: {
|
|
203
203
|
flChangeHandlers: {
|
|
204
204
|
"sap.suite.ui.commons.Timeline": "sap/suite/ui/commons/flexibility/Timeline"
|
|
@@ -136,7 +136,7 @@ TIMELINE_ADD_POST=SAP Jam Post hinzuf\u00FCgen
|
|
|
136
136
|
TIMELINE_SHOW_MORE=Mehr anzeigen
|
|
137
137
|
TIMELINE_TEXT_SHOW_MORE=weitere
|
|
138
138
|
TIMELINE_TEXT_SHOW_LESS=weniger
|
|
139
|
-
TIMELINE_LINK_ACTIVATE_INSTRUCTION=
|
|
139
|
+
TIMELINE_LINK_ACTIVATE_INSTRUCTION=Link; Aktivieren mit Enter.
|
|
140
140
|
PF_ERROR_INPUT_DATA=Fehler beim Laden der Daten
|
|
141
141
|
TIMELINE_GROUP_TEXT=Posts von
|
|
142
142
|
TIMELINE_CUSTOM_RANGE=Eigener Bereich
|
|
@@ -596,7 +596,7 @@ POPOVER_CANCEL=Abbrechen
|
|
|
596
596
|
POPOVER_CONTACT_COPY_EMAIL=Kopieren
|
|
597
597
|
POPOVER_CONTACT_COPY_EMAIL_SUCCESS=E-Mail in Zwischenablage kopiert
|
|
598
598
|
POPOVER_CONTACT_COPY_EMAIL_ERROR=E-Mail konnte nicht in die Zwischenablage kopiert werden
|
|
599
|
-
POPOVER_CONTACT_SHARE_TEAMS=
|
|
599
|
+
POPOVER_CONTACT_SHARE_TEAMS=In MS Teams teilen
|
|
600
600
|
|
|
601
601
|
POPOVER_CONTACT_DETAILS=Kontaktdetails
|
|
602
602
|
|