@team_yumi/ramen 1.2.3-next.20240627-3c14bb8-d386da14a0844644f7a1af244344c70b → 1.2.3-next.20240821-bae06f9-f4455711ced42dc9e2ecf932f1b872e2
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 +28 -8
- package/index.js +3 -4
- package/package.json +1 -1
- package/src/components/core/x-text/root.d.ts +4 -0
- package/src/components/mobile/x-card-expand-progress/index.d.ts +2 -0
- package/src/components/mobile/x-card-expand-progress/root.d.ts +18 -0
- package/src/components/web/x-table/root.d.ts +4 -0
- package/src/models/Collections/IDisplay.d.ts +1 -0
- package/src/models/Collections/IWidth.d.ts +1 -1
- package/src/models/Collections/index.d.ts +2 -1
package/index.css
CHANGED
|
@@ -305,6 +305,10 @@ body {
|
|
|
305
305
|
.root-module_width-full__oNRPX {
|
|
306
306
|
width: 100%;
|
|
307
307
|
}
|
|
308
|
+
.root-module_width-fit-content__lSvKN {
|
|
309
|
+
width: -moz-fit-content;
|
|
310
|
+
width: fit-content;
|
|
311
|
+
}
|
|
308
312
|
.root-module_width-flex__FrThS {
|
|
309
313
|
flex: 1;
|
|
310
314
|
}
|
|
@@ -563,7 +567,7 @@ body {
|
|
|
563
567
|
|
|
564
568
|
.root-module_line_clamp__xT3G9 {
|
|
565
569
|
-webkit-box-orient: vertical;
|
|
566
|
-
display: -webkit-box;
|
|
570
|
+
display: -webkit-box !important;
|
|
567
571
|
overflow: hidden;
|
|
568
572
|
max-width: 100%;
|
|
569
573
|
padding-bottom: 0.125em;
|
|
@@ -593,11 +597,10 @@ body {
|
|
|
593
597
|
color: var(--color-neutral-light);
|
|
594
598
|
}
|
|
595
599
|
|
|
596
|
-
|
|
597
600
|
/**
|
|
598
601
|
* Colors
|
|
599
602
|
*/
|
|
600
|
-
|
|
603
|
+
.root-module_color-gray__g-w2E {
|
|
601
604
|
color: var(--color-neutral-light);
|
|
602
605
|
}
|
|
603
606
|
|
|
@@ -649,6 +652,17 @@ body {
|
|
|
649
652
|
color: var(--xicon-color-turquoise);
|
|
650
653
|
}
|
|
651
654
|
|
|
655
|
+
/**
|
|
656
|
+
* Display
|
|
657
|
+
*/
|
|
658
|
+
.root-module_display-inline__YqrzL {
|
|
659
|
+
display: inline;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
.root-module_display-block__CUGd4 {
|
|
663
|
+
display: block;
|
|
664
|
+
}
|
|
665
|
+
|
|
652
666
|
.root-module_xskeleton__n1X0- {
|
|
653
667
|
background-color: var(--color-neutral-light);
|
|
654
668
|
display: inline-block;
|
|
@@ -1054,7 +1068,7 @@ body {
|
|
|
1054
1068
|
background-color: var(--color-neutral-darkest);
|
|
1055
1069
|
}
|
|
1056
1070
|
|
|
1057
|
-
.root-module_x-button_type-solid__x1i5H
|
|
1071
|
+
.root-module_x-button_type-solid__x1i5H div > svg {
|
|
1058
1072
|
color: var(--neutral-white);
|
|
1059
1073
|
}
|
|
1060
1074
|
|
|
@@ -2898,6 +2912,7 @@ body {
|
|
|
2898
2912
|
|
|
2899
2913
|
.root-module_xcollapse-card--selected__-UWQ0 {
|
|
2900
2914
|
border: 1px solid var(--color-neutral-darkest);
|
|
2915
|
+
width: calc(100% - 2px);
|
|
2901
2916
|
}
|
|
2902
2917
|
|
|
2903
2918
|
.root-module_xcollapse-card__header__EPRur {
|
|
@@ -4694,6 +4709,7 @@ body {
|
|
|
4694
4709
|
display: flex;
|
|
4695
4710
|
flex-direction: column;
|
|
4696
4711
|
flex: 1;
|
|
4712
|
+
gap: 4px;
|
|
4697
4713
|
}
|
|
4698
4714
|
.root-module_ximageuploader__content__files__item__close__JPjOz {
|
|
4699
4715
|
display: block;
|
|
@@ -4731,9 +4747,9 @@ body {
|
|
|
4731
4747
|
justify-content: center;
|
|
4732
4748
|
align-items: center;
|
|
4733
4749
|
}
|
|
4734
|
-
.root-module_xtabbar__button__T5Xs9:not(.root-module_xtabbar__button--disabled__R8-bV):hover{
|
|
4750
|
+
.root-module_xtabbar__button__T5Xs9:not(.root-module_xtabbar__button--disabled__R8-bV):hover {
|
|
4735
4751
|
transform: scale(1.125);
|
|
4736
|
-
transition: transform 0.3s ease
|
|
4752
|
+
transition: transform 0.3s ease;
|
|
4737
4753
|
}
|
|
4738
4754
|
|
|
4739
4755
|
.root-module_xtabbar__button--disabled__R8-bV {
|
|
@@ -5375,7 +5391,9 @@ body {
|
|
|
5375
5391
|
align-items: center;
|
|
5376
5392
|
gap: var(--xbox-padding-m);
|
|
5377
5393
|
text-align: left;
|
|
5378
|
-
width:
|
|
5394
|
+
width: -webkit-fill-available;
|
|
5395
|
+
width: -moz-available;
|
|
5396
|
+
width: stretch;
|
|
5379
5397
|
}
|
|
5380
5398
|
|
|
5381
5399
|
.root-module_x-card-progress--main__5jhrh {
|
|
@@ -5510,7 +5528,9 @@ body {
|
|
|
5510
5528
|
text-align: left;
|
|
5511
5529
|
padding: var(--xbox-padding-m) var(--xbox-padding-l);
|
|
5512
5530
|
background-color: var(--neutral-black);
|
|
5513
|
-
width:
|
|
5531
|
+
width: -webkit-fill-available;
|
|
5532
|
+
width: -moz-available;
|
|
5533
|
+
width: stretch;
|
|
5514
5534
|
}
|
|
5515
5535
|
|
|
5516
5536
|
.root-module_x-card-home-indicator__texts__2NGlt {
|