josenanodev-react-components-library 0.2.9 → 0.2.11
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.
|
@@ -253,7 +253,7 @@ const Multicalendar = ({ multicalendarId, ReactCellChildren, ReactListElementChi
|
|
|
253
253
|
}
|
|
254
254
|
}, [draggingOverDateCells, clientXPositionOnGrid, clientYPositionOnGrid]);
|
|
255
255
|
//Render
|
|
256
|
-
return (react_1.default.createElement("div", { "data-testid":
|
|
256
|
+
return (react_1.default.createElement("div", { key: multicalendarId, id: multicalendarId, "data-testid": multicalendarId, className: "multicalendar", style: {
|
|
257
257
|
gridTemplateColumns: `${verticalAxisWidth}px`,
|
|
258
258
|
gridTemplateRows: `70px ${horizontalAxisHeight - 70}px calc(100% - ${horizontalAxisHeight}px`,
|
|
259
259
|
} },
|
|
@@ -11,10 +11,12 @@
|
|
|
11
11
|
|
|
12
12
|
.side-bar .sidebar-close-button {
|
|
13
13
|
position: absolute;
|
|
14
|
-
top:
|
|
14
|
+
top: 3px;
|
|
15
|
+
z-index: 2;
|
|
15
16
|
height: 30px;
|
|
16
17
|
width: 30px;
|
|
17
|
-
background-color:
|
|
18
|
+
background-color: rgba(247, 247, 247, 0.7);
|
|
19
|
+
border-radius: 20px;
|
|
18
20
|
border: none;
|
|
19
21
|
outline: none;
|
|
20
22
|
transition: all 0.3s;
|
|
@@ -28,6 +30,7 @@
|
|
|
28
30
|
|
|
29
31
|
.side-bar .sidebar-close-button:hover {
|
|
30
32
|
color: var(--primary-color);
|
|
33
|
+
background-color: rgba(236, 236, 236, 0.7);
|
|
31
34
|
}
|
|
32
35
|
|
|
33
36
|
.side-bar .sidebar-close-button svg.open{
|
|
@@ -225,7 +225,7 @@ const Multicalendar = ({ multicalendarId, ReactCellChildren, ReactListElementChi
|
|
|
225
225
|
}
|
|
226
226
|
}, [draggingOverDateCells, clientXPositionOnGrid, clientYPositionOnGrid]);
|
|
227
227
|
//Render
|
|
228
|
-
return (React.createElement("div", { "data-testid":
|
|
228
|
+
return (React.createElement("div", { key: multicalendarId, id: multicalendarId, "data-testid": multicalendarId, className: "multicalendar", style: {
|
|
229
229
|
gridTemplateColumns: `${verticalAxisWidth}px`,
|
|
230
230
|
gridTemplateRows: `70px ${horizontalAxisHeight - 70}px calc(100% - ${horizontalAxisHeight}px`,
|
|
231
231
|
} },
|
|
@@ -11,10 +11,12 @@
|
|
|
11
11
|
|
|
12
12
|
.side-bar .sidebar-close-button {
|
|
13
13
|
position: absolute;
|
|
14
|
-
top:
|
|
14
|
+
top: 3px;
|
|
15
|
+
z-index: 2;
|
|
15
16
|
height: 30px;
|
|
16
17
|
width: 30px;
|
|
17
|
-
background-color:
|
|
18
|
+
background-color: rgba(247, 247, 247, 0.7);
|
|
19
|
+
border-radius: 20px;
|
|
18
20
|
border: none;
|
|
19
21
|
outline: none;
|
|
20
22
|
transition: all 0.3s;
|
|
@@ -28,6 +30,7 @@
|
|
|
28
30
|
|
|
29
31
|
.side-bar .sidebar-close-button:hover {
|
|
30
32
|
color: var(--primary-color);
|
|
33
|
+
background-color: rgba(236, 236, 236, 0.7);
|
|
31
34
|
}
|
|
32
35
|
|
|
33
36
|
.side-bar .sidebar-close-button svg.open{
|