jrs-react 1.2.34 → 1.2.35

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 CHANGED
@@ -3439,6 +3439,12 @@ const css = `
3439
3439
  z-index: 20000;
3440
3440
  overflow: hidden;
3441
3441
  background:#000000aa;
3442
+ animation: divDelay .3s;
3443
+ @keyframes divDelay {
3444
+ from {background:transparent;visibility:hidden;}
3445
+ 40% {background:transparent;visibility:hidden;}
3446
+ to {background:#000000aa;visibility:visible;}
3447
+ }
3442
3448
 
3443
3449
  .cs-loader-inner {
3444
3450
  transform: translateY(-30%);
@@ -3533,10 +3539,10 @@ const StyledDialogMask = styled.dialog`
3533
3539
 
3534
3540
  &:modal {
3535
3541
  outline: 0;
3536
- animation: myfirst .3s;
3537
- @keyframes myfirst {
3542
+ animation: modalDelay .3s;
3543
+ @keyframes modalDelay {
3538
3544
  from {background:transparent;visibility:hidden;}
3539
- 99% {background:transparent;visibility:hidden;}
3545
+ 40% {background:transparent;visibility:hidden;}
3540
3546
  to {background:#000000aa;visibility:visible;}
3541
3547
  }
3542
3548
  }
package/build/index.js CHANGED
@@ -3466,6 +3466,12 @@ const css = `
3466
3466
  z-index: 20000;
3467
3467
  overflow: hidden;
3468
3468
  background:#000000aa;
3469
+ animation: divDelay .3s;
3470
+ @keyframes divDelay {
3471
+ from {background:transparent;visibility:hidden;}
3472
+ 40% {background:transparent;visibility:hidden;}
3473
+ to {background:#000000aa;visibility:visible;}
3474
+ }
3469
3475
 
3470
3476
  .cs-loader-inner {
3471
3477
  transform: translateY(-30%);
@@ -3560,10 +3566,10 @@ const StyledDialogMask = styled__default["default"].dialog`
3560
3566
 
3561
3567
  &:modal {
3562
3568
  outline: 0;
3563
- animation: myfirst .3s;
3564
- @keyframes myfirst {
3569
+ animation: modalDelay .3s;
3570
+ @keyframes modalDelay {
3565
3571
  from {background:transparent;visibility:hidden;}
3566
- 99% {background:transparent;visibility:hidden;}
3572
+ 40% {background:transparent;visibility:hidden;}
3567
3573
  to {background:#000000aa;visibility:visible;}
3568
3574
  }
3569
3575
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jrs-react",
3
- "version": "1.2.34",
3
+ "version": "1.2.35",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.es.js",
@@ -19,6 +19,12 @@ const css=`
19
19
  z-index: 20000;
20
20
  overflow: hidden;
21
21
  background:#000000aa;
22
+ animation: divDelay .3s;
23
+ @keyframes divDelay {
24
+ from {background:transparent;visibility:hidden;}
25
+ 40% {background:transparent;visibility:hidden;}
26
+ to {background:#000000aa;visibility:visible;}
27
+ }
22
28
 
23
29
  .cs-loader-inner {
24
30
  transform: translateY(-30%);
@@ -111,10 +117,10 @@ const StyledDialogMask = styled.dialog`
111
117
 
112
118
  &:modal {
113
119
  outline: 0;
114
- animation: myfirst .3s;
115
- @keyframes myfirst {
120
+ animation: modalDelay .3s;
121
+ @keyframes modalDelay {
116
122
  from {background:transparent;visibility:hidden;}
117
- 99% {background:transparent;visibility:hidden;}
123
+ 40% {background:transparent;visibility:hidden;}
118
124
  to {background:#000000aa;visibility:visible;}
119
125
  }
120
126
  }