wini-web-components 2.8.1 → 2.8.4

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