📄 index.ts  •  665 bytes
/**
 * CmdCode V0.5 - UI 组件
 * Phase 5: 交互增强
 */

// 进度条
export {
  ProgressBar,
  MultiStepProgress,
  createProgress,
  withProgress,
  type ProgressStyle,
  type ProgressOptions,
  type ProgressState,
} from './progress'

// 对话框
export {
  confirm,
  askYesNo,
  selectFromList,
  showNotice,
  showDivider,
  showTitle,
  type Choice,
  type ConfirmOptions,
  type ConfirmResult,
} from './dialog'

// 状态指示器
export {
  status,
  createStatus,
  withStatus,
  SpinnerGroup,
  STATUS_ICONS,
  STATUS_COLORS,
  type StatusType,
  type StatusOptions,
} from './status'

/** 版本信息 */
export const UI_VERSION = '0.6.0-phase5'