* feat: Redesign git changes to split stage/unstaged files. Signed-off-by: Paolo Insogna <paolo@cowtech.it> * fixup Signed-off-by: Paolo Insogna <paolo@cowtech.it> * fixup Signed-off-by: Paolo Insogna <paolo@cowtech.it> * refactor: streamline git changes panel * fix: label staged and working diff tabs * fix: isolate staged and working diff files * fix: scope staged and working diff updates * fix: scope git row revert to working changes --------- Signed-off-by: Paolo Insogna <paolo@cowtech.it> Co-authored-by: Bohdan Triapitsyn <artmore@protonmail.com>
16 lines
752 B
TypeScript
16 lines
752 B
TypeScript
export { GitHeader } from './GitHeader';
|
|
export { GitEmptyState } from './GitEmptyState';
|
|
export { ChangesPanel } from './ChangesPanel';
|
|
export type { ChangesGroupConfig } from './ChangesPanel';
|
|
export { ChangeRow } from './ChangeRow';
|
|
export { CommitSection } from './CommitSection';
|
|
export { CommitInput } from './CommitInput';
|
|
export { AIHighlightsBox } from './AIHighlightsBox';
|
|
export { HistorySection } from './HistorySection';
|
|
export { HistoryCommitRow } from './HistoryCommitRow';
|
|
export { SyncActions } from './SyncActions';
|
|
export { BranchSelector } from './BranchSelector';
|
|
export { BranchIntegrationSection } from './BranchIntegrationSection';
|
|
export { ConflictDialog } from './ConflictDialog';
|
|
export { StashDialog } from './StashDialog';
|