@sapui5/sap.suite.ui.commons 1.120.1 → 1.120.2
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/CloudFileInfo.js +5 -1
- package/src/sap/suite/ui/commons/CloudFilePicker.js +5 -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 +9 -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
|
@@ -62,7 +62,11 @@ sap.ui.define([
|
|
|
62
62
|
/**
|
|
63
63
|
* Indicate if an action is a allowed or not
|
|
64
64
|
*/
|
|
65
|
-
isDocumentCreationAllowed : {type : "boolean", group : "Data"}
|
|
65
|
+
isDocumentCreationAllowed : {type : "boolean", group : "Data"},
|
|
66
|
+
/**
|
|
67
|
+
* Human Content type of the file share instance.
|
|
68
|
+
*/
|
|
69
|
+
fileShareItemHumanContentType: {type : "string", group : "Data"}
|
|
66
70
|
}
|
|
67
71
|
}
|
|
68
72
|
});
|
|
@@ -118,7 +118,7 @@ sap.ui.define([
|
|
|
118
118
|
* @class
|
|
119
119
|
* @public
|
|
120
120
|
* @internal
|
|
121
|
-
* @version 1.120.
|
|
121
|
+
* @version 1.120.2
|
|
122
122
|
*/
|
|
123
123
|
var CloudFilePicker = Dialog.extend("sap.suite.ui.commons.CloudFilePicker", {
|
|
124
124
|
metadata: {
|
|
@@ -1252,6 +1252,7 @@ sap.ui.define([
|
|
|
1252
1252
|
oCloudFileInfo.setFileShareItemContentType(oValue.FileShareItemContentType);
|
|
1253
1253
|
oCloudFileInfo.setFileShareItemContentSize(oValue.FileShareItemContentSize);
|
|
1254
1254
|
oCloudFileInfo.setFileShareItemContentLink(oValue.FileShareItemContentLink);
|
|
1255
|
+
oCloudFileInfo.setFileShareItemHumanContentType(oValue.FileShareItemHumanContentType);
|
|
1255
1256
|
return oCloudFileInfo;
|
|
1256
1257
|
};
|
|
1257
1258
|
|
|
@@ -1299,6 +1300,9 @@ sap.ui.define([
|
|
|
1299
1300
|
oCloudFileInfo.setIsDocumentCreationAllowed(
|
|
1300
1301
|
oContext.getObject("isDocumentCreationAllowed")
|
|
1301
1302
|
);
|
|
1303
|
+
oCloudFileInfo.setFileShareItemHumanContentType(
|
|
1304
|
+
oContext.getObject("FileShareItemHumanContentType")
|
|
1305
|
+
);
|
|
1302
1306
|
|
|
1303
1307
|
return oCloudFileInfo;
|
|
1304
1308
|
};
|
|
@@ -924,23 +924,23 @@ COLLABORATION_MSTEAMS_CARD_SINGLE=Card in Microsoft Teams
|
|
|
924
924
|
#XMSG: Save Card Error Message
|
|
925
925
|
SAVE_CARD_ERROR=The card couldn't be shared. Please try again later.
|
|
926
926
|
|
|
927
|
-
#XMIT
|
|
927
|
+
#XMIT: Label for Contact Details Section
|
|
928
928
|
POPOVER_CONTACT_INFORMATION=Contact Information
|
|
929
|
-
#XMIT
|
|
929
|
+
#XMIT: Label for Contact Email
|
|
930
930
|
POPOVER_CONTACT_SECTION_EMAIL=E-Mail
|
|
931
|
-
#XMIT
|
|
931
|
+
#XMIT: Label for Contact Phone
|
|
932
932
|
POPOVER_CONTACT_SECTION_PHONE=Phone
|
|
933
|
-
#XMIT
|
|
933
|
+
#XMIT: Label for Contact Mobile
|
|
934
934
|
POPOVER_CONTACT_SECTION_MOBILE=Mobile
|
|
935
|
-
#XMIT
|
|
935
|
+
#XMIT: Label for Contact Company
|
|
936
936
|
POPOVER_CONTACT_SECTION_COMPANY=Company
|
|
937
|
-
#XMIT
|
|
937
|
+
#XMIT: Label for Contact Job Title
|
|
938
938
|
POPOVER_CONTACT_SECTION_JOBTITLE=Job Title
|
|
939
|
-
#XMIT
|
|
939
|
+
#XMIT: Label for Contact Department
|
|
940
940
|
POPOVER_CONTACT_SECTION_DEPARTMENT=Department
|
|
941
|
-
#XMIT
|
|
941
|
+
#XMIT: Label for Contact Office Location
|
|
942
942
|
POPOVER_CONTACT_SECTION_OFFICE_LOCATION=Office Location
|
|
943
|
-
#XMIT
|
|
943
|
+
#XMIT: Label for Contact Send Quick Message
|
|
944
944
|
POPOVER_CONTACT_SEND_MESSAGE=Send a quick message
|
|
945
945
|
|
|
946
946
|
#MyHome Layout Controls
|