@reeverdev/ui 0.2.186 → 0.2.187

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/dist/index.d.cts CHANGED
@@ -2789,6 +2789,8 @@ interface KanbanBoardProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
2789
2789
  showAddCard?: boolean;
2790
2790
  /** Max height for columns */
2791
2791
  columnHeight?: number | string;
2792
+ /** Border radius */
2793
+ radius?: "none" | "sm" | "md" | "lg" | "full";
2792
2794
  }
2793
2795
  declare const KanbanBoard: React$1.ForwardRefExoticComponent<KanbanBoardProps & React$1.RefAttributes<HTMLDivElement>>;
2794
2796
 
package/dist/index.d.ts CHANGED
@@ -2789,6 +2789,8 @@ interface KanbanBoardProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
2789
2789
  showAddCard?: boolean;
2790
2790
  /** Max height for columns */
2791
2791
  columnHeight?: number | string;
2792
+ /** Border radius */
2793
+ radius?: "none" | "sm" | "md" | "lg" | "full";
2792
2794
  }
2793
2795
  declare const KanbanBoard: React$1.ForwardRefExoticComponent<KanbanBoardProps & React$1.RefAttributes<HTMLDivElement>>;
2794
2796