@bikdotai/bik-component-library 0.0.8 → 0.0.9-beta.0

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.
@@ -1,621 +1 @@
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: #e74c3c;
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-background: #fff;
15
- --toastify-toast-min-height: 64px;
16
- --toastify-toast-max-height: 800px;
17
- --toastify-font-family: sans-serif;
18
- --toastify-z-index: 9999;
19
- --toastify-text-color-light: #757575;
20
- --toastify-text-color-dark: #fff;
21
- --toastify-text-color-info: #fff;
22
- --toastify-text-color-success: #fff;
23
- --toastify-text-color-warning: #fff;
24
- --toastify-text-color-error: #fff;
25
- --toastify-spinner-color: #616161;
26
- --toastify-spinner-color-empty-area: #e0e0e0;
27
- --toastify-color-progress-light: linear-gradient(
28
- to right,
29
- #4cd964,
30
- #5ac8fa,
31
- #007aff,
32
- #34aadc,
33
- #5856d6,
34
- #ff2d55
35
- );
36
- --toastify-color-progress-dark: #bb86fc;
37
- --toastify-color-progress-info: var(--toastify-color-info);
38
- --toastify-color-progress-success: var(--toastify-color-success);
39
- --toastify-color-progress-warning: var(--toastify-color-warning);
40
- --toastify-color-progress-error: var(--toastify-color-error);
41
- }
42
-
43
- .Toastify__toast-container {
44
- z-index: var(--toastify-z-index);
45
- -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
46
- position: fixed;
47
- padding: 4px;
48
- width: var(--toastify-toast-width);
49
- box-sizing: border-box;
50
- color: #fff;
51
- }
52
- .Toastify__toast-container--top-left {
53
- top: 1em;
54
- left: 1em;
55
- }
56
- .Toastify__toast-container--top-center {
57
- top: 1em;
58
- left: 50%;
59
- transform: translateX(-50%);
60
- }
61
- .Toastify__toast-container--top-right {
62
- top: 1em;
63
- right: 1em;
64
- }
65
- .Toastify__toast-container--bottom-left {
66
- bottom: 1em;
67
- left: 1em;
68
- }
69
- .Toastify__toast-container--bottom-center {
70
- bottom: 1em;
71
- left: 50%;
72
- transform: translateX(-50%);
73
- }
74
- .Toastify__toast-container--bottom-right {
75
- bottom: 1em;
76
- right: 1em;
77
- }
78
-
79
- @media only screen and (max-width : 480px) {
80
- .Toastify__toast-container {
81
- width: 100vw;
82
- padding: 0;
83
- left: 0;
84
- margin: 0;
85
- }
86
- .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
87
- top: 0;
88
- transform: translateX(0);
89
- }
90
- .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
91
- bottom: 0;
92
- transform: translateX(0);
93
- }
94
- .Toastify__toast-container--rtl {
95
- right: 0;
96
- left: initial;
97
- }
98
- }
99
- .Toastify__toast {
100
- position: relative;
101
- min-height: var(--toastify-toast-min-height);
102
- box-sizing: border-box;
103
- margin-bottom: 1rem;
104
- padding: 8px;
105
- border-radius: 4px;
106
- box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
107
- display: -ms-flexbox;
108
- display: flex;
109
- -ms-flex-pack: justify;
110
- justify-content: space-between;
111
- max-height: var(--toastify-toast-max-height);
112
- overflow: hidden;
113
- font-family: var(--toastify-font-family);
114
- cursor: default;
115
- direction: ltr;
116
- /* webkit only issue #791 */
117
- z-index: 0;
118
- }
119
- .Toastify__toast--rtl {
120
- direction: rtl;
121
- }
122
- .Toastify__toast--close-on-click {
123
- cursor: pointer;
124
- }
125
- .Toastify__toast-body {
126
- margin: auto 0;
127
- -ms-flex: 1 1 auto;
128
- flex: 1 1 auto;
129
- padding: 6px;
130
- display: -ms-flexbox;
131
- display: flex;
132
- -ms-flex-align: center;
133
- align-items: center;
134
- }
135
- .Toastify__toast-body > div:last-child {
136
- word-break: break-word;
137
- -ms-flex: 1;
138
- flex: 1;
139
- }
140
- .Toastify__toast-icon {
141
- -webkit-margin-end: 10px;
142
- margin-inline-end: 10px;
143
- width: 20px;
144
- -ms-flex-negative: 0;
145
- flex-shrink: 0;
146
- display: -ms-flexbox;
147
- display: flex;
148
- }
149
-
150
- .Toastify--animate {
151
- animation-fill-mode: both;
152
- animation-duration: 0.7s;
153
- }
154
-
155
- .Toastify--animate-icon {
156
- animation-fill-mode: both;
157
- animation-duration: 0.3s;
158
- }
159
-
160
- @media only screen and (max-width : 480px) {
161
- .Toastify__toast {
162
- margin-bottom: 0;
163
- border-radius: 0;
164
- }
165
- }
166
- .Toastify__toast-theme--dark {
167
- background: var(--toastify-color-dark);
168
- color: var(--toastify-text-color-dark);
169
- }
170
- .Toastify__toast-theme--light {
171
- background: var(--toastify-color-light);
172
- color: var(--toastify-text-color-light);
173
- }
174
- .Toastify__toast-theme--colored.Toastify__toast--default {
175
- background: var(--toastify-color-light);
176
- color: var(--toastify-text-color-light);
177
- }
178
- .Toastify__toast-theme--colored.Toastify__toast--info {
179
- color: var(--toastify-text-color-info);
180
- background: var(--toastify-color-info);
181
- }
182
- .Toastify__toast-theme--colored.Toastify__toast--success {
183
- color: var(--toastify-text-color-success);
184
- background: var(--toastify-color-success);
185
- }
186
- .Toastify__toast-theme--colored.Toastify__toast--warning {
187
- color: var(--toastify-text-color-warning);
188
- background: var(--toastify-color-warning);
189
- }
190
- .Toastify__toast-theme--colored.Toastify__toast--error {
191
- color: var(--toastify-text-color-error);
192
- background: var(--toastify-color-error);
193
- }
194
-
195
- .Toastify__progress-bar-theme--light {
196
- background: var(--toastify-color-progress-light);
197
- }
198
- .Toastify__progress-bar-theme--dark {
199
- background: var(--toastify-color-progress-dark);
200
- }
201
- .Toastify__progress-bar--info {
202
- background: var(--toastify-color-progress-info);
203
- }
204
- .Toastify__progress-bar--success {
205
- background: var(--toastify-color-progress-success);
206
- }
207
- .Toastify__progress-bar--warning {
208
- background: var(--toastify-color-progress-warning);
209
- }
210
- .Toastify__progress-bar--error {
211
- background: var(--toastify-color-progress-error);
212
- }
213
- .Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
214
- background: var(--toastify-color-transparent);
215
- }
216
-
217
- .Toastify__close-button {
218
- color: #fff;
219
- background: transparent;
220
- outline: none;
221
- border: none;
222
- padding: 0;
223
- cursor: pointer;
224
- opacity: 0.7;
225
- transition: 0.3s ease;
226
- -ms-flex-item-align: start;
227
- align-self: flex-start;
228
- }
229
- .Toastify__close-button--light {
230
- color: #000;
231
- opacity: 0.3;
232
- }
233
- .Toastify__close-button > svg {
234
- fill: currentColor;
235
- height: 16px;
236
- width: 14px;
237
- }
238
- .Toastify__close-button:hover, .Toastify__close-button:focus {
239
- opacity: 1;
240
- }
241
-
242
- @keyframes Toastify__trackProgress {
243
- 0% {
244
- transform: scaleX(1);
245
- }
246
- 100% {
247
- transform: scaleX(0);
248
- }
249
- }
250
- .Toastify__progress-bar {
251
- position: absolute;
252
- bottom: 0;
253
- left: 0;
254
- width: 100%;
255
- height: 5px;
256
- z-index: var(--toastify-z-index);
257
- opacity: 0.7;
258
- transform-origin: left;
259
- }
260
- .Toastify__progress-bar--animated {
261
- animation: Toastify__trackProgress linear 1 forwards;
262
- }
263
- .Toastify__progress-bar--controlled {
264
- transition: transform 0.2s;
265
- }
266
- .Toastify__progress-bar--rtl {
267
- right: 0;
268
- left: initial;
269
- transform-origin: right;
270
- }
271
-
272
- .Toastify__spinner {
273
- width: 20px;
274
- height: 20px;
275
- box-sizing: border-box;
276
- border: 2px solid;
277
- border-radius: 100%;
278
- border-color: var(--toastify-spinner-color-empty-area);
279
- border-right-color: var(--toastify-spinner-color);
280
- animation: Toastify__spin 0.65s linear infinite;
281
- }
282
-
283
- @keyframes Toastify__bounceInRight {
284
- from, 60%, 75%, 90%, to {
285
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
286
- }
287
- from {
288
- opacity: 0;
289
- transform: translate3d(3000px, 0, 0);
290
- }
291
- 60% {
292
- opacity: 1;
293
- transform: translate3d(-25px, 0, 0);
294
- }
295
- 75% {
296
- transform: translate3d(10px, 0, 0);
297
- }
298
- 90% {
299
- transform: translate3d(-5px, 0, 0);
300
- }
301
- to {
302
- transform: none;
303
- }
304
- }
305
- @keyframes Toastify__bounceOutRight {
306
- 20% {
307
- opacity: 1;
308
- transform: translate3d(-20px, 0, 0);
309
- }
310
- to {
311
- opacity: 0;
312
- transform: translate3d(2000px, 0, 0);
313
- }
314
- }
315
- @keyframes Toastify__bounceInLeft {
316
- from, 60%, 75%, 90%, to {
317
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
318
- }
319
- 0% {
320
- opacity: 0;
321
- transform: translate3d(-3000px, 0, 0);
322
- }
323
- 60% {
324
- opacity: 1;
325
- transform: translate3d(25px, 0, 0);
326
- }
327
- 75% {
328
- transform: translate3d(-10px, 0, 0);
329
- }
330
- 90% {
331
- transform: translate3d(5px, 0, 0);
332
- }
333
- to {
334
- transform: none;
335
- }
336
- }
337
- @keyframes Toastify__bounceOutLeft {
338
- 20% {
339
- opacity: 1;
340
- transform: translate3d(20px, 0, 0);
341
- }
342
- to {
343
- opacity: 0;
344
- transform: translate3d(-2000px, 0, 0);
345
- }
346
- }
347
- @keyframes Toastify__bounceInUp {
348
- from, 60%, 75%, 90%, to {
349
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
350
- }
351
- from {
352
- opacity: 0;
353
- transform: translate3d(0, 3000px, 0);
354
- }
355
- 60% {
356
- opacity: 1;
357
- transform: translate3d(0, -20px, 0);
358
- }
359
- 75% {
360
- transform: translate3d(0, 10px, 0);
361
- }
362
- 90% {
363
- transform: translate3d(0, -5px, 0);
364
- }
365
- to {
366
- transform: translate3d(0, 0, 0);
367
- }
368
- }
369
- @keyframes Toastify__bounceOutUp {
370
- 20% {
371
- transform: translate3d(0, -10px, 0);
372
- }
373
- 40%, 45% {
374
- opacity: 1;
375
- transform: translate3d(0, 20px, 0);
376
- }
377
- to {
378
- opacity: 0;
379
- transform: translate3d(0, -2000px, 0);
380
- }
381
- }
382
- @keyframes Toastify__bounceInDown {
383
- from, 60%, 75%, 90%, to {
384
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
385
- }
386
- 0% {
387
- opacity: 0;
388
- transform: translate3d(0, -3000px, 0);
389
- }
390
- 60% {
391
- opacity: 1;
392
- transform: translate3d(0, 25px, 0);
393
- }
394
- 75% {
395
- transform: translate3d(0, -10px, 0);
396
- }
397
- 90% {
398
- transform: translate3d(0, 5px, 0);
399
- }
400
- to {
401
- transform: none;
402
- }
403
- }
404
- @keyframes Toastify__bounceOutDown {
405
- 20% {
406
- transform: translate3d(0, 10px, 0);
407
- }
408
- 40%, 45% {
409
- opacity: 1;
410
- transform: translate3d(0, -20px, 0);
411
- }
412
- to {
413
- opacity: 0;
414
- transform: translate3d(0, 2000px, 0);
415
- }
416
- }
417
- .Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
418
- animation-name: Toastify__bounceInLeft;
419
- }
420
- .Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
421
- animation-name: Toastify__bounceInRight;
422
- }
423
- .Toastify__bounce-enter--top-center {
424
- animation-name: Toastify__bounceInDown;
425
- }
426
- .Toastify__bounce-enter--bottom-center {
427
- animation-name: Toastify__bounceInUp;
428
- }
429
-
430
- .Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
431
- animation-name: Toastify__bounceOutLeft;
432
- }
433
- .Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
434
- animation-name: Toastify__bounceOutRight;
435
- }
436
- .Toastify__bounce-exit--top-center {
437
- animation-name: Toastify__bounceOutUp;
438
- }
439
- .Toastify__bounce-exit--bottom-center {
440
- animation-name: Toastify__bounceOutDown;
441
- }
442
-
443
- @keyframes Toastify__zoomIn {
444
- from {
445
- opacity: 0;
446
- transform: scale3d(0.3, 0.3, 0.3);
447
- }
448
- 50% {
449
- opacity: 1;
450
- }
451
- }
452
- @keyframes Toastify__zoomOut {
453
- from {
454
- opacity: 1;
455
- }
456
- 50% {
457
- opacity: 0;
458
- transform: scale3d(0.3, 0.3, 0.3);
459
- }
460
- to {
461
- opacity: 0;
462
- }
463
- }
464
- .Toastify__zoom-enter {
465
- animation-name: Toastify__zoomIn;
466
- }
467
-
468
- .Toastify__zoom-exit {
469
- animation-name: Toastify__zoomOut;
470
- }
471
-
472
- @keyframes Toastify__flipIn {
473
- from {
474
- transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
475
- animation-timing-function: ease-in;
476
- opacity: 0;
477
- }
478
- 40% {
479
- transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
480
- animation-timing-function: ease-in;
481
- }
482
- 60% {
483
- transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
484
- opacity: 1;
485
- }
486
- 80% {
487
- transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
488
- }
489
- to {
490
- transform: perspective(400px);
491
- }
492
- }
493
- @keyframes Toastify__flipOut {
494
- from {
495
- transform: perspective(400px);
496
- }
497
- 30% {
498
- transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
499
- opacity: 1;
500
- }
501
- to {
502
- transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
503
- opacity: 0;
504
- }
505
- }
506
- .Toastify__flip-enter {
507
- animation-name: Toastify__flipIn;
508
- }
509
-
510
- .Toastify__flip-exit {
511
- animation-name: Toastify__flipOut;
512
- }
513
-
514
- @keyframes Toastify__slideInRight {
515
- from {
516
- transform: translate3d(110%, 0, 0);
517
- visibility: visible;
518
- }
519
- to {
520
- transform: translate3d(0, 0, 0);
521
- }
522
- }
523
- @keyframes Toastify__slideInLeft {
524
- from {
525
- transform: translate3d(-110%, 0, 0);
526
- visibility: visible;
527
- }
528
- to {
529
- transform: translate3d(0, 0, 0);
530
- }
531
- }
532
- @keyframes Toastify__slideInUp {
533
- from {
534
- transform: translate3d(0, 110%, 0);
535
- visibility: visible;
536
- }
537
- to {
538
- transform: translate3d(0, 0, 0);
539
- }
540
- }
541
- @keyframes Toastify__slideInDown {
542
- from {
543
- transform: translate3d(0, -110%, 0);
544
- visibility: visible;
545
- }
546
- to {
547
- transform: translate3d(0, 0, 0);
548
- }
549
- }
550
- @keyframes Toastify__slideOutRight {
551
- from {
552
- transform: translate3d(0, 0, 0);
553
- }
554
- to {
555
- visibility: hidden;
556
- transform: translate3d(110%, 0, 0);
557
- }
558
- }
559
- @keyframes Toastify__slideOutLeft {
560
- from {
561
- transform: translate3d(0, 0, 0);
562
- }
563
- to {
564
- visibility: hidden;
565
- transform: translate3d(-110%, 0, 0);
566
- }
567
- }
568
- @keyframes Toastify__slideOutDown {
569
- from {
570
- transform: translate3d(0, 0, 0);
571
- }
572
- to {
573
- visibility: hidden;
574
- transform: translate3d(0, 500px, 0);
575
- }
576
- }
577
- @keyframes Toastify__slideOutUp {
578
- from {
579
- transform: translate3d(0, 0, 0);
580
- }
581
- to {
582
- visibility: hidden;
583
- transform: translate3d(0, -500px, 0);
584
- }
585
- }
586
- .Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
587
- animation-name: Toastify__slideInLeft;
588
- }
589
- .Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
590
- animation-name: Toastify__slideInRight;
591
- }
592
- .Toastify__slide-enter--top-center {
593
- animation-name: Toastify__slideInDown;
594
- }
595
- .Toastify__slide-enter--bottom-center {
596
- animation-name: Toastify__slideInUp;
597
- }
598
-
599
- .Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
600
- animation-name: Toastify__slideOutLeft;
601
- }
602
- .Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
603
- animation-name: Toastify__slideOutRight;
604
- }
605
- .Toastify__slide-exit--top-center {
606
- animation-name: Toastify__slideOutUp;
607
- }
608
- .Toastify__slide-exit--bottom-center {
609
- animation-name: Toastify__slideOutDown;
610
- }
611
-
612
- @keyframes Toastify__spin {
613
- from {
614
- transform: rotate(0deg);
615
- }
616
- to {
617
- transform: rotate(360deg);
618
- }
619
- }
620
-
621
- /*# sourceMappingURL=ReactToastify.css.map */
1
+ export default undefined;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export declare const WorkingStepper: () => JSX.Element;
2
3
  export declare enum STEPENUM {
3
4
  STEP1 = "STEP1",
@@ -0,0 +1 @@
1
+ :root{--toastify-color-light:#fff;--toastify-color-dark:#121212;--toastify-color-info:#3498db;--toastify-color-success:#07bc0c;--toastify-color-warning:#f1c40f;--toastify-color-error:#e74c3c;--toastify-color-transparent:#ffffffb3;--toastify-icon-color-info:var(--toastify-color-info);--toastify-icon-color-success:var(--toastify-color-success);--toastify-icon-color-warning:var(--toastify-color-warning);--toastify-icon-color-error:var(--toastify-color-error);--toastify-toast-width:320px;--toastify-toast-background:#fff;--toastify-toast-min-height:64px;--toastify-toast-max-height:800px;--toastify-font-family:sans-serif;--toastify-z-index:9999;--toastify-text-color-light:#757575;--toastify-text-color-dark:#fff;--toastify-text-color-info:#fff;--toastify-text-color-success:#fff;--toastify-text-color-warning:#fff;--toastify-text-color-error:#fff;--toastify-spinner-color:#616161;--toastify-spinner-color-empty-area:#e0e0e0;--toastify-color-progress-light:linear-gradient(90deg,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55);--toastify-color-progress-dark:#bb86fc;--toastify-color-progress-info:var(--toastify-color-info);--toastify-color-progress-success:var(--toastify-color-success);--toastify-color-progress-warning:var(--toastify-color-warning);--toastify-color-progress-error:var(--toastify-color-error)}.Toastify__toast-container{box-sizing:border-box;color:#fff;padding:4px;position:fixed;-webkit-transform:translateZ(var(--toastify-z-index));width:var(--toastify-toast-width);z-index:var(--toastify-z-index)}.Toastify__toast-container--top-left{left:1em;top:1em}.Toastify__toast-container--top-center{left:50%;top:1em;transform:translateX(-50%)}.Toastify__toast-container--top-right{right:1em;top:1em}.Toastify__toast-container--bottom-left{bottom:1em;left:1em}.Toastify__toast-container--bottom-center{bottom:1em;left:50%;transform:translateX(-50%)}.Toastify__toast-container--bottom-right{bottom:1em;right:1em}@media only screen and (max-width:480px){.Toastify__toast-container{left:0;margin:0;padding:0;width:100vw}.Toastify__toast-container--top-center,.Toastify__toast-container--top-left,.Toastify__toast-container--top-right{top:0;transform:translateX(0)}.Toastify__toast-container--bottom-center,.Toastify__toast-container--bottom-left,.Toastify__toast-container--bottom-right{bottom:0;transform:translateX(0)}.Toastify__toast-container--rtl{left:auto;right:0}}.Toastify__toast{-ms-flex-pack:justify;border-radius:4px;box-shadow:0 1px 10px 0 #0000001a,0 2px 15px 0 #0000000d;box-sizing:border-box;cursor:default;direction:ltr;display:-ms-flexbox;display:flex;font-family:var(--toastify-font-family);justify-content:space-between;margin-bottom:1rem;max-height:var(--toastify-toast-max-height);min-height:var(--toastify-toast-min-height);overflow:hidden;padding:8px;position:relative;z-index:0}.Toastify__toast--rtl{direction:rtl}.Toastify__toast--close-on-click{cursor:pointer}.Toastify__toast-body{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex:1 1 auto;flex:1 1 auto;margin:auto 0;padding:6px}.Toastify__toast-body>div:last-child{-ms-flex:1;flex:1;word-break:break-word}.Toastify__toast-icon{-webkit-margin-end:10px;-ms-flex-negative:0;display:-ms-flexbox;display:flex;flex-shrink:0;margin-inline-end:10px;width:20px}.Toastify--animate{animation-duration:.7s;animation-fill-mode:both}.Toastify--animate-icon{animation-duration:.3s;animation-fill-mode:both}@media only screen and (max-width:480px){.Toastify__toast{border-radius:0;margin-bottom:0}}.Toastify__toast-theme--dark{background:var(--toastify-color-dark);color:var(--toastify-text-color-dark)}.Toastify__toast-theme--colored.Toastify__toast--default,.Toastify__toast-theme--light{background:var(--toastify-color-light);color:var(--toastify-text-color-light)}.Toastify__toast-theme--colored.Toastify__toast--info{background:var(--toastify-color-info);color:var(--toastify-text-color-info)}.Toastify__toast-theme--colored.Toastify__toast--success{background:var(--toastify-color-success);color:var(--toastify-text-color-success)}.Toastify__toast-theme--colored.Toastify__toast--warning{background:var(--toastify-color-warning);color:var(--toastify-text-color-warning)}.Toastify__toast-theme--colored.Toastify__toast--error{background:var(--toastify-color-error);color:var(--toastify-text-color-error)}.Toastify__progress-bar-theme--light{background:var(--toastify-color-progress-light)}.Toastify__progress-bar-theme--dark{background:var(--toastify-color-progress-dark)}.Toastify__progress-bar--info{background:var(--toastify-color-progress-info)}.Toastify__progress-bar--success{background:var(--toastify-color-progress-success)}.Toastify__progress-bar--warning{background:var(--toastify-color-progress-warning)}.Toastify__progress-bar--error{background:var(--toastify-color-progress-error)}.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning{background:var(--toastify-color-transparent)}.Toastify__close-button{-ms-flex-item-align:start;align-self:flex-start;background:#0000;border:none;color:#fff;cursor:pointer;opacity:.7;outline:none;padding:0;transition:.3s ease}.Toastify__close-button--light{color:#000;opacity:.3}.Toastify__close-button>svg{fill:currentColor;height:16px;width:14px}.Toastify__close-button:focus,.Toastify__close-button:hover{opacity:1}@keyframes Toastify__trackProgress{0%{transform:scaleX(1)}to{transform:scaleX(0)}}.Toastify__progress-bar{bottom:0;height:5px;left:0;opacity:.7;position:absolute;transform-origin:left;width:100%;z-index:var(--toastify-z-index)}.Toastify__progress-bar--animated{animation:Toastify__trackProgress linear 1 forwards}.Toastify__progress-bar--controlled{transition:transform .2s}.Toastify__progress-bar--rtl{left:auto;right:0;transform-origin:right}.Toastify__spinner{animation:Toastify__spin .65s linear infinite;border:2px solid;border-color:var(--toastify-spinner-color-empty-area);border-radius:100%;border-right-color:var(--toastify-spinner-color);box-sizing:border-box;height:20px;width:20px}@keyframes Toastify__bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}to{transform:none}}@keyframes Toastify__bounceOutRight{20%{opacity:1;transform:translate3d(-20px,0,0)}to{opacity:0;transform:translate3d(2000px,0,0)}}@keyframes Toastify__bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}to{transform:none}}@keyframes Toastify__bounceOutLeft{20%{opacity:1;transform:translate3d(20px,0,0)}to{opacity:0;transform:translate3d(-2000px,0,0)}}@keyframes Toastify__bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0)}60%{opacity:1;transform:translate3d(0,-20px,0)}75%{transform:translate3d(0,10px,0)}90%{transform:translate3d(0,-5px,0)}to{transform:translateZ(0)}}@keyframes Toastify__bounceOutUp{20%{transform:translate3d(0,-10px,0)}40%,45%{opacity:1;transform:translate3d(0,20px,0)}to{opacity:0;transform:translate3d(0,-2000px,0)}}@keyframes Toastify__bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}to{transform:none}}@keyframes Toastify__bounceOutDown{20%{transform:translate3d(0,10px,0)}40%,45%{opacity:1;transform:translate3d(0,-20px,0)}to{opacity:0;transform:translate3d(0,2000px,0)}}.Toastify__bounce-enter--bottom-left,.Toastify__bounce-enter--top-left{animation-name:Toastify__bounceInLeft}.Toastify__bounce-enter--bottom-right,.Toastify__bounce-enter--top-right{animation-name:Toastify__bounceInRight}.Toastify__bounce-enter--top-center{animation-name:Toastify__bounceInDown}.Toastify__bounce-enter--bottom-center{animation-name:Toastify__bounceInUp}.Toastify__bounce-exit--bottom-left,.Toastify__bounce-exit--top-left{animation-name:Toastify__bounceOutLeft}.Toastify__bounce-exit--bottom-right,.Toastify__bounce-exit--top-right{animation-name:Toastify__bounceOutRight}.Toastify__bounce-exit--top-center{animation-name:Toastify__bounceOutUp}.Toastify__bounce-exit--bottom-center{animation-name:Toastify__bounceOutDown}@keyframes Toastify__zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes Toastify__zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.Toastify__zoom-enter{animation-name:Toastify__zoomIn}.Toastify__zoom-exit{animation-name:Toastify__zoomOut}@keyframes Toastify__flipIn{0%{animation-timing-function:ease-in;opacity:0;transform:perspective(400px) rotateX(90deg)}40%{animation-timing-function:ease-in;transform:perspective(400px) rotateX(-20deg)}60%{opacity:1;transform:perspective(400px) rotateX(10deg)}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}@keyframes Toastify__flipOut{0%{transform:perspective(400px)}30%{opacity:1;transform:perspective(400px) rotateX(-20deg)}to{opacity:0;transform:perspective(400px) rotateX(90deg)}}.Toastify__flip-enter{animation-name:Toastify__flipIn}.Toastify__flip-exit{animation-name:Toastify__flipOut}@keyframes Toastify__slideInRight{0%{transform:translate3d(110%,0,0);visibility:visible}to{transform:translateZ(0)}}@keyframes Toastify__slideInLeft{0%{transform:translate3d(-110%,0,0);visibility:visible}to{transform:translateZ(0)}}@keyframes Toastify__slideInUp{0%{transform:translate3d(0,110%,0);visibility:visible}to{transform:translateZ(0)}}@keyframes Toastify__slideInDown{0%{transform:translate3d(0,-110%,0);visibility:visible}to{transform:translateZ(0)}}@keyframes Toastify__slideOutRight{0%{transform:translateZ(0)}to{transform:translate3d(110%,0,0);visibility:hidden}}@keyframes Toastify__slideOutLeft{0%{transform:translateZ(0)}to{transform:translate3d(-110%,0,0);visibility:hidden}}@keyframes Toastify__slideOutDown{0%{transform:translateZ(0)}to{transform:translate3d(0,500px,0);visibility:hidden}}@keyframes Toastify__slideOutUp{0%{transform:translateZ(0)}to{transform:translate3d(0,-500px,0);visibility:hidden}}.Toastify__slide-enter--bottom-left,.Toastify__slide-enter--top-left{animation-name:Toastify__slideInLeft}.Toastify__slide-enter--bottom-right,.Toastify__slide-enter--top-right{animation-name:Toastify__slideInRight}.Toastify__slide-enter--top-center{animation-name:Toastify__slideInDown}.Toastify__slide-enter--bottom-center{animation-name:Toastify__slideInUp}.Toastify__slide-exit--bottom-left,.Toastify__slide-exit--top-left{animation-name:Toastify__slideOutLeft}.Toastify__slide-exit--bottom-right,.Toastify__slide-exit--top-right{animation-name:Toastify__slideOutRight}.Toastify__slide-exit--top-center{animation-name:Toastify__slideOutUp}.Toastify__slide-exit--bottom-center{animation-name:Toastify__slideOutDown}@keyframes Toastify__spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}
@@ -1,621 +1 @@
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: #e74c3c;
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-background: #fff;
15
- --toastify-toast-min-height: 64px;
16
- --toastify-toast-max-height: 800px;
17
- --toastify-font-family: sans-serif;
18
- --toastify-z-index: 9999;
19
- --toastify-text-color-light: #757575;
20
- --toastify-text-color-dark: #fff;
21
- --toastify-text-color-info: #fff;
22
- --toastify-text-color-success: #fff;
23
- --toastify-text-color-warning: #fff;
24
- --toastify-text-color-error: #fff;
25
- --toastify-spinner-color: #616161;
26
- --toastify-spinner-color-empty-area: #e0e0e0;
27
- --toastify-color-progress-light: linear-gradient(
28
- to right,
29
- #4cd964,
30
- #5ac8fa,
31
- #007aff,
32
- #34aadc,
33
- #5856d6,
34
- #ff2d55
35
- );
36
- --toastify-color-progress-dark: #bb86fc;
37
- --toastify-color-progress-info: var(--toastify-color-info);
38
- --toastify-color-progress-success: var(--toastify-color-success);
39
- --toastify-color-progress-warning: var(--toastify-color-warning);
40
- --toastify-color-progress-error: var(--toastify-color-error);
41
- }
42
-
43
- .Toastify__toast-container {
44
- z-index: var(--toastify-z-index);
45
- -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
46
- position: fixed;
47
- padding: 4px;
48
- width: var(--toastify-toast-width);
49
- box-sizing: border-box;
50
- color: #fff;
51
- }
52
- .Toastify__toast-container--top-left {
53
- top: 1em;
54
- left: 1em;
55
- }
56
- .Toastify__toast-container--top-center {
57
- top: 1em;
58
- left: 50%;
59
- transform: translateX(-50%);
60
- }
61
- .Toastify__toast-container--top-right {
62
- top: 1em;
63
- right: 1em;
64
- }
65
- .Toastify__toast-container--bottom-left {
66
- bottom: 1em;
67
- left: 1em;
68
- }
69
- .Toastify__toast-container--bottom-center {
70
- bottom: 1em;
71
- left: 50%;
72
- transform: translateX(-50%);
73
- }
74
- .Toastify__toast-container--bottom-right {
75
- bottom: 1em;
76
- right: 1em;
77
- }
78
-
79
- @media only screen and (max-width : 480px) {
80
- .Toastify__toast-container {
81
- width: 100vw;
82
- padding: 0;
83
- left: 0;
84
- margin: 0;
85
- }
86
- .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
87
- top: 0;
88
- transform: translateX(0);
89
- }
90
- .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
91
- bottom: 0;
92
- transform: translateX(0);
93
- }
94
- .Toastify__toast-container--rtl {
95
- right: 0;
96
- left: initial;
97
- }
98
- }
99
- .Toastify__toast {
100
- position: relative;
101
- min-height: var(--toastify-toast-min-height);
102
- box-sizing: border-box;
103
- margin-bottom: 1rem;
104
- padding: 8px;
105
- border-radius: 4px;
106
- box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
107
- display: -ms-flexbox;
108
- display: flex;
109
- -ms-flex-pack: justify;
110
- justify-content: space-between;
111
- max-height: var(--toastify-toast-max-height);
112
- overflow: hidden;
113
- font-family: var(--toastify-font-family);
114
- cursor: default;
115
- direction: ltr;
116
- /* webkit only issue #791 */
117
- z-index: 0;
118
- }
119
- .Toastify__toast--rtl {
120
- direction: rtl;
121
- }
122
- .Toastify__toast--close-on-click {
123
- cursor: pointer;
124
- }
125
- .Toastify__toast-body {
126
- margin: auto 0;
127
- -ms-flex: 1 1 auto;
128
- flex: 1 1 auto;
129
- padding: 6px;
130
- display: -ms-flexbox;
131
- display: flex;
132
- -ms-flex-align: center;
133
- align-items: center;
134
- }
135
- .Toastify__toast-body > div:last-child {
136
- word-break: break-word;
137
- -ms-flex: 1;
138
- flex: 1;
139
- }
140
- .Toastify__toast-icon {
141
- -webkit-margin-end: 10px;
142
- margin-inline-end: 10px;
143
- width: 20px;
144
- -ms-flex-negative: 0;
145
- flex-shrink: 0;
146
- display: -ms-flexbox;
147
- display: flex;
148
- }
149
-
150
- .Toastify--animate {
151
- animation-fill-mode: both;
152
- animation-duration: 0.7s;
153
- }
154
-
155
- .Toastify--animate-icon {
156
- animation-fill-mode: both;
157
- animation-duration: 0.3s;
158
- }
159
-
160
- @media only screen and (max-width : 480px) {
161
- .Toastify__toast {
162
- margin-bottom: 0;
163
- border-radius: 0;
164
- }
165
- }
166
- .Toastify__toast-theme--dark {
167
- background: var(--toastify-color-dark);
168
- color: var(--toastify-text-color-dark);
169
- }
170
- .Toastify__toast-theme--light {
171
- background: var(--toastify-color-light);
172
- color: var(--toastify-text-color-light);
173
- }
174
- .Toastify__toast-theme--colored.Toastify__toast--default {
175
- background: var(--toastify-color-light);
176
- color: var(--toastify-text-color-light);
177
- }
178
- .Toastify__toast-theme--colored.Toastify__toast--info {
179
- color: var(--toastify-text-color-info);
180
- background: var(--toastify-color-info);
181
- }
182
- .Toastify__toast-theme--colored.Toastify__toast--success {
183
- color: var(--toastify-text-color-success);
184
- background: var(--toastify-color-success);
185
- }
186
- .Toastify__toast-theme--colored.Toastify__toast--warning {
187
- color: var(--toastify-text-color-warning);
188
- background: var(--toastify-color-warning);
189
- }
190
- .Toastify__toast-theme--colored.Toastify__toast--error {
191
- color: var(--toastify-text-color-error);
192
- background: var(--toastify-color-error);
193
- }
194
-
195
- .Toastify__progress-bar-theme--light {
196
- background: var(--toastify-color-progress-light);
197
- }
198
- .Toastify__progress-bar-theme--dark {
199
- background: var(--toastify-color-progress-dark);
200
- }
201
- .Toastify__progress-bar--info {
202
- background: var(--toastify-color-progress-info);
203
- }
204
- .Toastify__progress-bar--success {
205
- background: var(--toastify-color-progress-success);
206
- }
207
- .Toastify__progress-bar--warning {
208
- background: var(--toastify-color-progress-warning);
209
- }
210
- .Toastify__progress-bar--error {
211
- background: var(--toastify-color-progress-error);
212
- }
213
- .Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
214
- background: var(--toastify-color-transparent);
215
- }
216
-
217
- .Toastify__close-button {
218
- color: #fff;
219
- background: transparent;
220
- outline: none;
221
- border: none;
222
- padding: 0;
223
- cursor: pointer;
224
- opacity: 0.7;
225
- transition: 0.3s ease;
226
- -ms-flex-item-align: start;
227
- align-self: flex-start;
228
- }
229
- .Toastify__close-button--light {
230
- color: #000;
231
- opacity: 0.3;
232
- }
233
- .Toastify__close-button > svg {
234
- fill: currentColor;
235
- height: 16px;
236
- width: 14px;
237
- }
238
- .Toastify__close-button:hover, .Toastify__close-button:focus {
239
- opacity: 1;
240
- }
241
-
242
- @keyframes Toastify__trackProgress {
243
- 0% {
244
- transform: scaleX(1);
245
- }
246
- 100% {
247
- transform: scaleX(0);
248
- }
249
- }
250
- .Toastify__progress-bar {
251
- position: absolute;
252
- bottom: 0;
253
- left: 0;
254
- width: 100%;
255
- height: 5px;
256
- z-index: var(--toastify-z-index);
257
- opacity: 0.7;
258
- transform-origin: left;
259
- }
260
- .Toastify__progress-bar--animated {
261
- animation: Toastify__trackProgress linear 1 forwards;
262
- }
263
- .Toastify__progress-bar--controlled {
264
- transition: transform 0.2s;
265
- }
266
- .Toastify__progress-bar--rtl {
267
- right: 0;
268
- left: initial;
269
- transform-origin: right;
270
- }
271
-
272
- .Toastify__spinner {
273
- width: 20px;
274
- height: 20px;
275
- box-sizing: border-box;
276
- border: 2px solid;
277
- border-radius: 100%;
278
- border-color: var(--toastify-spinner-color-empty-area);
279
- border-right-color: var(--toastify-spinner-color);
280
- animation: Toastify__spin 0.65s linear infinite;
281
- }
282
-
283
- @keyframes Toastify__bounceInRight {
284
- from, 60%, 75%, 90%, to {
285
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
286
- }
287
- from {
288
- opacity: 0;
289
- transform: translate3d(3000px, 0, 0);
290
- }
291
- 60% {
292
- opacity: 1;
293
- transform: translate3d(-25px, 0, 0);
294
- }
295
- 75% {
296
- transform: translate3d(10px, 0, 0);
297
- }
298
- 90% {
299
- transform: translate3d(-5px, 0, 0);
300
- }
301
- to {
302
- transform: none;
303
- }
304
- }
305
- @keyframes Toastify__bounceOutRight {
306
- 20% {
307
- opacity: 1;
308
- transform: translate3d(-20px, 0, 0);
309
- }
310
- to {
311
- opacity: 0;
312
- transform: translate3d(2000px, 0, 0);
313
- }
314
- }
315
- @keyframes Toastify__bounceInLeft {
316
- from, 60%, 75%, 90%, to {
317
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
318
- }
319
- 0% {
320
- opacity: 0;
321
- transform: translate3d(-3000px, 0, 0);
322
- }
323
- 60% {
324
- opacity: 1;
325
- transform: translate3d(25px, 0, 0);
326
- }
327
- 75% {
328
- transform: translate3d(-10px, 0, 0);
329
- }
330
- 90% {
331
- transform: translate3d(5px, 0, 0);
332
- }
333
- to {
334
- transform: none;
335
- }
336
- }
337
- @keyframes Toastify__bounceOutLeft {
338
- 20% {
339
- opacity: 1;
340
- transform: translate3d(20px, 0, 0);
341
- }
342
- to {
343
- opacity: 0;
344
- transform: translate3d(-2000px, 0, 0);
345
- }
346
- }
347
- @keyframes Toastify__bounceInUp {
348
- from, 60%, 75%, 90%, to {
349
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
350
- }
351
- from {
352
- opacity: 0;
353
- transform: translate3d(0, 3000px, 0);
354
- }
355
- 60% {
356
- opacity: 1;
357
- transform: translate3d(0, -20px, 0);
358
- }
359
- 75% {
360
- transform: translate3d(0, 10px, 0);
361
- }
362
- 90% {
363
- transform: translate3d(0, -5px, 0);
364
- }
365
- to {
366
- transform: translate3d(0, 0, 0);
367
- }
368
- }
369
- @keyframes Toastify__bounceOutUp {
370
- 20% {
371
- transform: translate3d(0, -10px, 0);
372
- }
373
- 40%, 45% {
374
- opacity: 1;
375
- transform: translate3d(0, 20px, 0);
376
- }
377
- to {
378
- opacity: 0;
379
- transform: translate3d(0, -2000px, 0);
380
- }
381
- }
382
- @keyframes Toastify__bounceInDown {
383
- from, 60%, 75%, 90%, to {
384
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
385
- }
386
- 0% {
387
- opacity: 0;
388
- transform: translate3d(0, -3000px, 0);
389
- }
390
- 60% {
391
- opacity: 1;
392
- transform: translate3d(0, 25px, 0);
393
- }
394
- 75% {
395
- transform: translate3d(0, -10px, 0);
396
- }
397
- 90% {
398
- transform: translate3d(0, 5px, 0);
399
- }
400
- to {
401
- transform: none;
402
- }
403
- }
404
- @keyframes Toastify__bounceOutDown {
405
- 20% {
406
- transform: translate3d(0, 10px, 0);
407
- }
408
- 40%, 45% {
409
- opacity: 1;
410
- transform: translate3d(0, -20px, 0);
411
- }
412
- to {
413
- opacity: 0;
414
- transform: translate3d(0, 2000px, 0);
415
- }
416
- }
417
- .Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
418
- animation-name: Toastify__bounceInLeft;
419
- }
420
- .Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
421
- animation-name: Toastify__bounceInRight;
422
- }
423
- .Toastify__bounce-enter--top-center {
424
- animation-name: Toastify__bounceInDown;
425
- }
426
- .Toastify__bounce-enter--bottom-center {
427
- animation-name: Toastify__bounceInUp;
428
- }
429
-
430
- .Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
431
- animation-name: Toastify__bounceOutLeft;
432
- }
433
- .Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
434
- animation-name: Toastify__bounceOutRight;
435
- }
436
- .Toastify__bounce-exit--top-center {
437
- animation-name: Toastify__bounceOutUp;
438
- }
439
- .Toastify__bounce-exit--bottom-center {
440
- animation-name: Toastify__bounceOutDown;
441
- }
442
-
443
- @keyframes Toastify__zoomIn {
444
- from {
445
- opacity: 0;
446
- transform: scale3d(0.3, 0.3, 0.3);
447
- }
448
- 50% {
449
- opacity: 1;
450
- }
451
- }
452
- @keyframes Toastify__zoomOut {
453
- from {
454
- opacity: 1;
455
- }
456
- 50% {
457
- opacity: 0;
458
- transform: scale3d(0.3, 0.3, 0.3);
459
- }
460
- to {
461
- opacity: 0;
462
- }
463
- }
464
- .Toastify__zoom-enter {
465
- animation-name: Toastify__zoomIn;
466
- }
467
-
468
- .Toastify__zoom-exit {
469
- animation-name: Toastify__zoomOut;
470
- }
471
-
472
- @keyframes Toastify__flipIn {
473
- from {
474
- transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
475
- animation-timing-function: ease-in;
476
- opacity: 0;
477
- }
478
- 40% {
479
- transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
480
- animation-timing-function: ease-in;
481
- }
482
- 60% {
483
- transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
484
- opacity: 1;
485
- }
486
- 80% {
487
- transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
488
- }
489
- to {
490
- transform: perspective(400px);
491
- }
492
- }
493
- @keyframes Toastify__flipOut {
494
- from {
495
- transform: perspective(400px);
496
- }
497
- 30% {
498
- transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
499
- opacity: 1;
500
- }
501
- to {
502
- transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
503
- opacity: 0;
504
- }
505
- }
506
- .Toastify__flip-enter {
507
- animation-name: Toastify__flipIn;
508
- }
509
-
510
- .Toastify__flip-exit {
511
- animation-name: Toastify__flipOut;
512
- }
513
-
514
- @keyframes Toastify__slideInRight {
515
- from {
516
- transform: translate3d(110%, 0, 0);
517
- visibility: visible;
518
- }
519
- to {
520
- transform: translate3d(0, 0, 0);
521
- }
522
- }
523
- @keyframes Toastify__slideInLeft {
524
- from {
525
- transform: translate3d(-110%, 0, 0);
526
- visibility: visible;
527
- }
528
- to {
529
- transform: translate3d(0, 0, 0);
530
- }
531
- }
532
- @keyframes Toastify__slideInUp {
533
- from {
534
- transform: translate3d(0, 110%, 0);
535
- visibility: visible;
536
- }
537
- to {
538
- transform: translate3d(0, 0, 0);
539
- }
540
- }
541
- @keyframes Toastify__slideInDown {
542
- from {
543
- transform: translate3d(0, -110%, 0);
544
- visibility: visible;
545
- }
546
- to {
547
- transform: translate3d(0, 0, 0);
548
- }
549
- }
550
- @keyframes Toastify__slideOutRight {
551
- from {
552
- transform: translate3d(0, 0, 0);
553
- }
554
- to {
555
- visibility: hidden;
556
- transform: translate3d(110%, 0, 0);
557
- }
558
- }
559
- @keyframes Toastify__slideOutLeft {
560
- from {
561
- transform: translate3d(0, 0, 0);
562
- }
563
- to {
564
- visibility: hidden;
565
- transform: translate3d(-110%, 0, 0);
566
- }
567
- }
568
- @keyframes Toastify__slideOutDown {
569
- from {
570
- transform: translate3d(0, 0, 0);
571
- }
572
- to {
573
- visibility: hidden;
574
- transform: translate3d(0, 500px, 0);
575
- }
576
- }
577
- @keyframes Toastify__slideOutUp {
578
- from {
579
- transform: translate3d(0, 0, 0);
580
- }
581
- to {
582
- visibility: hidden;
583
- transform: translate3d(0, -500px, 0);
584
- }
585
- }
586
- .Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
587
- animation-name: Toastify__slideInLeft;
588
- }
589
- .Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
590
- animation-name: Toastify__slideInRight;
591
- }
592
- .Toastify__slide-enter--top-center {
593
- animation-name: Toastify__slideInDown;
594
- }
595
- .Toastify__slide-enter--bottom-center {
596
- animation-name: Toastify__slideInUp;
597
- }
598
-
599
- .Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
600
- animation-name: Toastify__slideOutLeft;
601
- }
602
- .Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
603
- animation-name: Toastify__slideOutRight;
604
- }
605
- .Toastify__slide-exit--top-center {
606
- animation-name: Toastify__slideOutUp;
607
- }
608
- .Toastify__slide-exit--bottom-center {
609
- animation-name: Toastify__slideOutDown;
610
- }
611
-
612
- @keyframes Toastify__spin {
613
- from {
614
- transform: rotate(0deg);
615
- }
616
- to {
617
- transform: rotate(360deg);
618
- }
619
- }
620
-
621
- /*# sourceMappingURL=ReactToastify.css.map */
1
+ export default undefined;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export declare const WorkingStepper: () => JSX.Element;
2
3
  export declare enum STEPENUM {
3
4
  STEP1 = "STEP1",
@@ -0,0 +1 @@
1
+ :root{--toastify-color-light:#fff;--toastify-color-dark:#121212;--toastify-color-info:#3498db;--toastify-color-success:#07bc0c;--toastify-color-warning:#f1c40f;--toastify-color-error:#e74c3c;--toastify-color-transparent:#ffffffb3;--toastify-icon-color-info:var(--toastify-color-info);--toastify-icon-color-success:var(--toastify-color-success);--toastify-icon-color-warning:var(--toastify-color-warning);--toastify-icon-color-error:var(--toastify-color-error);--toastify-toast-width:320px;--toastify-toast-background:#fff;--toastify-toast-min-height:64px;--toastify-toast-max-height:800px;--toastify-font-family:sans-serif;--toastify-z-index:9999;--toastify-text-color-light:#757575;--toastify-text-color-dark:#fff;--toastify-text-color-info:#fff;--toastify-text-color-success:#fff;--toastify-text-color-warning:#fff;--toastify-text-color-error:#fff;--toastify-spinner-color:#616161;--toastify-spinner-color-empty-area:#e0e0e0;--toastify-color-progress-light:linear-gradient(90deg,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55);--toastify-color-progress-dark:#bb86fc;--toastify-color-progress-info:var(--toastify-color-info);--toastify-color-progress-success:var(--toastify-color-success);--toastify-color-progress-warning:var(--toastify-color-warning);--toastify-color-progress-error:var(--toastify-color-error)}.Toastify__toast-container{box-sizing:border-box;color:#fff;padding:4px;position:fixed;-webkit-transform:translateZ(var(--toastify-z-index));width:var(--toastify-toast-width);z-index:var(--toastify-z-index)}.Toastify__toast-container--top-left{left:1em;top:1em}.Toastify__toast-container--top-center{left:50%;top:1em;transform:translateX(-50%)}.Toastify__toast-container--top-right{right:1em;top:1em}.Toastify__toast-container--bottom-left{bottom:1em;left:1em}.Toastify__toast-container--bottom-center{bottom:1em;left:50%;transform:translateX(-50%)}.Toastify__toast-container--bottom-right{bottom:1em;right:1em}@media only screen and (max-width:480px){.Toastify__toast-container{left:0;margin:0;padding:0;width:100vw}.Toastify__toast-container--top-center,.Toastify__toast-container--top-left,.Toastify__toast-container--top-right{top:0;transform:translateX(0)}.Toastify__toast-container--bottom-center,.Toastify__toast-container--bottom-left,.Toastify__toast-container--bottom-right{bottom:0;transform:translateX(0)}.Toastify__toast-container--rtl{left:auto;right:0}}.Toastify__toast{-ms-flex-pack:justify;border-radius:4px;box-shadow:0 1px 10px 0 #0000001a,0 2px 15px 0 #0000000d;box-sizing:border-box;cursor:default;direction:ltr;display:-ms-flexbox;display:flex;font-family:var(--toastify-font-family);justify-content:space-between;margin-bottom:1rem;max-height:var(--toastify-toast-max-height);min-height:var(--toastify-toast-min-height);overflow:hidden;padding:8px;position:relative;z-index:0}.Toastify__toast--rtl{direction:rtl}.Toastify__toast--close-on-click{cursor:pointer}.Toastify__toast-body{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex:1 1 auto;flex:1 1 auto;margin:auto 0;padding:6px}.Toastify__toast-body>div:last-child{-ms-flex:1;flex:1;word-break:break-word}.Toastify__toast-icon{-webkit-margin-end:10px;-ms-flex-negative:0;display:-ms-flexbox;display:flex;flex-shrink:0;margin-inline-end:10px;width:20px}.Toastify--animate{animation-duration:.7s;animation-fill-mode:both}.Toastify--animate-icon{animation-duration:.3s;animation-fill-mode:both}@media only screen and (max-width:480px){.Toastify__toast{border-radius:0;margin-bottom:0}}.Toastify__toast-theme--dark{background:var(--toastify-color-dark);color:var(--toastify-text-color-dark)}.Toastify__toast-theme--colored.Toastify__toast--default,.Toastify__toast-theme--light{background:var(--toastify-color-light);color:var(--toastify-text-color-light)}.Toastify__toast-theme--colored.Toastify__toast--info{background:var(--toastify-color-info);color:var(--toastify-text-color-info)}.Toastify__toast-theme--colored.Toastify__toast--success{background:var(--toastify-color-success);color:var(--toastify-text-color-success)}.Toastify__toast-theme--colored.Toastify__toast--warning{background:var(--toastify-color-warning);color:var(--toastify-text-color-warning)}.Toastify__toast-theme--colored.Toastify__toast--error{background:var(--toastify-color-error);color:var(--toastify-text-color-error)}.Toastify__progress-bar-theme--light{background:var(--toastify-color-progress-light)}.Toastify__progress-bar-theme--dark{background:var(--toastify-color-progress-dark)}.Toastify__progress-bar--info{background:var(--toastify-color-progress-info)}.Toastify__progress-bar--success{background:var(--toastify-color-progress-success)}.Toastify__progress-bar--warning{background:var(--toastify-color-progress-warning)}.Toastify__progress-bar--error{background:var(--toastify-color-progress-error)}.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning{background:var(--toastify-color-transparent)}.Toastify__close-button{-ms-flex-item-align:start;align-self:flex-start;background:#0000;border:none;color:#fff;cursor:pointer;opacity:.7;outline:none;padding:0;transition:.3s ease}.Toastify__close-button--light{color:#000;opacity:.3}.Toastify__close-button>svg{fill:currentColor;height:16px;width:14px}.Toastify__close-button:focus,.Toastify__close-button:hover{opacity:1}@keyframes Toastify__trackProgress{0%{transform:scaleX(1)}to{transform:scaleX(0)}}.Toastify__progress-bar{bottom:0;height:5px;left:0;opacity:.7;position:absolute;transform-origin:left;width:100%;z-index:var(--toastify-z-index)}.Toastify__progress-bar--animated{animation:Toastify__trackProgress linear 1 forwards}.Toastify__progress-bar--controlled{transition:transform .2s}.Toastify__progress-bar--rtl{left:auto;right:0;transform-origin:right}.Toastify__spinner{animation:Toastify__spin .65s linear infinite;border:2px solid;border-color:var(--toastify-spinner-color-empty-area);border-radius:100%;border-right-color:var(--toastify-spinner-color);box-sizing:border-box;height:20px;width:20px}@keyframes Toastify__bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}to{transform:none}}@keyframes Toastify__bounceOutRight{20%{opacity:1;transform:translate3d(-20px,0,0)}to{opacity:0;transform:translate3d(2000px,0,0)}}@keyframes Toastify__bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}to{transform:none}}@keyframes Toastify__bounceOutLeft{20%{opacity:1;transform:translate3d(20px,0,0)}to{opacity:0;transform:translate3d(-2000px,0,0)}}@keyframes Toastify__bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0)}60%{opacity:1;transform:translate3d(0,-20px,0)}75%{transform:translate3d(0,10px,0)}90%{transform:translate3d(0,-5px,0)}to{transform:translateZ(0)}}@keyframes Toastify__bounceOutUp{20%{transform:translate3d(0,-10px,0)}40%,45%{opacity:1;transform:translate3d(0,20px,0)}to{opacity:0;transform:translate3d(0,-2000px,0)}}@keyframes Toastify__bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}to{transform:none}}@keyframes Toastify__bounceOutDown{20%{transform:translate3d(0,10px,0)}40%,45%{opacity:1;transform:translate3d(0,-20px,0)}to{opacity:0;transform:translate3d(0,2000px,0)}}.Toastify__bounce-enter--bottom-left,.Toastify__bounce-enter--top-left{animation-name:Toastify__bounceInLeft}.Toastify__bounce-enter--bottom-right,.Toastify__bounce-enter--top-right{animation-name:Toastify__bounceInRight}.Toastify__bounce-enter--top-center{animation-name:Toastify__bounceInDown}.Toastify__bounce-enter--bottom-center{animation-name:Toastify__bounceInUp}.Toastify__bounce-exit--bottom-left,.Toastify__bounce-exit--top-left{animation-name:Toastify__bounceOutLeft}.Toastify__bounce-exit--bottom-right,.Toastify__bounce-exit--top-right{animation-name:Toastify__bounceOutRight}.Toastify__bounce-exit--top-center{animation-name:Toastify__bounceOutUp}.Toastify__bounce-exit--bottom-center{animation-name:Toastify__bounceOutDown}@keyframes Toastify__zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes Toastify__zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.Toastify__zoom-enter{animation-name:Toastify__zoomIn}.Toastify__zoom-exit{animation-name:Toastify__zoomOut}@keyframes Toastify__flipIn{0%{animation-timing-function:ease-in;opacity:0;transform:perspective(400px) rotateX(90deg)}40%{animation-timing-function:ease-in;transform:perspective(400px) rotateX(-20deg)}60%{opacity:1;transform:perspective(400px) rotateX(10deg)}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}@keyframes Toastify__flipOut{0%{transform:perspective(400px)}30%{opacity:1;transform:perspective(400px) rotateX(-20deg)}to{opacity:0;transform:perspective(400px) rotateX(90deg)}}.Toastify__flip-enter{animation-name:Toastify__flipIn}.Toastify__flip-exit{animation-name:Toastify__flipOut}@keyframes Toastify__slideInRight{0%{transform:translate3d(110%,0,0);visibility:visible}to{transform:translateZ(0)}}@keyframes Toastify__slideInLeft{0%{transform:translate3d(-110%,0,0);visibility:visible}to{transform:translateZ(0)}}@keyframes Toastify__slideInUp{0%{transform:translate3d(0,110%,0);visibility:visible}to{transform:translateZ(0)}}@keyframes Toastify__slideInDown{0%{transform:translate3d(0,-110%,0);visibility:visible}to{transform:translateZ(0)}}@keyframes Toastify__slideOutRight{0%{transform:translateZ(0)}to{transform:translate3d(110%,0,0);visibility:hidden}}@keyframes Toastify__slideOutLeft{0%{transform:translateZ(0)}to{transform:translate3d(-110%,0,0);visibility:hidden}}@keyframes Toastify__slideOutDown{0%{transform:translateZ(0)}to{transform:translate3d(0,500px,0);visibility:hidden}}@keyframes Toastify__slideOutUp{0%{transform:translateZ(0)}to{transform:translate3d(0,-500px,0);visibility:hidden}}.Toastify__slide-enter--bottom-left,.Toastify__slide-enter--top-left{animation-name:Toastify__slideInLeft}.Toastify__slide-enter--bottom-right,.Toastify__slide-enter--top-right{animation-name:Toastify__slideInRight}.Toastify__slide-enter--top-center{animation-name:Toastify__slideInDown}.Toastify__slide-enter--bottom-center{animation-name:Toastify__slideInUp}.Toastify__slide-exit--bottom-left,.Toastify__slide-exit--top-left{animation-name:Toastify__slideOutLeft}.Toastify__slide-exit--bottom-right,.Toastify__slide-exit--top-right{animation-name:Toastify__slideOutRight}.Toastify__slide-exit--top-center{animation-name:Toastify__slideOutUp}.Toastify__slide-exit--bottom-center{animation-name:Toastify__slideOutDown}@keyframes Toastify__spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bikdotai/bik-component-library",
3
- "version": "0.0.8",
3
+ "version": "0.0.9-beta.0",
4
4
  "description": "Bik Component Library",
5
5
  "repository": {
6
6
  "type": "git",
@@ -108,6 +108,7 @@
108
108
  "jest-environment-jsdom": "^29.3.1",
109
109
  "jest-transform-stub": "^2.0.0",
110
110
  "lint-staged": "^13.2.0",
111
+ "postcss": "^8.4.21",
111
112
  "prettier": "^2.8.2",
112
113
  "react": "^18.2.0",
113
114
  "react-dom": "^18.2.0",
@@ -116,6 +117,7 @@
116
117
  "rollup-plugin-delete": "^2.0.0",
117
118
  "rollup-plugin-import-css": "^3.2.1",
118
119
  "rollup-plugin-peer-deps-external": "^2.2.4",
120
+ "rollup-plugin-postcss": "^4.0.2",
119
121
  "rollup-plugin-typescript2": "^0.34.1",
120
122
  "styled-components": "^5.3.3",
121
123
  "ts-jest": "^29.0.4",