@sonic-equipment/ui 0.0.92 → 0.0.94
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/dist/index.d.ts +20 -1
- package/dist/index.js +244 -210
- package/dist/src/index.d.ts +2 -0
- package/dist/src/shared/utils/uuid.d.ts +7 -0
- package/dist/src/toast/toast-provider.d.ts +3 -0
- package/dist/src/toast/toast-provider.stories.d.ts +10 -0
- package/dist/src/toast/toast.d.ts +8 -0
- package/dist/src/toast/toast.stories.d.ts +16 -0
- package/dist/src/toast/types.d.ts +12 -0
- package/dist/src/toast/use-toast.d.ts +5 -0
- package/dist/styles.css +866 -0
- package/package.json +6 -2
package/dist/styles.css
CHANGED
|
@@ -4191,6 +4191,872 @@ button.swiper-pagination-bullet {
|
|
|
4191
4191
|
--transition-duration: 0.3s;
|
|
4192
4192
|
}
|
|
4193
4193
|
|
|
4194
|
+
:root {
|
|
4195
|
+
--toastify-color-light: #fff;
|
|
4196
|
+
--toastify-color-dark: #121212;
|
|
4197
|
+
--toastify-color-info: #3498db;
|
|
4198
|
+
--toastify-color-success: #07bc0c;
|
|
4199
|
+
--toastify-color-warning: #f1c40f;
|
|
4200
|
+
--toastify-color-error: #e74c3c;
|
|
4201
|
+
--toastify-color-transparent: rgba(255, 255, 255, 0.7);
|
|
4202
|
+
--toastify-icon-color-info: var(--toastify-color-info);
|
|
4203
|
+
--toastify-icon-color-success: var(--toastify-color-success);
|
|
4204
|
+
--toastify-icon-color-warning: var(--toastify-color-warning);
|
|
4205
|
+
--toastify-icon-color-error: var(--toastify-color-error);
|
|
4206
|
+
--toastify-toast-width: 320px;
|
|
4207
|
+
--toastify-toast-offset: 16px;
|
|
4208
|
+
--toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
|
|
4209
|
+
--toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
|
|
4210
|
+
--toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
|
|
4211
|
+
--toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
|
|
4212
|
+
--toastify-toast-background: #fff;
|
|
4213
|
+
--toastify-toast-min-height: 64px;
|
|
4214
|
+
--toastify-toast-max-height: 800px;
|
|
4215
|
+
--toastify-toast-bd-radius: 6px;
|
|
4216
|
+
--toastify-font-family: sans-serif;
|
|
4217
|
+
--toastify-z-index: 9999;
|
|
4218
|
+
--toastify-text-color-light: #757575;
|
|
4219
|
+
--toastify-text-color-dark: #fff;
|
|
4220
|
+
--toastify-text-color-info: #fff;
|
|
4221
|
+
--toastify-text-color-success: #fff;
|
|
4222
|
+
--toastify-text-color-warning: #fff;
|
|
4223
|
+
--toastify-text-color-error: #fff;
|
|
4224
|
+
--toastify-spinner-color: #616161;
|
|
4225
|
+
--toastify-spinner-color-empty-area: #e0e0e0;
|
|
4226
|
+
--toastify-color-progress-light: linear-gradient(
|
|
4227
|
+
to right,
|
|
4228
|
+
#4cd964,
|
|
4229
|
+
#5ac8fa,
|
|
4230
|
+
#007aff,
|
|
4231
|
+
#34aadc,
|
|
4232
|
+
#5856d6,
|
|
4233
|
+
#ff2d55
|
|
4234
|
+
);
|
|
4235
|
+
--toastify-color-progress-dark: #bb86fc;
|
|
4236
|
+
--toastify-color-progress-info: var(--toastify-color-info);
|
|
4237
|
+
--toastify-color-progress-success: var(--toastify-color-success);
|
|
4238
|
+
--toastify-color-progress-warning: var(--toastify-color-warning);
|
|
4239
|
+
--toastify-color-progress-error: var(--toastify-color-error);
|
|
4240
|
+
--toastify-color-progress-bgo: 0.2;
|
|
4241
|
+
}
|
|
4242
|
+
|
|
4243
|
+
.Toastify__toast-container {
|
|
4244
|
+
z-index: var(--toastify-z-index);
|
|
4245
|
+
-webkit-transform: translate3d(0, 0, var(--toastify-z-index));
|
|
4246
|
+
position: fixed;
|
|
4247
|
+
padding: 4px;
|
|
4248
|
+
width: var(--toastify-toast-width);
|
|
4249
|
+
box-sizing: border-box;
|
|
4250
|
+
color: #fff;
|
|
4251
|
+
}
|
|
4252
|
+
|
|
4253
|
+
.Toastify__toast-container--top-left {
|
|
4254
|
+
top: var(--toastify-toast-top);
|
|
4255
|
+
left: var(--toastify-toast-left);
|
|
4256
|
+
}
|
|
4257
|
+
|
|
4258
|
+
.Toastify__toast-container--top-center {
|
|
4259
|
+
top: var(--toastify-toast-top);
|
|
4260
|
+
left: 50%;
|
|
4261
|
+
transform: translateX(-50%);
|
|
4262
|
+
}
|
|
4263
|
+
|
|
4264
|
+
.Toastify__toast-container--top-right {
|
|
4265
|
+
top: var(--toastify-toast-top);
|
|
4266
|
+
right: var(--toastify-toast-right);
|
|
4267
|
+
}
|
|
4268
|
+
|
|
4269
|
+
.Toastify__toast-container--bottom-left {
|
|
4270
|
+
bottom: var(--toastify-toast-bottom);
|
|
4271
|
+
left: var(--toastify-toast-left);
|
|
4272
|
+
}
|
|
4273
|
+
|
|
4274
|
+
.Toastify__toast-container--bottom-center {
|
|
4275
|
+
bottom: var(--toastify-toast-bottom);
|
|
4276
|
+
left: 50%;
|
|
4277
|
+
transform: translateX(-50%);
|
|
4278
|
+
}
|
|
4279
|
+
|
|
4280
|
+
.Toastify__toast-container--bottom-right {
|
|
4281
|
+
bottom: var(--toastify-toast-bottom);
|
|
4282
|
+
right: var(--toastify-toast-right);
|
|
4283
|
+
}
|
|
4284
|
+
|
|
4285
|
+
@media only screen and (max-width : 480px) {
|
|
4286
|
+
.Toastify__toast-container {
|
|
4287
|
+
width: 100vw;
|
|
4288
|
+
padding: 0;
|
|
4289
|
+
left: env(safe-area-inset-left);
|
|
4290
|
+
margin: 0;
|
|
4291
|
+
}
|
|
4292
|
+
.Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
|
|
4293
|
+
top: env(safe-area-inset-top);
|
|
4294
|
+
transform: translateX(0);
|
|
4295
|
+
}
|
|
4296
|
+
.Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
|
|
4297
|
+
bottom: env(safe-area-inset-bottom);
|
|
4298
|
+
transform: translateX(0);
|
|
4299
|
+
}
|
|
4300
|
+
.Toastify__toast-container--rtl {
|
|
4301
|
+
right: env(safe-area-inset-right);
|
|
4302
|
+
left: initial;
|
|
4303
|
+
}
|
|
4304
|
+
}
|
|
4305
|
+
|
|
4306
|
+
.Toastify__toast {
|
|
4307
|
+
--y: 0;
|
|
4308
|
+
position: relative;
|
|
4309
|
+
touch-action: none;
|
|
4310
|
+
min-height: var(--toastify-toast-min-height);
|
|
4311
|
+
box-sizing: border-box;
|
|
4312
|
+
margin-bottom: 1rem;
|
|
4313
|
+
padding: 8px;
|
|
4314
|
+
border-radius: var(--toastify-toast-bd-radius);
|
|
4315
|
+
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
|
|
4316
|
+
display: flex;
|
|
4317
|
+
justify-content: space-between;
|
|
4318
|
+
max-height: var(--toastify-toast-max-height);
|
|
4319
|
+
font-family: var(--toastify-font-family);
|
|
4320
|
+
cursor: default;
|
|
4321
|
+
direction: ltr;
|
|
4322
|
+
/* webkit only issue #791 */
|
|
4323
|
+
z-index: 0;
|
|
4324
|
+
overflow: hidden;
|
|
4325
|
+
}
|
|
4326
|
+
|
|
4327
|
+
.Toastify__toast--stacked {
|
|
4328
|
+
position: absolute;
|
|
4329
|
+
width: 100%;
|
|
4330
|
+
transform: translate3d(0, var(--y), 0) scale(var(--s));
|
|
4331
|
+
transition: transform 0.3s;
|
|
4332
|
+
}
|
|
4333
|
+
|
|
4334
|
+
.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body, .Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
|
|
4335
|
+
transition: opacity 0.1s;
|
|
4336
|
+
}
|
|
4337
|
+
|
|
4338
|
+
.Toastify__toast--stacked[data-collapsed=false] {
|
|
4339
|
+
overflow: visible;
|
|
4340
|
+
}
|
|
4341
|
+
|
|
4342
|
+
.Toastify__toast--stacked[data-collapsed=true]:not(:last-child) > * {
|
|
4343
|
+
opacity: 0;
|
|
4344
|
+
}
|
|
4345
|
+
|
|
4346
|
+
.Toastify__toast--stacked:after {
|
|
4347
|
+
content: "";
|
|
4348
|
+
position: absolute;
|
|
4349
|
+
left: 0;
|
|
4350
|
+
right: 0;
|
|
4351
|
+
height: calc(var(--g) * 1px);
|
|
4352
|
+
bottom: 100%;
|
|
4353
|
+
}
|
|
4354
|
+
|
|
4355
|
+
.Toastify__toast--stacked[data-pos=top] {
|
|
4356
|
+
top: 0;
|
|
4357
|
+
}
|
|
4358
|
+
|
|
4359
|
+
.Toastify__toast--stacked[data-pos=bot] {
|
|
4360
|
+
bottom: 0;
|
|
4361
|
+
}
|
|
4362
|
+
|
|
4363
|
+
.Toastify__toast--stacked[data-pos=bot].Toastify__toast--stacked:before {
|
|
4364
|
+
transform-origin: top;
|
|
4365
|
+
}
|
|
4366
|
+
|
|
4367
|
+
.Toastify__toast--stacked[data-pos=top].Toastify__toast--stacked:before {
|
|
4368
|
+
transform-origin: bottom;
|
|
4369
|
+
}
|
|
4370
|
+
|
|
4371
|
+
.Toastify__toast--stacked:before {
|
|
4372
|
+
content: "";
|
|
4373
|
+
position: absolute;
|
|
4374
|
+
left: 0;
|
|
4375
|
+
right: 0;
|
|
4376
|
+
bottom: 0;
|
|
4377
|
+
height: 100%;
|
|
4378
|
+
transform: scaleY(3);
|
|
4379
|
+
z-index: -1;
|
|
4380
|
+
}
|
|
4381
|
+
|
|
4382
|
+
.Toastify__toast--rtl {
|
|
4383
|
+
direction: rtl;
|
|
4384
|
+
}
|
|
4385
|
+
|
|
4386
|
+
.Toastify__toast--close-on-click {
|
|
4387
|
+
cursor: pointer;
|
|
4388
|
+
}
|
|
4389
|
+
|
|
4390
|
+
.Toastify__toast-body {
|
|
4391
|
+
margin: auto 0;
|
|
4392
|
+
flex: 1 1 auto;
|
|
4393
|
+
padding: 6px;
|
|
4394
|
+
display: flex;
|
|
4395
|
+
align-items: center;
|
|
4396
|
+
}
|
|
4397
|
+
|
|
4398
|
+
.Toastify__toast-body > div:last-child {
|
|
4399
|
+
word-break: break-word;
|
|
4400
|
+
flex: 1;
|
|
4401
|
+
}
|
|
4402
|
+
|
|
4403
|
+
.Toastify__toast-icon {
|
|
4404
|
+
margin-inline-end: 10px;
|
|
4405
|
+
width: 20px;
|
|
4406
|
+
flex-shrink: 0;
|
|
4407
|
+
display: flex;
|
|
4408
|
+
}
|
|
4409
|
+
|
|
4410
|
+
.Toastify--animate {
|
|
4411
|
+
animation-fill-mode: both;
|
|
4412
|
+
animation-duration: 0.5s;
|
|
4413
|
+
}
|
|
4414
|
+
|
|
4415
|
+
.Toastify--animate-icon {
|
|
4416
|
+
animation-fill-mode: both;
|
|
4417
|
+
animation-duration: 0.3s;
|
|
4418
|
+
}
|
|
4419
|
+
|
|
4420
|
+
@media only screen and (max-width : 480px) {
|
|
4421
|
+
.Toastify__toast {
|
|
4422
|
+
margin-bottom: 0;
|
|
4423
|
+
border-radius: 0;
|
|
4424
|
+
}
|
|
4425
|
+
}
|
|
4426
|
+
|
|
4427
|
+
.Toastify__toast-theme--dark {
|
|
4428
|
+
background: var(--toastify-color-dark);
|
|
4429
|
+
color: var(--toastify-text-color-dark);
|
|
4430
|
+
}
|
|
4431
|
+
|
|
4432
|
+
.Toastify__toast-theme--light {
|
|
4433
|
+
background: var(--toastify-color-light);
|
|
4434
|
+
color: var(--toastify-text-color-light);
|
|
4435
|
+
}
|
|
4436
|
+
|
|
4437
|
+
.Toastify__toast-theme--colored.Toastify__toast--default {
|
|
4438
|
+
background: var(--toastify-color-light);
|
|
4439
|
+
color: var(--toastify-text-color-light);
|
|
4440
|
+
}
|
|
4441
|
+
|
|
4442
|
+
.Toastify__toast-theme--colored.Toastify__toast--info {
|
|
4443
|
+
color: var(--toastify-text-color-info);
|
|
4444
|
+
background: var(--toastify-color-info);
|
|
4445
|
+
}
|
|
4446
|
+
|
|
4447
|
+
.Toastify__toast-theme--colored.Toastify__toast--success {
|
|
4448
|
+
color: var(--toastify-text-color-success);
|
|
4449
|
+
background: var(--toastify-color-success);
|
|
4450
|
+
}
|
|
4451
|
+
|
|
4452
|
+
.Toastify__toast-theme--colored.Toastify__toast--warning {
|
|
4453
|
+
color: var(--toastify-text-color-warning);
|
|
4454
|
+
background: var(--toastify-color-warning);
|
|
4455
|
+
}
|
|
4456
|
+
|
|
4457
|
+
.Toastify__toast-theme--colored.Toastify__toast--error {
|
|
4458
|
+
color: var(--toastify-text-color-error);
|
|
4459
|
+
background: var(--toastify-color-error);
|
|
4460
|
+
}
|
|
4461
|
+
|
|
4462
|
+
.Toastify__progress-bar-theme--light {
|
|
4463
|
+
background: var(--toastify-color-progress-light);
|
|
4464
|
+
}
|
|
4465
|
+
|
|
4466
|
+
.Toastify__progress-bar-theme--dark {
|
|
4467
|
+
background: var(--toastify-color-progress-dark);
|
|
4468
|
+
}
|
|
4469
|
+
|
|
4470
|
+
.Toastify__progress-bar--info {
|
|
4471
|
+
background: var(--toastify-color-progress-info);
|
|
4472
|
+
}
|
|
4473
|
+
|
|
4474
|
+
.Toastify__progress-bar--success {
|
|
4475
|
+
background: var(--toastify-color-progress-success);
|
|
4476
|
+
}
|
|
4477
|
+
|
|
4478
|
+
.Toastify__progress-bar--warning {
|
|
4479
|
+
background: var(--toastify-color-progress-warning);
|
|
4480
|
+
}
|
|
4481
|
+
|
|
4482
|
+
.Toastify__progress-bar--error {
|
|
4483
|
+
background: var(--toastify-color-progress-error);
|
|
4484
|
+
}
|
|
4485
|
+
|
|
4486
|
+
.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 {
|
|
4487
|
+
background: var(--toastify-color-transparent);
|
|
4488
|
+
}
|
|
4489
|
+
|
|
4490
|
+
.Toastify__close-button {
|
|
4491
|
+
color: #fff;
|
|
4492
|
+
background: transparent;
|
|
4493
|
+
outline: none;
|
|
4494
|
+
border: none;
|
|
4495
|
+
padding: 0;
|
|
4496
|
+
cursor: pointer;
|
|
4497
|
+
opacity: 0.7;
|
|
4498
|
+
transition: 0.3s ease;
|
|
4499
|
+
align-self: flex-start;
|
|
4500
|
+
z-index: 1;
|
|
4501
|
+
}
|
|
4502
|
+
|
|
4503
|
+
.Toastify__close-button--light {
|
|
4504
|
+
color: #000;
|
|
4505
|
+
opacity: 0.3;
|
|
4506
|
+
}
|
|
4507
|
+
|
|
4508
|
+
.Toastify__close-button > svg {
|
|
4509
|
+
fill: currentColor;
|
|
4510
|
+
height: 16px;
|
|
4511
|
+
width: 14px;
|
|
4512
|
+
}
|
|
4513
|
+
|
|
4514
|
+
.Toastify__close-button:hover, .Toastify__close-button:focus {
|
|
4515
|
+
opacity: 1;
|
|
4516
|
+
}
|
|
4517
|
+
|
|
4518
|
+
@keyframes Toastify__trackProgress {
|
|
4519
|
+
0% {
|
|
4520
|
+
transform: scaleX(1);
|
|
4521
|
+
}
|
|
4522
|
+
100% {
|
|
4523
|
+
transform: scaleX(0);
|
|
4524
|
+
}
|
|
4525
|
+
}
|
|
4526
|
+
|
|
4527
|
+
.Toastify__progress-bar {
|
|
4528
|
+
position: absolute;
|
|
4529
|
+
bottom: 0;
|
|
4530
|
+
left: 0;
|
|
4531
|
+
width: 100%;
|
|
4532
|
+
height: 100%;
|
|
4533
|
+
z-index: var(--toastify-z-index);
|
|
4534
|
+
opacity: 0.7;
|
|
4535
|
+
transform-origin: left;
|
|
4536
|
+
border-bottom-left-radius: var(--toastify-toast-bd-radius);
|
|
4537
|
+
}
|
|
4538
|
+
|
|
4539
|
+
.Toastify__progress-bar--animated {
|
|
4540
|
+
animation: Toastify__trackProgress linear 1 forwards;
|
|
4541
|
+
}
|
|
4542
|
+
|
|
4543
|
+
.Toastify__progress-bar--controlled {
|
|
4544
|
+
transition: transform 0.2s;
|
|
4545
|
+
}
|
|
4546
|
+
|
|
4547
|
+
.Toastify__progress-bar--rtl {
|
|
4548
|
+
right: 0;
|
|
4549
|
+
left: initial;
|
|
4550
|
+
transform-origin: right;
|
|
4551
|
+
border-bottom-left-radius: initial;
|
|
4552
|
+
border-bottom-right-radius: var(--toastify-toast-bd-radius);
|
|
4553
|
+
}
|
|
4554
|
+
|
|
4555
|
+
.Toastify__progress-bar--wrp {
|
|
4556
|
+
position: absolute;
|
|
4557
|
+
bottom: 0;
|
|
4558
|
+
left: 0;
|
|
4559
|
+
width: 100%;
|
|
4560
|
+
height: 5px;
|
|
4561
|
+
border-bottom-left-radius: var(--toastify-toast-bd-radius);
|
|
4562
|
+
}
|
|
4563
|
+
|
|
4564
|
+
.Toastify__progress-bar--wrp[data-hidden=true] {
|
|
4565
|
+
opacity: 0;
|
|
4566
|
+
}
|
|
4567
|
+
|
|
4568
|
+
.Toastify__progress-bar--bg {
|
|
4569
|
+
opacity: var(--toastify-color-progress-bgo);
|
|
4570
|
+
width: 100%;
|
|
4571
|
+
height: 100%;
|
|
4572
|
+
}
|
|
4573
|
+
|
|
4574
|
+
.Toastify__spinner {
|
|
4575
|
+
width: 20px;
|
|
4576
|
+
height: 20px;
|
|
4577
|
+
box-sizing: border-box;
|
|
4578
|
+
border: 2px solid;
|
|
4579
|
+
border-radius: 100%;
|
|
4580
|
+
border-color: var(--toastify-spinner-color-empty-area);
|
|
4581
|
+
border-right-color: var(--toastify-spinner-color);
|
|
4582
|
+
animation: Toastify__spin 0.65s linear infinite;
|
|
4583
|
+
}
|
|
4584
|
+
|
|
4585
|
+
@keyframes Toastify__bounceInRight {
|
|
4586
|
+
from, 60%, 75%, 90%, to {
|
|
4587
|
+
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
4588
|
+
}
|
|
4589
|
+
from {
|
|
4590
|
+
opacity: 0;
|
|
4591
|
+
transform: translate3d(3000px, 0, 0);
|
|
4592
|
+
}
|
|
4593
|
+
60% {
|
|
4594
|
+
opacity: 1;
|
|
4595
|
+
transform: translate3d(-25px, 0, 0);
|
|
4596
|
+
}
|
|
4597
|
+
75% {
|
|
4598
|
+
transform: translate3d(10px, 0, 0);
|
|
4599
|
+
}
|
|
4600
|
+
90% {
|
|
4601
|
+
transform: translate3d(-5px, 0, 0);
|
|
4602
|
+
}
|
|
4603
|
+
to {
|
|
4604
|
+
transform: none;
|
|
4605
|
+
}
|
|
4606
|
+
}
|
|
4607
|
+
|
|
4608
|
+
@keyframes Toastify__bounceOutRight {
|
|
4609
|
+
20% {
|
|
4610
|
+
opacity: 1;
|
|
4611
|
+
transform: translate3d(-20px, var(--y), 0);
|
|
4612
|
+
}
|
|
4613
|
+
to {
|
|
4614
|
+
opacity: 0;
|
|
4615
|
+
transform: translate3d(2000px, var(--y), 0);
|
|
4616
|
+
}
|
|
4617
|
+
}
|
|
4618
|
+
|
|
4619
|
+
@keyframes Toastify__bounceInLeft {
|
|
4620
|
+
from, 60%, 75%, 90%, to {
|
|
4621
|
+
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
4622
|
+
}
|
|
4623
|
+
0% {
|
|
4624
|
+
opacity: 0;
|
|
4625
|
+
transform: translate3d(-3000px, 0, 0);
|
|
4626
|
+
}
|
|
4627
|
+
60% {
|
|
4628
|
+
opacity: 1;
|
|
4629
|
+
transform: translate3d(25px, 0, 0);
|
|
4630
|
+
}
|
|
4631
|
+
75% {
|
|
4632
|
+
transform: translate3d(-10px, 0, 0);
|
|
4633
|
+
}
|
|
4634
|
+
90% {
|
|
4635
|
+
transform: translate3d(5px, 0, 0);
|
|
4636
|
+
}
|
|
4637
|
+
to {
|
|
4638
|
+
transform: none;
|
|
4639
|
+
}
|
|
4640
|
+
}
|
|
4641
|
+
|
|
4642
|
+
@keyframes Toastify__bounceOutLeft {
|
|
4643
|
+
20% {
|
|
4644
|
+
opacity: 1;
|
|
4645
|
+
transform: translate3d(20px, var(--y), 0);
|
|
4646
|
+
}
|
|
4647
|
+
to {
|
|
4648
|
+
opacity: 0;
|
|
4649
|
+
transform: translate3d(-2000px, var(--y), 0);
|
|
4650
|
+
}
|
|
4651
|
+
}
|
|
4652
|
+
|
|
4653
|
+
@keyframes Toastify__bounceInUp {
|
|
4654
|
+
from, 60%, 75%, 90%, to {
|
|
4655
|
+
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
4656
|
+
}
|
|
4657
|
+
from {
|
|
4658
|
+
opacity: 0;
|
|
4659
|
+
transform: translate3d(0, 3000px, 0);
|
|
4660
|
+
}
|
|
4661
|
+
60% {
|
|
4662
|
+
opacity: 1;
|
|
4663
|
+
transform: translate3d(0, -20px, 0);
|
|
4664
|
+
}
|
|
4665
|
+
75% {
|
|
4666
|
+
transform: translate3d(0, 10px, 0);
|
|
4667
|
+
}
|
|
4668
|
+
90% {
|
|
4669
|
+
transform: translate3d(0, -5px, 0);
|
|
4670
|
+
}
|
|
4671
|
+
to {
|
|
4672
|
+
transform: translate3d(0, 0, 0);
|
|
4673
|
+
}
|
|
4674
|
+
}
|
|
4675
|
+
|
|
4676
|
+
@keyframes Toastify__bounceOutUp {
|
|
4677
|
+
20% {
|
|
4678
|
+
transform: translate3d(0, calc(var(--y) - 10px), 0);
|
|
4679
|
+
}
|
|
4680
|
+
40%, 45% {
|
|
4681
|
+
opacity: 1;
|
|
4682
|
+
transform: translate3d(0, calc(var(--y) + 20px), 0);
|
|
4683
|
+
}
|
|
4684
|
+
to {
|
|
4685
|
+
opacity: 0;
|
|
4686
|
+
transform: translate3d(0, -2000px, 0);
|
|
4687
|
+
}
|
|
4688
|
+
}
|
|
4689
|
+
|
|
4690
|
+
@keyframes Toastify__bounceInDown {
|
|
4691
|
+
from, 60%, 75%, 90%, to {
|
|
4692
|
+
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
4693
|
+
}
|
|
4694
|
+
0% {
|
|
4695
|
+
opacity: 0;
|
|
4696
|
+
transform: translate3d(0, -3000px, 0);
|
|
4697
|
+
}
|
|
4698
|
+
60% {
|
|
4699
|
+
opacity: 1;
|
|
4700
|
+
transform: translate3d(0, 25px, 0);
|
|
4701
|
+
}
|
|
4702
|
+
75% {
|
|
4703
|
+
transform: translate3d(0, -10px, 0);
|
|
4704
|
+
}
|
|
4705
|
+
90% {
|
|
4706
|
+
transform: translate3d(0, 5px, 0);
|
|
4707
|
+
}
|
|
4708
|
+
to {
|
|
4709
|
+
transform: none;
|
|
4710
|
+
}
|
|
4711
|
+
}
|
|
4712
|
+
|
|
4713
|
+
@keyframes Toastify__bounceOutDown {
|
|
4714
|
+
20% {
|
|
4715
|
+
transform: translate3d(0, calc(var(--y) - 10px), 0);
|
|
4716
|
+
}
|
|
4717
|
+
40%, 45% {
|
|
4718
|
+
opacity: 1;
|
|
4719
|
+
transform: translate3d(0, calc(var(--y) + 20px), 0);
|
|
4720
|
+
}
|
|
4721
|
+
to {
|
|
4722
|
+
opacity: 0;
|
|
4723
|
+
transform: translate3d(0, 2000px, 0);
|
|
4724
|
+
}
|
|
4725
|
+
}
|
|
4726
|
+
|
|
4727
|
+
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
|
|
4728
|
+
animation-name: Toastify__bounceInLeft;
|
|
4729
|
+
}
|
|
4730
|
+
|
|
4731
|
+
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
|
|
4732
|
+
animation-name: Toastify__bounceInRight;
|
|
4733
|
+
}
|
|
4734
|
+
|
|
4735
|
+
.Toastify__bounce-enter--top-center {
|
|
4736
|
+
animation-name: Toastify__bounceInDown;
|
|
4737
|
+
}
|
|
4738
|
+
|
|
4739
|
+
.Toastify__bounce-enter--bottom-center {
|
|
4740
|
+
animation-name: Toastify__bounceInUp;
|
|
4741
|
+
}
|
|
4742
|
+
|
|
4743
|
+
.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
|
|
4744
|
+
animation-name: Toastify__bounceOutLeft;
|
|
4745
|
+
}
|
|
4746
|
+
|
|
4747
|
+
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
|
|
4748
|
+
animation-name: Toastify__bounceOutRight;
|
|
4749
|
+
}
|
|
4750
|
+
|
|
4751
|
+
.Toastify__bounce-exit--top-center {
|
|
4752
|
+
animation-name: Toastify__bounceOutUp;
|
|
4753
|
+
}
|
|
4754
|
+
|
|
4755
|
+
.Toastify__bounce-exit--bottom-center {
|
|
4756
|
+
animation-name: Toastify__bounceOutDown;
|
|
4757
|
+
}
|
|
4758
|
+
|
|
4759
|
+
@keyframes Toastify__zoomIn {
|
|
4760
|
+
from {
|
|
4761
|
+
opacity: 0;
|
|
4762
|
+
transform: scale3d(0.3, 0.3, 0.3);
|
|
4763
|
+
}
|
|
4764
|
+
50% {
|
|
4765
|
+
opacity: 1;
|
|
4766
|
+
}
|
|
4767
|
+
}
|
|
4768
|
+
|
|
4769
|
+
@keyframes Toastify__zoomOut {
|
|
4770
|
+
from {
|
|
4771
|
+
opacity: 1;
|
|
4772
|
+
}
|
|
4773
|
+
50% {
|
|
4774
|
+
opacity: 0;
|
|
4775
|
+
transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
|
|
4776
|
+
}
|
|
4777
|
+
to {
|
|
4778
|
+
opacity: 0;
|
|
4779
|
+
}
|
|
4780
|
+
}
|
|
4781
|
+
|
|
4782
|
+
.Toastify__zoom-enter {
|
|
4783
|
+
animation-name: Toastify__zoomIn;
|
|
4784
|
+
}
|
|
4785
|
+
|
|
4786
|
+
.Toastify__zoom-exit {
|
|
4787
|
+
animation-name: Toastify__zoomOut;
|
|
4788
|
+
}
|
|
4789
|
+
|
|
4790
|
+
@keyframes Toastify__flipIn {
|
|
4791
|
+
from {
|
|
4792
|
+
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
|
4793
|
+
animation-timing-function: ease-in;
|
|
4794
|
+
opacity: 0;
|
|
4795
|
+
}
|
|
4796
|
+
40% {
|
|
4797
|
+
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
|
4798
|
+
animation-timing-function: ease-in;
|
|
4799
|
+
}
|
|
4800
|
+
60% {
|
|
4801
|
+
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
|
|
4802
|
+
opacity: 1;
|
|
4803
|
+
}
|
|
4804
|
+
80% {
|
|
4805
|
+
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
|
|
4806
|
+
}
|
|
4807
|
+
to {
|
|
4808
|
+
transform: perspective(400px);
|
|
4809
|
+
}
|
|
4810
|
+
}
|
|
4811
|
+
|
|
4812
|
+
@keyframes Toastify__flipOut {
|
|
4813
|
+
from {
|
|
4814
|
+
transform: translate3d(0, var(--y), 0) perspective(400px);
|
|
4815
|
+
}
|
|
4816
|
+
30% {
|
|
4817
|
+
transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
|
|
4818
|
+
opacity: 1;
|
|
4819
|
+
}
|
|
4820
|
+
to {
|
|
4821
|
+
transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
|
|
4822
|
+
opacity: 0;
|
|
4823
|
+
}
|
|
4824
|
+
}
|
|
4825
|
+
|
|
4826
|
+
.Toastify__flip-enter {
|
|
4827
|
+
animation-name: Toastify__flipIn;
|
|
4828
|
+
}
|
|
4829
|
+
|
|
4830
|
+
.Toastify__flip-exit {
|
|
4831
|
+
animation-name: Toastify__flipOut;
|
|
4832
|
+
}
|
|
4833
|
+
|
|
4834
|
+
@keyframes Toastify__slideInRight {
|
|
4835
|
+
from {
|
|
4836
|
+
transform: translate3d(110%, 0, 0);
|
|
4837
|
+
visibility: visible;
|
|
4838
|
+
}
|
|
4839
|
+
to {
|
|
4840
|
+
transform: translate3d(0, var(--y), 0);
|
|
4841
|
+
}
|
|
4842
|
+
}
|
|
4843
|
+
|
|
4844
|
+
@keyframes Toastify__slideInLeft {
|
|
4845
|
+
from {
|
|
4846
|
+
transform: translate3d(-110%, 0, 0);
|
|
4847
|
+
visibility: visible;
|
|
4848
|
+
}
|
|
4849
|
+
to {
|
|
4850
|
+
transform: translate3d(0, var(--y), 0);
|
|
4851
|
+
}
|
|
4852
|
+
}
|
|
4853
|
+
|
|
4854
|
+
@keyframes Toastify__slideInUp {
|
|
4855
|
+
from {
|
|
4856
|
+
transform: translate3d(0, 110%, 0);
|
|
4857
|
+
visibility: visible;
|
|
4858
|
+
}
|
|
4859
|
+
to {
|
|
4860
|
+
transform: translate3d(0, var(--y), 0);
|
|
4861
|
+
}
|
|
4862
|
+
}
|
|
4863
|
+
|
|
4864
|
+
@keyframes Toastify__slideInDown {
|
|
4865
|
+
from {
|
|
4866
|
+
transform: translate3d(0, -110%, 0);
|
|
4867
|
+
visibility: visible;
|
|
4868
|
+
}
|
|
4869
|
+
to {
|
|
4870
|
+
transform: translate3d(0, var(--y), 0);
|
|
4871
|
+
}
|
|
4872
|
+
}
|
|
4873
|
+
|
|
4874
|
+
@keyframes Toastify__slideOutRight {
|
|
4875
|
+
from {
|
|
4876
|
+
transform: translate3d(0, var(--y), 0);
|
|
4877
|
+
}
|
|
4878
|
+
to {
|
|
4879
|
+
visibility: hidden;
|
|
4880
|
+
transform: translate3d(110%, var(--y), 0);
|
|
4881
|
+
}
|
|
4882
|
+
}
|
|
4883
|
+
|
|
4884
|
+
@keyframes Toastify__slideOutLeft {
|
|
4885
|
+
from {
|
|
4886
|
+
transform: translate3d(0, var(--y), 0);
|
|
4887
|
+
}
|
|
4888
|
+
to {
|
|
4889
|
+
visibility: hidden;
|
|
4890
|
+
transform: translate3d(-110%, var(--y), 0);
|
|
4891
|
+
}
|
|
4892
|
+
}
|
|
4893
|
+
|
|
4894
|
+
@keyframes Toastify__slideOutDown {
|
|
4895
|
+
from {
|
|
4896
|
+
transform: translate3d(0, var(--y), 0);
|
|
4897
|
+
}
|
|
4898
|
+
to {
|
|
4899
|
+
visibility: hidden;
|
|
4900
|
+
transform: translate3d(0, 500px, 0);
|
|
4901
|
+
}
|
|
4902
|
+
}
|
|
4903
|
+
|
|
4904
|
+
@keyframes Toastify__slideOutUp {
|
|
4905
|
+
from {
|
|
4906
|
+
transform: translate3d(0, var(--y), 0);
|
|
4907
|
+
}
|
|
4908
|
+
to {
|
|
4909
|
+
visibility: hidden;
|
|
4910
|
+
transform: translate3d(0, -500px, 0);
|
|
4911
|
+
}
|
|
4912
|
+
}
|
|
4913
|
+
|
|
4914
|
+
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
|
|
4915
|
+
animation-name: Toastify__slideInLeft;
|
|
4916
|
+
}
|
|
4917
|
+
|
|
4918
|
+
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
|
|
4919
|
+
animation-name: Toastify__slideInRight;
|
|
4920
|
+
}
|
|
4921
|
+
|
|
4922
|
+
.Toastify__slide-enter--top-center {
|
|
4923
|
+
animation-name: Toastify__slideInDown;
|
|
4924
|
+
}
|
|
4925
|
+
|
|
4926
|
+
.Toastify__slide-enter--bottom-center {
|
|
4927
|
+
animation-name: Toastify__slideInUp;
|
|
4928
|
+
}
|
|
4929
|
+
|
|
4930
|
+
.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
|
|
4931
|
+
animation-name: Toastify__slideOutLeft;
|
|
4932
|
+
animation-timing-function: ease-in;
|
|
4933
|
+
animation-duration: 0.3s;
|
|
4934
|
+
}
|
|
4935
|
+
|
|
4936
|
+
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
|
|
4937
|
+
animation-name: Toastify__slideOutRight;
|
|
4938
|
+
animation-timing-function: ease-in;
|
|
4939
|
+
animation-duration: 0.3s;
|
|
4940
|
+
}
|
|
4941
|
+
|
|
4942
|
+
.Toastify__slide-exit--top-center {
|
|
4943
|
+
animation-name: Toastify__slideOutUp;
|
|
4944
|
+
animation-timing-function: ease-in;
|
|
4945
|
+
animation-duration: 0.3s;
|
|
4946
|
+
}
|
|
4947
|
+
|
|
4948
|
+
.Toastify__slide-exit--bottom-center {
|
|
4949
|
+
animation-name: Toastify__slideOutDown;
|
|
4950
|
+
animation-timing-function: ease-in;
|
|
4951
|
+
animation-duration: 0.3s;
|
|
4952
|
+
}
|
|
4953
|
+
|
|
4954
|
+
@keyframes Toastify__spin {
|
|
4955
|
+
from {
|
|
4956
|
+
transform: rotate(0deg);
|
|
4957
|
+
}
|
|
4958
|
+
to {
|
|
4959
|
+
transform: rotate(360deg);
|
|
4960
|
+
}
|
|
4961
|
+
}
|
|
4962
|
+
.toast-provider-module-EoPKW {
|
|
4963
|
+
top: calc(var(--header-height-mobile) + var(--space-12));
|
|
4964
|
+
right: auto;
|
|
4965
|
+
left: auto;
|
|
4966
|
+
display: flex;
|
|
4967
|
+
width: 100vw;
|
|
4968
|
+
flex-direction: column;
|
|
4969
|
+
align-items: center;
|
|
4970
|
+
gap: var(--space-8);
|
|
4971
|
+
}
|
|
4972
|
+
|
|
4973
|
+
@media (width >= 1024px) {.toast-provider-module-EoPKW {
|
|
4974
|
+
top: calc(var(--header-height-desktop) + var(--space-12));
|
|
4975
|
+
right: var(--toastify-toast-right);
|
|
4976
|
+
width: -moz-fit-content;
|
|
4977
|
+
width: fit-content
|
|
4978
|
+
}
|
|
4979
|
+
}
|
|
4980
|
+
|
|
4981
|
+
.toast-provider-module-SeZ02 {
|
|
4982
|
+
z-index: auto;
|
|
4983
|
+
left: auto;
|
|
4984
|
+
overflow: visible;
|
|
4985
|
+
padding: 0;
|
|
4986
|
+
border-radius: var(--border-radius-12);
|
|
4987
|
+
box-shadow: unset;
|
|
4988
|
+
}
|
|
4989
|
+
|
|
4990
|
+
.toast-provider-module-SeZ02 p {
|
|
4991
|
+
margin: 0;
|
|
4992
|
+
}
|
|
4993
|
+
|
|
4994
|
+
.toast-provider-module-BdbPL {
|
|
4995
|
+
padding: 0;
|
|
4996
|
+
}
|
|
4997
|
+
|
|
4998
|
+
.toast-provider-module-BdbPL > div:last-child {
|
|
4999
|
+
display: flex;
|
|
5000
|
+
justify-content: flex-end;
|
|
5001
|
+
}
|
|
5002
|
+
|
|
5003
|
+
.toast-module-VzLw4 {
|
|
5004
|
+
--inline-padding: var(--space-16);
|
|
5005
|
+
|
|
5006
|
+
display: flex;
|
|
5007
|
+
width: -moz-fit-content;
|
|
5008
|
+
width: fit-content;
|
|
5009
|
+
max-width: 366px;
|
|
5010
|
+
min-height: 72px;
|
|
5011
|
+
box-sizing: border-box;
|
|
5012
|
+
align-items: center;
|
|
5013
|
+
padding: var(--space-12) var(--inline-padding);
|
|
5014
|
+
border-radius: var(--border-radius-12);
|
|
5015
|
+
background-color: var(--color-white);
|
|
5016
|
+
box-shadow: var(--box-shadow-heavy);
|
|
5017
|
+
color: var(--color-black);
|
|
5018
|
+
pointer-events: all;
|
|
5019
|
+
-webkit-user-select: none;
|
|
5020
|
+
-moz-user-select: none;
|
|
5021
|
+
user-select: none;
|
|
5022
|
+
}
|
|
5023
|
+
|
|
5024
|
+
.toast-module-VzLw4 .toast-module-mAwpu {
|
|
5025
|
+
margin-right: calc(-1 * var(--inline-padding));
|
|
5026
|
+
margin-left: auto;
|
|
5027
|
+
}
|
|
5028
|
+
|
|
5029
|
+
.toast-module-VzLw4 .toast-module-JqNiT {
|
|
5030
|
+
margin-right: 6px;
|
|
5031
|
+
}
|
|
5032
|
+
|
|
5033
|
+
.toast-module-VzLw4 .toast-module-JqNiT svg {
|
|
5034
|
+
display: block;
|
|
5035
|
+
width: 24px;
|
|
5036
|
+
height: 24px;
|
|
5037
|
+
}
|
|
5038
|
+
|
|
5039
|
+
.toast-module-VzLw4:where(.toast-module-cuSIT) .toast-module-JqNiT {
|
|
5040
|
+
color: var(--color-semantic-okay);
|
|
5041
|
+
}
|
|
5042
|
+
|
|
5043
|
+
.toast-module-VzLw4:where(.toast-module-ABLCP) .toast-module-JqNiT {
|
|
5044
|
+
color: var(--color-semantic-information);
|
|
5045
|
+
}
|
|
5046
|
+
|
|
5047
|
+
.toast-module-VzLw4:where(.toast-module-jGWiH) .toast-module-JqNiT {
|
|
5048
|
+
color: var(--color-semantic-notify);
|
|
5049
|
+
}
|
|
5050
|
+
|
|
5051
|
+
.toast-module-VzLw4:where(.toast-module-t33Ra) .toast-module-JqNiT {
|
|
5052
|
+
color: var(--color-semantic-stop);
|
|
5053
|
+
}
|
|
5054
|
+
|
|
5055
|
+
@media (width >= 1024px) {.toast-module-VzLw4 {
|
|
5056
|
+
max-width: 312px
|
|
5057
|
+
}
|
|
5058
|
+
}
|
|
5059
|
+
|
|
4194
5060
|
.global-search-module-T0bEf {
|
|
4195
5061
|
z-index: calc(var(--header-layer) - 1);
|
|
4196
5062
|
}
|