refactor(quota): consolidate quota sections into config-driven components

This commit is contained in:
Supra4E8C
2026-01-02 17:14:40 +08:00
parent 47f0042bf0
commit 82bf1806ed
19 changed files with 1073 additions and 1604 deletions

View File

@@ -2,7 +2,8 @@
* Quota components barrel export.
*/
export { AntigravitySection } from './AntigravitySection';
export { CodexSection } from './CodexSection';
export { GeminiCliSection } from './GeminiCliSection';
export { useQuotaSection } from './hooks/useQuotaSection';
export { QuotaSection } from './QuotaSection';
export { QuotaCard } from './QuotaCard';
export { useQuotaLoader } from './useQuotaLoader';
export { ANTIGRAVITY_CONFIG, CODEX_CONFIG, GEMINI_CLI_CONFIG } from './quotaConfigs';
export type { QuotaConfig } from './quotaConfigs';