@sapui5/sap.suite.ui.commons 1.142.1 → 1.142.3
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 +2 -2
- 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 +5 -5
- 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/src/sap/suite/ui/commons/themes/base/MicroProcessFlow.less +10 -7
- package/src/sap/suite/ui/commons/themes/sap_fiori_3/MicroProcessFlow.less +7 -0
- package/src/sap/suite/ui/commons/themes/sap_fiori_3/library.source.less +1 -0
- package/src/sap/suite/ui/commons/themes/sap_fiori_3_dark/MicroProcessFlow.less +7 -0
- package/src/sap/suite/ui/commons/themes/sap_fiori_3_dark/library.source.less +1 -0
package/package.json
CHANGED
|
@@ -148,7 +148,7 @@ sap.ui.define([
|
|
|
148
148
|
* @extends sap.ui.core.Control
|
|
149
149
|
*
|
|
150
150
|
* @author SAP SE
|
|
151
|
-
* @version 1.142.
|
|
151
|
+
* @version 1.142.3
|
|
152
152
|
* @since 1.56.0
|
|
153
153
|
*
|
|
154
154
|
* @constructor
|
|
@@ -1018,7 +1018,7 @@ sap.ui.define([
|
|
|
1018
1018
|
showHeader: true,
|
|
1019
1019
|
title: oResourceBundle.getText("CALCULATION_BUILDER_DIALOG_TITLE"),
|
|
1020
1020
|
resizable: true,
|
|
1021
|
-
placement: PlacementType.
|
|
1021
|
+
placement: PlacementType.Auto,
|
|
1022
1022
|
contentWidth: "400px",
|
|
1023
1023
|
contentHeight: "450px",
|
|
1024
1024
|
content: [oPopoverItems.navContainer],
|
|
@@ -18,11 +18,11 @@ sap.ui.define([
|
|
|
18
18
|
|
|
19
19
|
var oResourceBundle = CoreLib.getResourceBundleFor("sap.suite.ui.commons"),
|
|
20
20
|
DefaultIcons = {
|
|
21
|
-
"Error": "sap-icon://
|
|
21
|
+
"Error": "sap-icon://status-error",
|
|
22
22
|
"None": null,
|
|
23
|
-
"Success": "sap-icon://
|
|
24
|
-
"Warning": "sap-icon://
|
|
25
|
-
"Information": "sap-icon://
|
|
23
|
+
"Success": "sap-icon://sys-enter-2",
|
|
24
|
+
"Warning": "sap-icon://alert",
|
|
25
|
+
"Information": "sap-icon://information"
|
|
26
26
|
},
|
|
27
27
|
ValueState = CoreLibrary.ValueState;
|
|
28
28
|
|
|
@@ -38,7 +38,7 @@ sap.ui.define([
|
|
|
38
38
|
* @extends sap.ui.core.Control
|
|
39
39
|
*
|
|
40
40
|
* @author SAP SE
|
|
41
|
-
* @version 1.142.
|
|
41
|
+
* @version 1.142.3
|
|
42
42
|
*
|
|
43
43
|
* @constructor
|
|
44
44
|
* @public
|
|
@@ -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.142.
|
|
198
|
+
version: "1.142.3",
|
|
199
199
|
extensions: {
|
|
200
200
|
flChangeHandlers: {
|
|
201
201
|
"sap.suite.ui.commons.Timeline": "sap/suite/ui/commons/flexibility/Timeline"
|
|
@@ -85,28 +85,31 @@
|
|
|
85
85
|
|
|
86
86
|
.sapSuiteUiCommonsMicroProcessFlowItemInformation {
|
|
87
87
|
border-color: @sapInformationBorderColor;
|
|
88
|
-
background-color: @
|
|
88
|
+
background-color: @sapInformationBackground;
|
|
89
89
|
}
|
|
90
90
|
|
|
91
91
|
.sapSuiteUiCommonsMicroProcessFlowItemNone {
|
|
92
|
-
border-color: @
|
|
93
|
-
background-color: @
|
|
92
|
+
border-color: @sapNeutralBorderColor;
|
|
93
|
+
background-color: @sapNeutralBackground;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
.sapSuiteUiCommonsMicroProcessFlowItemError .sapSuiteUiCommonsMicroProcessFlowItemIcon{
|
|
97
|
-
color: @
|
|
97
|
+
color: @sapContent_ContrastTextColor;
|
|
98
|
+
text-shadow: @sapContent_ContrastTextShadow;
|
|
98
99
|
}
|
|
99
100
|
|
|
100
101
|
.sapSuiteUiCommonsMicroProcessFlowItemInformation .sapSuiteUiCommonsMicroProcessFlowItemIcon {
|
|
101
|
-
color: @
|
|
102
|
+
color: @sapInformativeTextColor;
|
|
102
103
|
}
|
|
103
104
|
|
|
104
105
|
.sapSuiteUiCommonsMicroProcessFlowItemWarning .sapSuiteUiCommonsMicroProcessFlowItemIcon {
|
|
105
|
-
color: @
|
|
106
|
+
color: @sapContent_ContrastTextColor;
|
|
107
|
+
text-shadow: @sapContent_ContrastTextShadow;
|
|
106
108
|
}
|
|
107
109
|
|
|
108
110
|
.sapSuiteUiCommonsMicroProcessFlowItemSuccess .sapSuiteUiCommonsMicroProcessFlowItemIcon {
|
|
109
|
-
color: @
|
|
111
|
+
color: @sapContent_ContrastTextColor;
|
|
112
|
+
text-shadow: @sapContent_ContrastTextShadow;
|
|
110
113
|
}
|
|
111
114
|
|
|
112
115
|
.sapSuiteUiCommonsMicroProcessFlowItemNone .sapSuiteUiCommonsMicroProcessFlowItemIcon {
|