jrs-react 1.2.21 → 1.2.22
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/build/index.es.js +4 -3
- package/build/index.js +4 -3
- package/package.json +1 -1
- package/src/components/JRMask/JRMask.jsx +2 -3
package/build/index.es.js
CHANGED
|
@@ -3431,7 +3431,7 @@ const StyledMask = styled.dialog`
|
|
|
3431
3431
|
|
|
3432
3432
|
&:modal {
|
|
3433
3433
|
outline: 0;
|
|
3434
|
-
background: #
|
|
3434
|
+
background-color: #000000aa;
|
|
3435
3435
|
}
|
|
3436
3436
|
|
|
3437
3437
|
#jr-mask-msg{
|
|
@@ -3448,7 +3448,9 @@ const StyledMask = styled.dialog`
|
|
|
3448
3448
|
margin: 0;
|
|
3449
3449
|
top: 0;
|
|
3450
3450
|
left: 0;
|
|
3451
|
-
|
|
3451
|
+
color: ${({
|
|
3452
|
+
theme
|
|
3453
|
+
}) => theme?.colorPrimary ?? 'whilte'};
|
|
3452
3454
|
user-select: none;
|
|
3453
3455
|
cursor: wait;
|
|
3454
3456
|
flex-direction: column;
|
|
@@ -3468,7 +3470,6 @@ const StyledMask = styled.dialog`
|
|
|
3468
3470
|
font-size: 20px;
|
|
3469
3471
|
opacity: 0;
|
|
3470
3472
|
display:inline-block;
|
|
3471
|
-
color:white;
|
|
3472
3473
|
}
|
|
3473
3474
|
|
|
3474
3475
|
@keyframes lol {
|
package/build/index.js
CHANGED
|
@@ -3458,7 +3458,7 @@ const StyledMask = styled__default["default"].dialog`
|
|
|
3458
3458
|
|
|
3459
3459
|
&:modal {
|
|
3460
3460
|
outline: 0;
|
|
3461
|
-
background: #
|
|
3461
|
+
background-color: #000000aa;
|
|
3462
3462
|
}
|
|
3463
3463
|
|
|
3464
3464
|
#jr-mask-msg{
|
|
@@ -3475,7 +3475,9 @@ const StyledMask = styled__default["default"].dialog`
|
|
|
3475
3475
|
margin: 0;
|
|
3476
3476
|
top: 0;
|
|
3477
3477
|
left: 0;
|
|
3478
|
-
|
|
3478
|
+
color: ${({
|
|
3479
|
+
theme
|
|
3480
|
+
}) => theme?.colorPrimary ?? 'whilte'};
|
|
3479
3481
|
user-select: none;
|
|
3480
3482
|
cursor: wait;
|
|
3481
3483
|
flex-direction: column;
|
|
@@ -3495,7 +3497,6 @@ const StyledMask = styled__default["default"].dialog`
|
|
|
3495
3497
|
font-size: 20px;
|
|
3496
3498
|
opacity: 0;
|
|
3497
3499
|
display:inline-block;
|
|
3498
|
-
color:white;
|
|
3499
3500
|
}
|
|
3500
3501
|
|
|
3501
3502
|
@keyframes lol {
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@ const StyledMask = styled.dialog`
|
|
|
11
11
|
|
|
12
12
|
&:modal {
|
|
13
13
|
outline: 0;
|
|
14
|
-
background: #
|
|
14
|
+
background-color: #000000aa;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
#jr-mask-msg{
|
|
@@ -28,7 +28,7 @@ const StyledMask = styled.dialog`
|
|
|
28
28
|
margin: 0;
|
|
29
29
|
top: 0;
|
|
30
30
|
left: 0;
|
|
31
|
-
|
|
31
|
+
color: ${({theme})=>theme?.colorPrimary??'whilte'};
|
|
32
32
|
user-select: none;
|
|
33
33
|
cursor: wait;
|
|
34
34
|
flex-direction: column;
|
|
@@ -48,7 +48,6 @@ const StyledMask = styled.dialog`
|
|
|
48
48
|
font-size: 20px;
|
|
49
49
|
opacity: 0;
|
|
50
50
|
display:inline-block;
|
|
51
|
-
color:white;
|
|
52
51
|
}
|
|
53
52
|
|
|
54
53
|
@keyframes lol {
|