@team_yumi/ramen 1.2.2 → 1.2.3-next.20240627-3c14bb8-d386da14a0844644f7a1af244344c70b

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/index.css CHANGED
@@ -1025,6 +1025,10 @@ body {
1025
1025
  color: var(--color-neutral-dim) !important;
1026
1026
  }
1027
1027
 
1028
+ .root-module_x-button__MJil1[disabled] .root-module_x-button_icon__4xWLo div > svg {
1029
+ color: var(--color-neutral-dim) !important;
1030
+ }
1031
+
1028
1032
  .root-module_x-button_type-default__WLvUx[disabled],
1029
1033
  .root-module_x-button_type-solid__x1i5H[disabled],
1030
1034
  .root-module_x-button_type-tonal__5HboE[disabled],
@@ -1050,6 +1054,10 @@ body {
1050
1054
  background-color: var(--color-neutral-darkest);
1051
1055
  }
1052
1056
 
1057
+ .root-module_x-button_type-solid__x1i5H .root-module_x-button_icon__4xWLo div > svg {
1058
+ color: var(--neutral-white);
1059
+ }
1060
+
1053
1061
  .root-module_x-button_type-tonal__5HboE {
1054
1062
  color: var(--color-neutral-darkest, black);
1055
1063
  background-color: var(--color-neutral-light);
@@ -3570,7 +3578,7 @@ body {
3570
3578
  left: env(safe-area-inset-left);
3571
3579
  right: env(safe-area-inset-right);
3572
3580
 
3573
- overflow: scroll;
3581
+ overflow: auto;
3574
3582
  background-color: var(--color-neutral-lightest);
3575
3583
  color: var(--color-neutral-darkest);
3576
3584
  }
@@ -3783,6 +3791,10 @@ body {
3783
3791
  background-color: transparent;
3784
3792
  }
3785
3793
 
3794
+ .root-module_xfooter--shadow__YwU5t {
3795
+ background-color: var(--color-neutral-lightest);
3796
+ box-shadow: var(--shadow-up-m);
3797
+ }
3786
3798
  .root-module_x-modal__bOyFq {
3787
3799
  position: fixed;
3788
3800
  top: 0px;
@@ -5134,17 +5146,17 @@ body {
5134
5146
  /* XAtom states */
5135
5147
  .root-module_xcard-decision__x2kPl .root-module_xatom-decision--success__RzVxj {
5136
5148
  border-color: transparent;
5137
- background-color: var(--color-success-dim);
5149
+ background-color: var(--global-success-green-50);
5138
5150
  }
5139
5151
 
5140
5152
  .root-module_xcard-decision__x2kPl .root-module_xatom-decision--error__lw4m8 {
5141
5153
  border-color: transparent;
5142
- background-color: var(--color-error-dim);
5154
+ background-color: var(--global-error-red-50);
5143
5155
  }
5144
5156
 
5145
5157
  .root-module_xcard-decision__x2kPl .root-module_xatom-decision--warning__XMjs7 {
5146
5158
  border-color: transparent;
5147
- background-color: var(--color-warning-dim);
5159
+ background-color: var(--global-warning-orange-50);
5148
5160
  }
5149
5161
 
5150
5162
  .root-module_xcard-decision__x2kPl .root-module_xatom-decision--success__RzVxj > div,
@@ -5356,6 +5368,190 @@ body {
5356
5368
  border-radius: 8px;
5357
5369
  }
5358
5370
 
5371
+ .root-module_x-card-progress__O4VAG {
5372
+ background: var(--color-neutral-lightest);
5373
+ border-radius: var(--xbox-size-11);
5374
+ display: flex;
5375
+ align-items: center;
5376
+ gap: var(--xbox-padding-m);
5377
+ text-align: left;
5378
+ width: 100%;
5379
+ }
5380
+
5381
+ .root-module_x-card-progress--main__5jhrh {
5382
+ width: 100%;
5383
+ display: flex;
5384
+ gap: var(--xbox-padding-m);
5385
+ flex-direction: column;
5386
+ }
5387
+
5388
+ .root-module_x-card-progress--info__2aocF {
5389
+ width: 100%;
5390
+ display: flex;
5391
+ align-items: center;
5392
+ gap: var(--xbox-padding-m);
5393
+ text-align: left;
5394
+ }
5395
+
5396
+ .root-module_x-card-progress__O4VAG.root-module_x-card-progress--disabled__lJS2U {
5397
+ background-color: var(--color-neutral-light);
5398
+ }
5399
+
5400
+ .root-module_x-card-progress__O4VAG:not(.root-module_x-card-progress--with-children__Ixae4) {
5401
+ transition: all 0.25s ease-in-out;
5402
+ transition-property: transform, opacity;
5403
+ }
5404
+
5405
+ .root-module_x-card-progress__O4VAG:hover:not(.root-module_x-card-progress--with-children__Ixae4) {
5406
+ transform: scale(1.025);
5407
+ }
5408
+
5409
+ .root-module_x-card-progress__O4VAG:active:not(.root-module_x-card-progress--with-children__Ixae4) {
5410
+ transform: scale(0.95);
5411
+ }
5412
+
5413
+ .root-module_x-card-progress--with-children__Ixae4 {
5414
+ align-items: flex-start;
5415
+ gap: 0;
5416
+ }
5417
+
5418
+ .root-module_x-card-progress--size-s__6dryn {
5419
+ padding: var(--xbox-padding-xs) var(--xbox-padding-s);
5420
+ }
5421
+
5422
+ .root-module_x-card-progress--size-l__S4rqD {
5423
+ padding: var(--xbox-padding-xs) var(--xbox-padding-m);
5424
+ }
5425
+
5426
+ .root-module_x-card-progress--border-shadow__M-zNH {
5427
+ box-shadow: 0px 3px 8px -1px rgba(24, 39, 75, 0.08);
5428
+ }
5429
+
5430
+ .root-module_x-card-progress--border-dashed__oLVsI {
5431
+ border: 1px dashed var(--color-neutral-dim);
5432
+ }
5433
+
5434
+ .root-module_x-card-progress--border-solid__kQ71D {
5435
+ border: 1px solid var(--color-neutral-light);
5436
+ }
5437
+
5438
+ .root-module_x-card-progress--border-gradient__wSE4G {
5439
+ border: 1px solid transparent;
5440
+ color: var(--color-neutral-darkest);
5441
+ background:
5442
+ linear-gradient(#fff, #fff) padding-box,
5443
+ var(--color-gradient-arcus) border-box;
5444
+ border-color: transparent;
5445
+ }
5446
+
5447
+ .root-module_x-card-progress--clickable__18Nj0 {
5448
+ cursor: pointer;
5449
+ }
5450
+
5451
+ .root-module_x-card-progress__symbol__4Fnp7 {
5452
+ display: flex;
5453
+ background: var(--color-neutral-light);
5454
+ }
5455
+
5456
+ .root-module_x-card-progress--disabled__lJS2U .root-module_x-card-progress__symbol__4Fnp7 {
5457
+ background: transparent;
5458
+ }
5459
+
5460
+ .root-module_x-card-progress--disabled__lJS2U .root-module_x-card-progress__symbol__4Fnp7 > div > svg {
5461
+ opacity: 0.4;
5462
+ }
5463
+
5464
+ .root-module_x-card-progress--size-s__6dryn .root-module_x-card-progress__symbol__4Fnp7 {
5465
+ padding: 4px;
5466
+ border-radius: var(--xbox-size-14);
5467
+ }
5468
+
5469
+ .root-module_x-card-progress--size-l__S4rqD .root-module_x-card-progress__symbol__4Fnp7 {
5470
+ padding: var(--xbox-padding-xs);
5471
+ border-radius: var(--xbox-size-11);
5472
+ }
5473
+
5474
+ .root-module_x-card-progress__texts__JVY5v {
5475
+ flex: 1;
5476
+ display: flex;
5477
+ flex-direction: column;
5478
+ justify-content: center;
5479
+ gap: 4px;
5480
+ }
5481
+
5482
+ .root-module_x-card-progress--disabled__lJS2U .root-module_x-card-progress__texts__JVY5v {
5483
+ opacity: 0.5;
5484
+ }
5485
+
5486
+ .root-module_x-card-progress--size-s__6dryn .root-module_x-card-progress__texts__JVY5v {
5487
+ min-height: 32px;
5488
+ }
5489
+
5490
+ .root-module_x-card-progress--size-l__S4rqD .root-module_x-card-progress__texts__JVY5v {
5491
+ min-height: 56px;
5492
+ }
5493
+
5494
+ .root-module_x-card-progress__icon__vfJOe > div {
5495
+ color: var(--color-neutral-dim);
5496
+ }
5497
+
5498
+ .root-module_x-card-progress--disabled__lJS2U .root-module_x-card-progress__badge__4IVuP > div {
5499
+ background: var(--color-neutral-dim);
5500
+ color: var(--color-neutral-lightest);
5501
+ }
5502
+
5503
+ .root-module_x-card-home-indicator__lp7mX {
5504
+ background: var(--color-neutral-lightest);
5505
+ box-shadow: 0px 3px 8px -1px rgba(24, 39, 75, 0.08);
5506
+ border-radius: var(--xbox-size-11);
5507
+ display: flex;
5508
+ align-items: center;
5509
+ gap: var(--xbox-padding-m);
5510
+ text-align: left;
5511
+ padding: var(--xbox-padding-m) var(--xbox-padding-l);
5512
+ background-color: var(--neutral-black);
5513
+ width: 100%;
5514
+ }
5515
+
5516
+ .root-module_x-card-home-indicator__texts__2NGlt {
5517
+ flex: 1;
5518
+ display: flex;
5519
+ flex-direction: column;
5520
+ justify-content: center;
5521
+ gap: 4px;
5522
+ }
5523
+
5524
+ .root-module_x-card-home-indicator__lp7mX.root-module_x-card-home-indicator__texts__2NGlt {
5525
+ min-height: 32px;
5526
+ }
5527
+
5528
+ .root-module_x-card-home-indicator--circular-chart__KRIrO {
5529
+ transform: rotate(-90deg);
5530
+ }
5531
+
5532
+ .root-module_x-card-home-indicator--circle-bg__DeT8m {
5533
+ stroke: var(--neutral-dark-20);
5534
+ stroke-width: 5;
5535
+ fill: none;
5536
+ transition:
5537
+ stroke-dasharray 0.6s ease,
5538
+ stroke-dashoffset 0.6s ease;
5539
+ }
5540
+
5541
+ .root-module_x-card-home-indicator--circle__837fp {
5542
+ stroke: var(--color-turquoise);
5543
+ stroke-linecap: round;
5544
+ fill: none;
5545
+ stroke-width: 5;
5546
+ transition:
5547
+ stroke-dasharray 0.6s ease,
5548
+ stroke-dashoffset 0.6s ease;
5549
+ }
5550
+
5551
+ .root-module_x-pull-to-refresh__BwruY {
5552
+ overscroll-behavior-y: contain;
5553
+ }
5554
+
5359
5555
  .root-module_x-card-business__akBHB {
5360
5556
  width: 47%;
5361
5557
  padding: 16px 8px 16px 8px;