@reeverdev/ui 0.2.187 → 0.2.189
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.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2787,6 +2787,8 @@ interface KanbanBoardProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
|
|
|
2787
2787
|
renderCard?: (card: KanbanCard, columnId: string) => React$1.ReactNode;
|
|
2788
2788
|
/** Show add card button */
|
|
2789
2789
|
showAddCard?: boolean;
|
|
2790
|
+
/** Label for add card button */
|
|
2791
|
+
addCardLabel?: string;
|
|
2790
2792
|
/** Max height for columns */
|
|
2791
2793
|
columnHeight?: number | string;
|
|
2792
2794
|
/** Border radius */
|
package/dist/index.d.ts
CHANGED
|
@@ -2787,6 +2787,8 @@ interface KanbanBoardProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
|
|
|
2787
2787
|
renderCard?: (card: KanbanCard, columnId: string) => React$1.ReactNode;
|
|
2788
2788
|
/** Show add card button */
|
|
2789
2789
|
showAddCard?: boolean;
|
|
2790
|
+
/** Label for add card button */
|
|
2791
|
+
addCardLabel?: string;
|
|
2790
2792
|
/** Max height for columns */
|
|
2791
2793
|
columnHeight?: number | string;
|
|
2792
2794
|
/** Border radius */
|