@team_yumi/ramen 0.4.0-next.20240209-27a709f-3838031b2dc4946e05d5f73df0fb8709 → 0.4.0-next.20240213-c1b7366-5e6e50bf9c327bad04e3c309991bdff0

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;
@@ -25,7 +25,7 @@ export interface IProps {
25
25
  * The default selected option
26
26
  */
27
27
  defaultOptionSelected?: string;
28
- withBorder: boolean;
28
+ withBorder?: boolean;
29
29
  }
30
30
  declare const XGroupRadioButton: React.FC<IProps>;
31
31
  export default XGroupRadioButton;
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);