@topconsultnpm/sdkui-react-beta 6.15.70 → 6.15.71
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.
|
@@ -39,7 +39,7 @@ const TMDataGrid = React.forwardRef((props, ref) => {
|
|
|
39
39
|
const defaultCounterItems = new Map([
|
|
40
40
|
[
|
|
41
41
|
CounterItemKey.allItems,
|
|
42
|
-
{ key: CounterItemKey.allItems, show: true, caption: SDKUI_Localizator.All, value: totalRecordCount, icon: _jsx(IconAll, {}), order:
|
|
42
|
+
{ key: CounterItemKey.allItems, show: true, caption: SDKUI_Localizator.All, value: totalRecordCount, icon: _jsx(IconAll, {}), order: -1 }
|
|
43
43
|
],
|
|
44
44
|
[
|
|
45
45
|
CounterItemKey.visibleItems,
|
|
@@ -25,8 +25,18 @@ const StyledSqdItem = styled.div `
|
|
|
25
25
|
white-space: nowrap;
|
|
26
26
|
text-overflow: ellipsis;
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
&:hover {
|
|
29
29
|
cursor: pointer;
|
|
30
|
+
background: linear-gradient(
|
|
31
|
+
270deg,
|
|
32
|
+
rgba(70, 181, 162, 0.15) 16%,
|
|
33
|
+
rgba(59, 170, 188, 0.15) 34%,
|
|
34
|
+
rgba(59, 170, 188, 0.15) 34%,
|
|
35
|
+
rgba(54, 129, 173, 0.15) 54%,
|
|
36
|
+
rgba(51, 104, 165, 0.15) 72%,
|
|
37
|
+
rgba(47, 84, 157, 0.15) 88%,
|
|
38
|
+
rgba(48, 79, 153, 0.15) 100%
|
|
39
|
+
);
|
|
30
40
|
}
|
|
31
41
|
|
|
32
42
|
.info-icon {
|
|
@@ -286,4 +286,18 @@ const StyledTreeListWrapper = styled.div `
|
|
|
286
286
|
.dx-selection td {
|
|
287
287
|
background: oklch(from var(--dx-color-primary) l c h / .2) !important;
|
|
288
288
|
}
|
|
289
|
+
|
|
290
|
+
.dx-data-row:hover {
|
|
291
|
+
cursor: pointer;
|
|
292
|
+
background: linear-gradient(
|
|
293
|
+
270deg,
|
|
294
|
+
rgba(70, 181, 162, 0.15) 16%,
|
|
295
|
+
rgba(59, 170, 188, 0.15) 34%,
|
|
296
|
+
rgba(59, 170, 188, 0.15) 34%,
|
|
297
|
+
rgba(54, 129, 173, 0.15) 54%,
|
|
298
|
+
rgba(51, 104, 165, 0.15) 72%,
|
|
299
|
+
rgba(47, 84, 157, 0.15) 88%,
|
|
300
|
+
rgba(48, 79, 153, 0.15) 100%
|
|
301
|
+
);
|
|
302
|
+
}
|
|
289
303
|
`;
|
|
@@ -22,6 +22,16 @@ const StyledRecentTidItem = styled.div `
|
|
|
22
22
|
|
|
23
23
|
&:hover {
|
|
24
24
|
cursor: pointer;
|
|
25
|
+
background: linear-gradient(
|
|
26
|
+
270deg,
|
|
27
|
+
rgba(70, 181, 162, 0.15) 16%,
|
|
28
|
+
rgba(59, 170, 188, 0.15) 34%,
|
|
29
|
+
rgba(59, 170, 188, 0.15) 34%,
|
|
30
|
+
rgba(54, 129, 173, 0.15) 54%,
|
|
31
|
+
rgba(51, 104, 165, 0.15) 72%,
|
|
32
|
+
rgba(47, 84, 157, 0.15) 88%,
|
|
33
|
+
rgba(48, 79, 153, 0.15) 100%
|
|
34
|
+
);
|
|
25
35
|
}
|
|
26
36
|
|
|
27
37
|
.info-icon {
|