@libxai/board 0.17.52 → 0.17.53

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
@@ -928,12 +928,6 @@ interface ColumnProps {
928
928
  onToggleCollapse?: () => void;
929
929
  /** Column rename handler */
930
930
  onColumnRename?: (columnId: string, newTitle: string) => void;
931
- /** v0.17.49: Add card handler - when provided, shows AddCardButton at bottom of column */
932
- onAddCard?: (data: AddCardData) => void | Promise<void>;
933
- /** v0.17.49: Theme for AddCardButton */
934
- theme?: 'light' | 'dark';
935
- /** v0.17.49: Locale for AddCardButton */
936
- locale?: 'en' | 'es';
937
931
  /** Custom className */
938
932
  className?: string;
939
933
  }
package/dist/index.d.ts CHANGED
@@ -928,12 +928,6 @@ interface ColumnProps {
928
928
  onToggleCollapse?: () => void;
929
929
  /** Column rename handler */
930
930
  onColumnRename?: (columnId: string, newTitle: string) => void;
931
- /** v0.17.49: Add card handler - when provided, shows AddCardButton at bottom of column */
932
- onAddCard?: (data: AddCardData) => void | Promise<void>;
933
- /** v0.17.49: Theme for AddCardButton */
934
- theme?: 'light' | 'dark';
935
- /** v0.17.49: Locale for AddCardButton */
936
- locale?: 'en' | 'es';
937
931
  /** Custom className */
938
932
  className?: string;
939
933
  }