react-toastify-v2 11.0.5
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/LICENSE +21 -0
- package/README.md +115 -0
- package/addons/use-notification-center/index.d.mts +395 -0
- package/addons/use-notification-center/index.d.ts +395 -0
- package/addons/use-notification-center/index.js +3 -0
- package/addons/use-notification-center/index.js.map +1 -0
- package/addons/use-notification-center/index.mjs +3 -0
- package/addons/use-notification-center/index.mjs.map +1 -0
- package/dist/ReactToastify.css +800 -0
- package/dist/index.d.mts +431 -0
- package/dist/index.d.ts +431 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +4 -0
- package/dist/index.mjs.map +1 -0
- package/dist/unstyled.d.mts +431 -0
- package/dist/unstyled.d.ts +431 -0
- package/dist/unstyled.js +3 -0
- package/dist/unstyled.js.map +1 -0
- package/dist/unstyled.mjs +3 -0
- package/dist/unstyled.mjs.map +1 -0
- package/package.json +108 -0
@@ -0,0 +1,800 @@
|
|
1
|
+
:root {
|
2
|
+
--toastify-color-light: #fff;
|
3
|
+
--toastify-color-dark: #121212;
|
4
|
+
--toastify-color-info: #3498db;
|
5
|
+
--toastify-color-success: #07bc0c;
|
6
|
+
--toastify-color-warning: #f1c40f;
|
7
|
+
--toastify-color-error: hsl(6, 78%, 57%);
|
8
|
+
--toastify-color-transparent: rgba(255, 255, 255, 0.7);
|
9
|
+
|
10
|
+
--toastify-icon-color-info: var(--toastify-color-info);
|
11
|
+
--toastify-icon-color-success: var(--toastify-color-success);
|
12
|
+
--toastify-icon-color-warning: var(--toastify-color-warning);
|
13
|
+
--toastify-icon-color-error: var(--toastify-color-error);
|
14
|
+
|
15
|
+
--toastify-container-width: fit-content;
|
16
|
+
--toastify-toast-width: 320px;
|
17
|
+
--toastify-toast-offset: 16px;
|
18
|
+
--toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
|
19
|
+
--toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
|
20
|
+
--toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
|
21
|
+
--toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
|
22
|
+
--toastify-toast-background: #fff;
|
23
|
+
--toastify-toast-padding: 14px;
|
24
|
+
--toastify-toast-min-height: 64px;
|
25
|
+
--toastify-toast-max-height: 800px;
|
26
|
+
--toastify-toast-bd-radius: 6px;
|
27
|
+
--toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
|
28
|
+
--toastify-font-family: sans-serif;
|
29
|
+
--toastify-z-index: 9999;
|
30
|
+
--toastify-text-color-light: #757575;
|
31
|
+
--toastify-text-color-dark: #fff;
|
32
|
+
|
33
|
+
/* Used only for colored theme */
|
34
|
+
--toastify-text-color-info: #fff;
|
35
|
+
--toastify-text-color-success: #fff;
|
36
|
+
--toastify-text-color-warning: #fff;
|
37
|
+
--toastify-text-color-error: #fff;
|
38
|
+
|
39
|
+
--toastify-spinner-color: #616161;
|
40
|
+
--toastify-spinner-color-empty-area: #e0e0e0;
|
41
|
+
--toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
|
42
|
+
--toastify-color-progress-dark: #bb86fc;
|
43
|
+
--toastify-color-progress-info: var(--toastify-color-info);
|
44
|
+
--toastify-color-progress-success: var(--toastify-color-success);
|
45
|
+
--toastify-color-progress-warning: var(--toastify-color-warning);
|
46
|
+
--toastify-color-progress-error: var(--toastify-color-error);
|
47
|
+
/* used to control the opacity of the progress trail */
|
48
|
+
--toastify-color-progress-bgo: 0.2;
|
49
|
+
}
|
50
|
+
|
51
|
+
.Toastify__toast-container {
|
52
|
+
z-index: var(--toastify-z-index);
|
53
|
+
-webkit-transform: translate3d(0, 0, var(--toastify-z-index));
|
54
|
+
position: fixed;
|
55
|
+
width: var(--toastify-container-width);
|
56
|
+
box-sizing: border-box;
|
57
|
+
color: #fff;
|
58
|
+
display: flex;
|
59
|
+
flex-direction: column;
|
60
|
+
}
|
61
|
+
|
62
|
+
.Toastify__toast-container--top-left {
|
63
|
+
top: var(--toastify-toast-top);
|
64
|
+
left: var(--toastify-toast-left);
|
65
|
+
}
|
66
|
+
.Toastify__toast-container--top-center {
|
67
|
+
top: var(--toastify-toast-top);
|
68
|
+
left: 50%;
|
69
|
+
transform: translateX(-50%);
|
70
|
+
align-items: center;
|
71
|
+
}
|
72
|
+
.Toastify__toast-container--top-right {
|
73
|
+
top: var(--toastify-toast-top);
|
74
|
+
right: var(--toastify-toast-right);
|
75
|
+
align-items: end;
|
76
|
+
}
|
77
|
+
.Toastify__toast-container--bottom-left {
|
78
|
+
bottom: var(--toastify-toast-bottom);
|
79
|
+
left: var(--toastify-toast-left);
|
80
|
+
}
|
81
|
+
.Toastify__toast-container--bottom-center {
|
82
|
+
bottom: var(--toastify-toast-bottom);
|
83
|
+
left: 50%;
|
84
|
+
transform: translateX(-50%);
|
85
|
+
align-items: center;
|
86
|
+
}
|
87
|
+
.Toastify__toast-container--bottom-right {
|
88
|
+
bottom: var(--toastify-toast-bottom);
|
89
|
+
right: var(--toastify-toast-right);
|
90
|
+
align-items: end;
|
91
|
+
}
|
92
|
+
|
93
|
+
.Toastify__toast {
|
94
|
+
--y: 0;
|
95
|
+
position: relative;
|
96
|
+
touch-action: none;
|
97
|
+
width: var(--toastify-toast-width);
|
98
|
+
min-height: var(--toastify-toast-min-height);
|
99
|
+
box-sizing: border-box;
|
100
|
+
margin-bottom: 1rem;
|
101
|
+
padding: var(--toastify-toast-padding);
|
102
|
+
border-radius: var(--toastify-toast-bd-radius);
|
103
|
+
box-shadow: var(--toastify-toast-shadow);
|
104
|
+
max-height: var(--toastify-toast-max-height);
|
105
|
+
font-family: var(--toastify-font-family);
|
106
|
+
/* webkit only issue #791 */
|
107
|
+
z-index: 0;
|
108
|
+
/* inner swag */
|
109
|
+
display: flex;
|
110
|
+
flex: 1 auto;
|
111
|
+
align-items: center;
|
112
|
+
word-break: break-word;
|
113
|
+
}
|
114
|
+
|
115
|
+
@media only screen and (max-width: 480px) {
|
116
|
+
.Toastify__toast-container {
|
117
|
+
width: 100vw;
|
118
|
+
left: env(safe-area-inset-left);
|
119
|
+
margin: 0;
|
120
|
+
}
|
121
|
+
.Toastify__toast-container--top-left,
|
122
|
+
.Toastify__toast-container--top-center,
|
123
|
+
.Toastify__toast-container--top-right {
|
124
|
+
top: env(safe-area-inset-top);
|
125
|
+
transform: translateX(0);
|
126
|
+
}
|
127
|
+
.Toastify__toast-container--bottom-left,
|
128
|
+
.Toastify__toast-container--bottom-center,
|
129
|
+
.Toastify__toast-container--bottom-right {
|
130
|
+
bottom: env(safe-area-inset-bottom);
|
131
|
+
transform: translateX(0);
|
132
|
+
}
|
133
|
+
.Toastify__toast-container--rtl {
|
134
|
+
right: env(safe-area-inset-right);
|
135
|
+
left: initial;
|
136
|
+
}
|
137
|
+
.Toastify__toast {
|
138
|
+
--toastify-toast-width: 100%;
|
139
|
+
margin-bottom: 0;
|
140
|
+
border-radius: 0;
|
141
|
+
}
|
142
|
+
}
|
143
|
+
|
144
|
+
.Toastify__toast-container[data-stacked='true'] {
|
145
|
+
width: var(--toastify-toast-width);
|
146
|
+
}
|
147
|
+
|
148
|
+
.Toastify__toast--stacked {
|
149
|
+
position: absolute;
|
150
|
+
width: 100%;
|
151
|
+
transform: translate3d(0, var(--y), 0) scale(var(--s));
|
152
|
+
transition: transform 0.3s;
|
153
|
+
}
|
154
|
+
|
155
|
+
.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
|
156
|
+
.Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
|
157
|
+
transition: opacity 0.1s;
|
158
|
+
}
|
159
|
+
|
160
|
+
.Toastify__toast--stacked[data-collapsed='false'] {
|
161
|
+
overflow: visible;
|
162
|
+
}
|
163
|
+
|
164
|
+
.Toastify__toast--stacked[data-collapsed='true']:not(:last-child) > * {
|
165
|
+
opacity: 0;
|
166
|
+
}
|
167
|
+
|
168
|
+
.Toastify__toast--stacked:after {
|
169
|
+
content: '';
|
170
|
+
position: absolute;
|
171
|
+
left: 0;
|
172
|
+
right: 0;
|
173
|
+
height: calc(var(--g) * 1px);
|
174
|
+
bottom: 100%;
|
175
|
+
}
|
176
|
+
|
177
|
+
.Toastify__toast--stacked[data-pos='top'] {
|
178
|
+
top: 0;
|
179
|
+
}
|
180
|
+
|
181
|
+
.Toastify__toast--stacked[data-pos='bot'] {
|
182
|
+
bottom: 0;
|
183
|
+
}
|
184
|
+
|
185
|
+
.Toastify__toast--stacked[data-pos='bot'].Toastify__toast--stacked:before {
|
186
|
+
transform-origin: top;
|
187
|
+
}
|
188
|
+
|
189
|
+
.Toastify__toast--stacked[data-pos='top'].Toastify__toast--stacked:before {
|
190
|
+
transform-origin: bottom;
|
191
|
+
}
|
192
|
+
|
193
|
+
.Toastify__toast--stacked:before {
|
194
|
+
content: '';
|
195
|
+
position: absolute;
|
196
|
+
left: 0;
|
197
|
+
right: 0;
|
198
|
+
bottom: 0;
|
199
|
+
height: 100%;
|
200
|
+
transform: scaleY(3);
|
201
|
+
z-index: -1;
|
202
|
+
}
|
203
|
+
|
204
|
+
.Toastify__toast--rtl {
|
205
|
+
direction: rtl;
|
206
|
+
}
|
207
|
+
|
208
|
+
.Toastify__toast--close-on-click {
|
209
|
+
cursor: pointer;
|
210
|
+
}
|
211
|
+
|
212
|
+
.Toastify__toast-icon {
|
213
|
+
margin-inline-end: 10px;
|
214
|
+
width: 22px;
|
215
|
+
flex-shrink: 0;
|
216
|
+
display: flex;
|
217
|
+
}
|
218
|
+
|
219
|
+
.Toastify--animate {
|
220
|
+
animation-fill-mode: both;
|
221
|
+
animation-duration: 0.5s;
|
222
|
+
}
|
223
|
+
|
224
|
+
.Toastify--animate-icon {
|
225
|
+
animation-fill-mode: both;
|
226
|
+
animation-duration: 0.3s;
|
227
|
+
}
|
228
|
+
|
229
|
+
.Toastify__toast-theme--dark {
|
230
|
+
background: var(--toastify-color-dark);
|
231
|
+
color: var(--toastify-text-color-dark);
|
232
|
+
}
|
233
|
+
|
234
|
+
.Toastify__toast-theme--light {
|
235
|
+
background: var(--toastify-color-light);
|
236
|
+
color: var(--toastify-text-color-light);
|
237
|
+
}
|
238
|
+
|
239
|
+
.Toastify__toast-theme--colored.Toastify__toast--default {
|
240
|
+
background: var(--toastify-color-light);
|
241
|
+
color: var(--toastify-text-color-light);
|
242
|
+
}
|
243
|
+
|
244
|
+
.Toastify__toast-theme--colored.Toastify__toast--info {
|
245
|
+
color: var(--toastify-text-color-info);
|
246
|
+
background: var(--toastify-color-info);
|
247
|
+
}
|
248
|
+
|
249
|
+
.Toastify__toast-theme--colored.Toastify__toast--success {
|
250
|
+
color: var(--toastify-text-color-success);
|
251
|
+
background: var(--toastify-color-success);
|
252
|
+
}
|
253
|
+
|
254
|
+
.Toastify__toast-theme--colored.Toastify__toast--warning {
|
255
|
+
color: var(--toastify-text-color-warning);
|
256
|
+
background: var(--toastify-color-warning);
|
257
|
+
}
|
258
|
+
|
259
|
+
.Toastify__toast-theme--colored.Toastify__toast--error {
|
260
|
+
color: var(--toastify-text-color-error);
|
261
|
+
background: var(--toastify-color-error);
|
262
|
+
}
|
263
|
+
|
264
|
+
.Toastify__progress-bar-theme--light {
|
265
|
+
background: var(--toastify-color-progress-light);
|
266
|
+
}
|
267
|
+
|
268
|
+
.Toastify__progress-bar-theme--dark {
|
269
|
+
background: var(--toastify-color-progress-dark);
|
270
|
+
}
|
271
|
+
|
272
|
+
.Toastify__progress-bar--info {
|
273
|
+
background: var(--toastify-color-progress-info);
|
274
|
+
}
|
275
|
+
|
276
|
+
.Toastify__progress-bar--success {
|
277
|
+
background: var(--toastify-color-progress-success);
|
278
|
+
}
|
279
|
+
|
280
|
+
.Toastify__progress-bar--warning {
|
281
|
+
background: var(--toastify-color-progress-warning);
|
282
|
+
}
|
283
|
+
|
284
|
+
.Toastify__progress-bar--error {
|
285
|
+
background: var(--toastify-color-progress-error);
|
286
|
+
}
|
287
|
+
|
288
|
+
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
|
289
|
+
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
|
290
|
+
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
|
291
|
+
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
|
292
|
+
background: var(--toastify-color-transparent);
|
293
|
+
}
|
294
|
+
|
295
|
+
.Toastify__close-button {
|
296
|
+
color: #fff;
|
297
|
+
position: absolute;
|
298
|
+
top: 6px;
|
299
|
+
right: 6px;
|
300
|
+
background: transparent;
|
301
|
+
outline: none;
|
302
|
+
border: none;
|
303
|
+
padding: 0;
|
304
|
+
cursor: pointer;
|
305
|
+
opacity: 0.7;
|
306
|
+
transition: 0.3s ease;
|
307
|
+
z-index: 1;
|
308
|
+
}
|
309
|
+
|
310
|
+
.Toastify__toast--rtl .Toastify__close-button {
|
311
|
+
left: 6px;
|
312
|
+
right: unset;
|
313
|
+
}
|
314
|
+
|
315
|
+
.Toastify__close-button--light {
|
316
|
+
color: #000;
|
317
|
+
opacity: 0.3;
|
318
|
+
}
|
319
|
+
|
320
|
+
.Toastify__close-button > svg {
|
321
|
+
fill: currentColor;
|
322
|
+
height: 16px;
|
323
|
+
width: 14px;
|
324
|
+
}
|
325
|
+
|
326
|
+
.Toastify__close-button:hover,
|
327
|
+
.Toastify__close-button:focus {
|
328
|
+
opacity: 1;
|
329
|
+
}
|
330
|
+
|
331
|
+
@keyframes Toastify__trackProgress {
|
332
|
+
0% {
|
333
|
+
transform: scaleX(1);
|
334
|
+
}
|
335
|
+
100% {
|
336
|
+
transform: scaleX(0);
|
337
|
+
}
|
338
|
+
}
|
339
|
+
|
340
|
+
.Toastify__progress-bar {
|
341
|
+
position: absolute;
|
342
|
+
bottom: 0;
|
343
|
+
left: 0;
|
344
|
+
width: 100%;
|
345
|
+
height: 100%;
|
346
|
+
z-index: 1;
|
347
|
+
opacity: 0.7;
|
348
|
+
transform-origin: left;
|
349
|
+
}
|
350
|
+
|
351
|
+
.Toastify__progress-bar--animated {
|
352
|
+
animation: Toastify__trackProgress linear 1 forwards;
|
353
|
+
}
|
354
|
+
|
355
|
+
.Toastify__progress-bar--controlled {
|
356
|
+
transition: transform 0.2s;
|
357
|
+
}
|
358
|
+
|
359
|
+
.Toastify__progress-bar--rtl {
|
360
|
+
right: 0;
|
361
|
+
left: initial;
|
362
|
+
transform-origin: right;
|
363
|
+
border-bottom-left-radius: initial;
|
364
|
+
}
|
365
|
+
|
366
|
+
.Toastify__progress-bar--wrp {
|
367
|
+
position: absolute;
|
368
|
+
overflow: hidden;
|
369
|
+
bottom: 0;
|
370
|
+
left: 0;
|
371
|
+
width: 100%;
|
372
|
+
height: 5px;
|
373
|
+
border-bottom-left-radius: var(--toastify-toast-bd-radius);
|
374
|
+
border-bottom-right-radius: var(--toastify-toast-bd-radius);
|
375
|
+
}
|
376
|
+
|
377
|
+
.Toastify__progress-bar--wrp[data-hidden='true'] {
|
378
|
+
opacity: 0;
|
379
|
+
}
|
380
|
+
|
381
|
+
.Toastify__progress-bar--bg {
|
382
|
+
opacity: var(--toastify-color-progress-bgo);
|
383
|
+
width: 100%;
|
384
|
+
height: 100%;
|
385
|
+
}
|
386
|
+
|
387
|
+
.Toastify__spinner {
|
388
|
+
width: 20px;
|
389
|
+
height: 20px;
|
390
|
+
box-sizing: border-box;
|
391
|
+
border: 2px solid;
|
392
|
+
border-radius: 100%;
|
393
|
+
border-color: var(--toastify-spinner-color-empty-area);
|
394
|
+
border-right-color: var(--toastify-spinner-color);
|
395
|
+
animation: Toastify__spin 0.65s linear infinite;
|
396
|
+
}
|
397
|
+
|
398
|
+
@keyframes Toastify__bounceInRight {
|
399
|
+
from,
|
400
|
+
60%,
|
401
|
+
75%,
|
402
|
+
90%,
|
403
|
+
to {
|
404
|
+
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
405
|
+
}
|
406
|
+
from {
|
407
|
+
opacity: 0;
|
408
|
+
transform: translate3d(3000px, 0, 0);
|
409
|
+
}
|
410
|
+
60% {
|
411
|
+
opacity: 1;
|
412
|
+
transform: translate3d(-25px, 0, 0);
|
413
|
+
}
|
414
|
+
75% {
|
415
|
+
transform: translate3d(10px, 0, 0);
|
416
|
+
}
|
417
|
+
90% {
|
418
|
+
transform: translate3d(-5px, 0, 0);
|
419
|
+
}
|
420
|
+
to {
|
421
|
+
transform: none;
|
422
|
+
}
|
423
|
+
}
|
424
|
+
|
425
|
+
@keyframes Toastify__bounceOutRight {
|
426
|
+
20% {
|
427
|
+
opacity: 1;
|
428
|
+
transform: translate3d(-20px, var(--y), 0);
|
429
|
+
}
|
430
|
+
to {
|
431
|
+
opacity: 0;
|
432
|
+
transform: translate3d(2000px, var(--y), 0);
|
433
|
+
}
|
434
|
+
}
|
435
|
+
|
436
|
+
@keyframes Toastify__bounceInLeft {
|
437
|
+
from,
|
438
|
+
60%,
|
439
|
+
75%,
|
440
|
+
90%,
|
441
|
+
to {
|
442
|
+
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
443
|
+
}
|
444
|
+
0% {
|
445
|
+
opacity: 0;
|
446
|
+
transform: translate3d(-3000px, 0, 0);
|
447
|
+
}
|
448
|
+
60% {
|
449
|
+
opacity: 1;
|
450
|
+
transform: translate3d(25px, 0, 0);
|
451
|
+
}
|
452
|
+
75% {
|
453
|
+
transform: translate3d(-10px, 0, 0);
|
454
|
+
}
|
455
|
+
90% {
|
456
|
+
transform: translate3d(5px, 0, 0);
|
457
|
+
}
|
458
|
+
to {
|
459
|
+
transform: none;
|
460
|
+
}
|
461
|
+
}
|
462
|
+
|
463
|
+
@keyframes Toastify__bounceOutLeft {
|
464
|
+
20% {
|
465
|
+
opacity: 1;
|
466
|
+
transform: translate3d(20px, var(--y), 0);
|
467
|
+
}
|
468
|
+
to {
|
469
|
+
opacity: 0;
|
470
|
+
transform: translate3d(-2000px, var(--y), 0);
|
471
|
+
}
|
472
|
+
}
|
473
|
+
|
474
|
+
@keyframes Toastify__bounceInUp {
|
475
|
+
from,
|
476
|
+
60%,
|
477
|
+
75%,
|
478
|
+
90%,
|
479
|
+
to {
|
480
|
+
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
481
|
+
}
|
482
|
+
from {
|
483
|
+
opacity: 0;
|
484
|
+
transform: translate3d(0, 3000px, 0);
|
485
|
+
}
|
486
|
+
60% {
|
487
|
+
opacity: 1;
|
488
|
+
transform: translate3d(0, -20px, 0);
|
489
|
+
}
|
490
|
+
75% {
|
491
|
+
transform: translate3d(0, 10px, 0);
|
492
|
+
}
|
493
|
+
90% {
|
494
|
+
transform: translate3d(0, -5px, 0);
|
495
|
+
}
|
496
|
+
to {
|
497
|
+
transform: translate3d(0, 0, 0);
|
498
|
+
}
|
499
|
+
}
|
500
|
+
|
501
|
+
@keyframes Toastify__bounceOutUp {
|
502
|
+
20% {
|
503
|
+
transform: translate3d(0, calc(var(--y) - 10px), 0);
|
504
|
+
}
|
505
|
+
40%,
|
506
|
+
45% {
|
507
|
+
opacity: 1;
|
508
|
+
transform: translate3d(0, calc(var(--y) + 20px), 0);
|
509
|
+
}
|
510
|
+
to {
|
511
|
+
opacity: 0;
|
512
|
+
transform: translate3d(0, -2000px, 0);
|
513
|
+
}
|
514
|
+
}
|
515
|
+
|
516
|
+
@keyframes Toastify__bounceInDown {
|
517
|
+
from,
|
518
|
+
60%,
|
519
|
+
75%,
|
520
|
+
90%,
|
521
|
+
to {
|
522
|
+
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
523
|
+
}
|
524
|
+
0% {
|
525
|
+
opacity: 0;
|
526
|
+
transform: translate3d(0, -3000px, 0);
|
527
|
+
}
|
528
|
+
60% {
|
529
|
+
opacity: 1;
|
530
|
+
transform: translate3d(0, 25px, 0);
|
531
|
+
}
|
532
|
+
75% {
|
533
|
+
transform: translate3d(0, -10px, 0);
|
534
|
+
}
|
535
|
+
90% {
|
536
|
+
transform: translate3d(0, 5px, 0);
|
537
|
+
}
|
538
|
+
to {
|
539
|
+
transform: none;
|
540
|
+
}
|
541
|
+
}
|
542
|
+
|
543
|
+
@keyframes Toastify__bounceOutDown {
|
544
|
+
20% {
|
545
|
+
transform: translate3d(0, calc(var(--y) - 10px), 0);
|
546
|
+
}
|
547
|
+
40%,
|
548
|
+
45% {
|
549
|
+
opacity: 1;
|
550
|
+
transform: translate3d(0, calc(var(--y) + 20px), 0);
|
551
|
+
}
|
552
|
+
to {
|
553
|
+
opacity: 0;
|
554
|
+
transform: translate3d(0, 2000px, 0);
|
555
|
+
}
|
556
|
+
}
|
557
|
+
|
558
|
+
.Toastify__bounce-enter--top-left,
|
559
|
+
.Toastify__bounce-enter--bottom-left {
|
560
|
+
animation-name: Toastify__bounceInLeft;
|
561
|
+
}
|
562
|
+
|
563
|
+
.Toastify__bounce-enter--top-right,
|
564
|
+
.Toastify__bounce-enter--bottom-right {
|
565
|
+
animation-name: Toastify__bounceInRight;
|
566
|
+
}
|
567
|
+
|
568
|
+
.Toastify__bounce-enter--top-center {
|
569
|
+
animation-name: Toastify__bounceInDown;
|
570
|
+
}
|
571
|
+
|
572
|
+
.Toastify__bounce-enter--bottom-center {
|
573
|
+
animation-name: Toastify__bounceInUp;
|
574
|
+
}
|
575
|
+
|
576
|
+
.Toastify__bounce-exit--top-left,
|
577
|
+
.Toastify__bounce-exit--bottom-left {
|
578
|
+
animation-name: Toastify__bounceOutLeft;
|
579
|
+
}
|
580
|
+
|
581
|
+
.Toastify__bounce-exit--top-right,
|
582
|
+
.Toastify__bounce-exit--bottom-right {
|
583
|
+
animation-name: Toastify__bounceOutRight;
|
584
|
+
}
|
585
|
+
|
586
|
+
.Toastify__bounce-exit--top-center {
|
587
|
+
animation-name: Toastify__bounceOutUp;
|
588
|
+
}
|
589
|
+
|
590
|
+
.Toastify__bounce-exit--bottom-center {
|
591
|
+
animation-name: Toastify__bounceOutDown;
|
592
|
+
}
|
593
|
+
|
594
|
+
@keyframes Toastify__zoomIn {
|
595
|
+
from {
|
596
|
+
opacity: 0;
|
597
|
+
transform: scale3d(0.3, 0.3, 0.3);
|
598
|
+
}
|
599
|
+
50% {
|
600
|
+
opacity: 1;
|
601
|
+
}
|
602
|
+
}
|
603
|
+
|
604
|
+
@keyframes Toastify__zoomOut {
|
605
|
+
from {
|
606
|
+
opacity: 1;
|
607
|
+
}
|
608
|
+
50% {
|
609
|
+
opacity: 0;
|
610
|
+
transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
|
611
|
+
}
|
612
|
+
to {
|
613
|
+
opacity: 0;
|
614
|
+
}
|
615
|
+
}
|
616
|
+
|
617
|
+
.Toastify__zoom-enter {
|
618
|
+
animation-name: Toastify__zoomIn;
|
619
|
+
}
|
620
|
+
|
621
|
+
.Toastify__zoom-exit {
|
622
|
+
animation-name: Toastify__zoomOut;
|
623
|
+
}
|
624
|
+
|
625
|
+
@keyframes Toastify__flipIn {
|
626
|
+
from {
|
627
|
+
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
628
|
+
animation-timing-function: ease-in;
|
629
|
+
opacity: 0;
|
630
|
+
}
|
631
|
+
40% {
|
632
|
+
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
633
|
+
animation-timing-function: ease-in;
|
634
|
+
}
|
635
|
+
60% {
|
636
|
+
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
|
637
|
+
opacity: 1;
|
638
|
+
}
|
639
|
+
80% {
|
640
|
+
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
|
641
|
+
}
|
642
|
+
to {
|
643
|
+
transform: perspective(400px);
|
644
|
+
}
|
645
|
+
}
|
646
|
+
|
647
|
+
@keyframes Toastify__flipOut {
|
648
|
+
from {
|
649
|
+
transform: translate3d(0, var(--y), 0) perspective(400px);
|
650
|
+
}
|
651
|
+
30% {
|
652
|
+
transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
|
653
|
+
opacity: 1;
|
654
|
+
}
|
655
|
+
to {
|
656
|
+
transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
|
657
|
+
opacity: 0;
|
658
|
+
}
|
659
|
+
}
|
660
|
+
|
661
|
+
.Toastify__flip-enter {
|
662
|
+
animation-name: Toastify__flipIn;
|
663
|
+
}
|
664
|
+
|
665
|
+
.Toastify__flip-exit {
|
666
|
+
animation-name: Toastify__flipOut;
|
667
|
+
}
|
668
|
+
|
669
|
+
@keyframes Toastify__slideInRight {
|
670
|
+
from {
|
671
|
+
transform: translate3d(110%, 0, 0);
|
672
|
+
visibility: visible;
|
673
|
+
}
|
674
|
+
to {
|
675
|
+
transform: translate3d(0, var(--y), 0);
|
676
|
+
}
|
677
|
+
}
|
678
|
+
|
679
|
+
@keyframes Toastify__slideInLeft {
|
680
|
+
from {
|
681
|
+
transform: translate3d(-110%, 0, 0);
|
682
|
+
visibility: visible;
|
683
|
+
}
|
684
|
+
to {
|
685
|
+
transform: translate3d(0, var(--y), 0);
|
686
|
+
}
|
687
|
+
}
|
688
|
+
|
689
|
+
@keyframes Toastify__slideInUp {
|
690
|
+
from {
|
691
|
+
transform: translate3d(0, 110%, 0);
|
692
|
+
visibility: visible;
|
693
|
+
}
|
694
|
+
to {
|
695
|
+
transform: translate3d(0, var(--y), 0);
|
696
|
+
}
|
697
|
+
}
|
698
|
+
|
699
|
+
@keyframes Toastify__slideInDown {
|
700
|
+
from {
|
701
|
+
transform: translate3d(0, -110%, 0);
|
702
|
+
visibility: visible;
|
703
|
+
}
|
704
|
+
to {
|
705
|
+
transform: translate3d(0, var(--y), 0);
|
706
|
+
}
|
707
|
+
}
|
708
|
+
|
709
|
+
@keyframes Toastify__slideOutRight {
|
710
|
+
from {
|
711
|
+
transform: translate3d(0, var(--y), 0);
|
712
|
+
}
|
713
|
+
to {
|
714
|
+
visibility: hidden;
|
715
|
+
transform: translate3d(110%, var(--y), 0);
|
716
|
+
}
|
717
|
+
}
|
718
|
+
|
719
|
+
@keyframes Toastify__slideOutLeft {
|
720
|
+
from {
|
721
|
+
transform: translate3d(0, var(--y), 0);
|
722
|
+
}
|
723
|
+
to {
|
724
|
+
visibility: hidden;
|
725
|
+
transform: translate3d(-110%, var(--y), 0);
|
726
|
+
}
|
727
|
+
}
|
728
|
+
|
729
|
+
@keyframes Toastify__slideOutDown {
|
730
|
+
from {
|
731
|
+
transform: translate3d(0, var(--y), 0);
|
732
|
+
}
|
733
|
+
to {
|
734
|
+
visibility: hidden;
|
735
|
+
transform: translate3d(0, 500px, 0);
|
736
|
+
}
|
737
|
+
}
|
738
|
+
|
739
|
+
@keyframes Toastify__slideOutUp {
|
740
|
+
from {
|
741
|
+
transform: translate3d(0, var(--y), 0);
|
742
|
+
}
|
743
|
+
to {
|
744
|
+
visibility: hidden;
|
745
|
+
transform: translate3d(0, -500px, 0);
|
746
|
+
}
|
747
|
+
}
|
748
|
+
|
749
|
+
.Toastify__slide-enter--top-left,
|
750
|
+
.Toastify__slide-enter--bottom-left {
|
751
|
+
animation-name: Toastify__slideInLeft;
|
752
|
+
}
|
753
|
+
|
754
|
+
.Toastify__slide-enter--top-right,
|
755
|
+
.Toastify__slide-enter--bottom-right {
|
756
|
+
animation-name: Toastify__slideInRight;
|
757
|
+
}
|
758
|
+
|
759
|
+
.Toastify__slide-enter--top-center {
|
760
|
+
animation-name: Toastify__slideInDown;
|
761
|
+
}
|
762
|
+
|
763
|
+
.Toastify__slide-enter--bottom-center {
|
764
|
+
animation-name: Toastify__slideInUp;
|
765
|
+
}
|
766
|
+
|
767
|
+
.Toastify__slide-exit--top-left,
|
768
|
+
.Toastify__slide-exit--bottom-left {
|
769
|
+
animation-name: Toastify__slideOutLeft;
|
770
|
+
animation-timing-function: ease-in;
|
771
|
+
animation-duration: 0.3s;
|
772
|
+
}
|
773
|
+
|
774
|
+
.Toastify__slide-exit--top-right,
|
775
|
+
.Toastify__slide-exit--bottom-right {
|
776
|
+
animation-name: Toastify__slideOutRight;
|
777
|
+
animation-timing-function: ease-in;
|
778
|
+
animation-duration: 0.3s;
|
779
|
+
}
|
780
|
+
|
781
|
+
.Toastify__slide-exit--top-center {
|
782
|
+
animation-name: Toastify__slideOutUp;
|
783
|
+
animation-timing-function: ease-in;
|
784
|
+
animation-duration: 0.3s;
|
785
|
+
}
|
786
|
+
|
787
|
+
.Toastify__slide-exit--bottom-center {
|
788
|
+
animation-name: Toastify__slideOutDown;
|
789
|
+
animation-timing-function: ease-in;
|
790
|
+
animation-duration: 0.3s;
|
791
|
+
}
|
792
|
+
|
793
|
+
@keyframes Toastify__spin {
|
794
|
+
from {
|
795
|
+
transform: rotate(0deg);
|
796
|
+
}
|
797
|
+
to {
|
798
|
+
transform: rotate(360deg);
|
799
|
+
}
|
800
|
+
}
|