@team_yumi/ramen 0.4.0-next.20240205-616b5f6-ef10862f1d87e83cf2883a3ca8c7f3f7 → 0.4.0-next.20240209-71f677d-510ed67bf18544f2a641ef1b2e6a91c7
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.
|
@@ -13,6 +13,7 @@ export interface IProps {
|
|
|
13
13
|
state?: (typeof Collections.ICardState)[number];
|
|
14
14
|
borderColor?: (typeof Collections.IBorderColor)[number];
|
|
15
15
|
borderSize?: (typeof Collections.IBorderSize)[number];
|
|
16
|
+
borderRadius?: (typeof Collections.IRounded)[number];
|
|
16
17
|
}
|
|
17
18
|
declare const XCard: React.FC<IProps>;
|
|
18
19
|
export default XCard;
|
package/index.css
CHANGED
|
@@ -2674,6 +2674,36 @@
|
|
|
2674
2674
|
border-width: var(--xcard-border-m);
|
|
2675
2675
|
}
|
|
2676
2676
|
|
|
2677
|
+
|
|
2678
|
+
|
|
2679
|
+
.root-module_border_radius-xxs__L-Ry6 {
|
|
2680
|
+
border-radius: var(--xbox-border-small);
|
|
2681
|
+
}
|
|
2682
|
+
|
|
2683
|
+
.root-module_border_radius-xs__0YQ2U {
|
|
2684
|
+
border-radius: var(--xbox-rounding-default);
|
|
2685
|
+
}
|
|
2686
|
+
|
|
2687
|
+
.root-module_border_radius-s__kFPbX {
|
|
2688
|
+
border-radius: var(--xbox-rounding-s);
|
|
2689
|
+
}
|
|
2690
|
+
|
|
2691
|
+
.root-module_border_radius-m__LcQ-N {
|
|
2692
|
+
border-radius: var(--xbox-rounding-m);
|
|
2693
|
+
}
|
|
2694
|
+
|
|
2695
|
+
.root-module_border_radius-l__RrkOa {
|
|
2696
|
+
border-radius: var(--xbox-rounding-l);
|
|
2697
|
+
}
|
|
2698
|
+
|
|
2699
|
+
.root-module_border_radius-xl__tK7Ro {
|
|
2700
|
+
border-radius: var(--xbox-rounding-xl);
|
|
2701
|
+
}
|
|
2702
|
+
|
|
2703
|
+
.root-module_border_radius-full__zyOW2 {
|
|
2704
|
+
border-radius: var(--xbox-rounding-circle);
|
|
2705
|
+
}
|
|
2706
|
+
|
|
2677
2707
|
.root-module_x-symbol__RPD-j {
|
|
2678
2708
|
display: inline-block;
|
|
2679
2709
|
max-height: var(--x-symbol-size-xl);
|