mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-02 20:43:36 +00:00
- Added functionality for bulk verifying features in the BoardView, allowing users to mark multiple features as verified at once. - Introduced a selection target mechanism to differentiate between 'backlog' and 'waiting_approval' features during selection mode. - Updated the KanbanCard and SelectionActionBar components to support the new selection target logic, improving user experience for bulk actions. - Enhanced the UI to provide appropriate actions based on the current selection target, including verification options for waiting approval features.
12 lines
690 B
TypeScript
12 lines
690 B
TypeScript
export { useBoardFeatures } from './use-board-features';
|
|
export { useBoardDragDrop } from './use-board-drag-drop';
|
|
export { useBoardActions } from './use-board-actions';
|
|
export { useBoardKeyboardShortcuts } from './use-board-keyboard-shortcuts';
|
|
export { useBoardColumnFeatures } from './use-board-column-features';
|
|
export { useBoardEffects } from './use-board-effects';
|
|
export { useBoardBackground } from './use-board-background';
|
|
export { useBoardPersistence } from './use-board-persistence';
|
|
export { useFollowUpState } from './use-follow-up-state';
|
|
export { useSelectionMode, type SelectionTarget } from './use-selection-mode';
|
|
export { useListViewState } from './use-list-view-state';
|