@topconsultnpm/sdkui-react-beta 6.9.108 → 6.9.110
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/lib/components/base/Styled.js +16 -16
- package/package.json +2 -2
|
@@ -70,15 +70,15 @@ export const StyledTooltipSeparatorItem = styled.hr `
|
|
|
70
70
|
export const StyledTooltipItem = styled.div `
|
|
71
71
|
margin-right: 5px;
|
|
72
72
|
margin-bottom: 3px;
|
|
73
|
-
margin-top: ${props => props.$marginTop
|
|
73
|
+
margin-top: ${props => props.$marginTop ?? '0px'};
|
|
74
74
|
color: ${TMColors.text_normal};
|
|
75
|
-
font-size: ${props => props.$fontSize
|
|
75
|
+
font-size: ${props => props.$fontSize ?? FontSize.defaultFontSize};
|
|
76
76
|
`;
|
|
77
77
|
export const StyledTooltipContainer = styled.div `
|
|
78
78
|
display: flex;
|
|
79
79
|
flex-direction: column;
|
|
80
80
|
align-items: flex-start;
|
|
81
|
-
z-index: 100
|
|
81
|
+
z-index: 100; //TODO: Devexpress checkbox DataGrid z-index: 2
|
|
82
82
|
`;
|
|
83
83
|
export const StyledDraggableDiv = styled.div `
|
|
84
84
|
display: flex;
|
|
@@ -116,30 +116,30 @@ const StyledCellRenderObjectIcon = styled.div `
|
|
|
116
116
|
`;
|
|
117
117
|
export const cellRenderObjectIcon = (icon) => (_jsxs(StyledCellRenderObjectIcon, { children: [" ", icon, " "] }));
|
|
118
118
|
export const StyledChartOverlay = styled.div `
|
|
119
|
-
|
|
120
|
-
justify-content: center;
|
|
121
|
-
align-items: center;
|
|
122
|
-
position: absolute;
|
|
119
|
+
top: 0;
|
|
123
120
|
left: 0;
|
|
124
121
|
right: 0;
|
|
125
|
-
top: 0;
|
|
126
122
|
bottom: 0;
|
|
123
|
+
opacity: .6;
|
|
127
124
|
z-index: 999;
|
|
125
|
+
display: flex;
|
|
126
|
+
position: absolute;
|
|
127
|
+
align-items: center;
|
|
128
|
+
justify-content: center;
|
|
128
129
|
background-color: ${(props) => props.$backgroundColor ? props.$backgroundColor : 'black'};
|
|
129
|
-
opacity: .5;
|
|
130
130
|
`;
|
|
131
131
|
export const StyledBtnLoadChart = styled.button `
|
|
132
|
-
|
|
132
|
+
display: flex;
|
|
133
|
+
font-size: 18px;
|
|
133
134
|
color: #383b3a;
|
|
134
|
-
|
|
135
|
+
padding: 8px 15px;
|
|
135
136
|
border-radius: 5px;
|
|
136
|
-
|
|
137
|
+
align-items: center;
|
|
138
|
+
background: #eeeeee;
|
|
137
139
|
transition: all 300ms;
|
|
138
|
-
|
|
140
|
+
border: 2px solid black;
|
|
139
141
|
justify-content: center;
|
|
140
|
-
|
|
141
|
-
font-size: 18px;
|
|
142
|
-
padding: 8px 15px;
|
|
142
|
+
box-shadow: 3px 5px #bbbbbb;
|
|
143
143
|
&:hover {
|
|
144
144
|
transform: translateY(1px);
|
|
145
145
|
box-shadow: 1px 1px #bbbbbb;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@topconsultnpm/sdkui-react-beta",
|
|
3
|
-
"version": "6.9.
|
|
3
|
+
"version": "6.9.110",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"lib"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@topconsultnpm/sdk-ts-beta": "^6.9.
|
|
31
|
+
"@topconsultnpm/sdk-ts-beta": "^6.9.16",
|
|
32
32
|
"buffer": "^6.0.3",
|
|
33
33
|
"devextreme": "24.2.3",
|
|
34
34
|
"devextreme-react": "24.2.3",
|