@team_yumi/ramen 1.2.3-next.20240627-3c14bb8-d386da14a0844644f7a1af244344c70b → 1.2.3-next.20240704-72ccfdc-d57dfe816dd26d4d80f5987c25bca6f1
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 +14 -0
- package/index.js +3 -4
- package/package.json +1 -1
- package/src/components/core/x-text/root.d.ts +4 -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
|
}
|
|
@@ -649,6 +653,16 @@ body {
|
|
|
649
653
|
color: var(--xicon-color-turquoise);
|
|
650
654
|
}
|
|
651
655
|
|
|
656
|
+
/**
|
|
657
|
+
* Display
|
|
658
|
+
*/
|
|
659
|
+
.root-module_display-inline__YqrzL {
|
|
660
|
+
display: inline;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
.root-module_display-block__CUGd4 {
|
|
664
|
+
display: block;
|
|
665
|
+
}
|
|
652
666
|
.root-module_xskeleton__n1X0- {
|
|
653
667
|
background-color: var(--color-neutral-light);
|
|
654
668
|
display: inline-block;
|