v1.37.0 - Add Projeção de Saldo ao Dashboard
This commit is contained in:
parent
c81606409f
commit
b9592fc915
10
CHANGELOG.md
10
CHANGELOG.md
@ -5,6 +5,16 @@ O formato segue [Keep a Changelog](https://keepachangelog.com/pt-BR/).
|
||||
Este projeto adota [Versionamento Semântico](https://semver.org/pt-BR/).
|
||||
|
||||
|
||||
## [1.37.0] - 2025-12-15
|
||||
|
||||
### Added
|
||||
- **Dashboard** - Gráfico de Projeção de Saldo
|
||||
- Adicionado componente BalanceProjectionChart ao Dashboard
|
||||
- Exibe projeção futura do saldo baseado em transações pendentes e recorrentes
|
||||
- Posicionado após transações vencidas, antes do fluxo de caixa
|
||||
- Mesmo gráfico disponível na seção de Relatórios > Projeção
|
||||
- Oferece visualização rápida do saldo esperado nos próximos meses
|
||||
|
||||
## [1.36.2] - 2025-12-15
|
||||
|
||||
### Added
|
||||
|
||||
@ -5,6 +5,7 @@ import { useAuth } from '../context/AuthContext';
|
||||
import { dashboardService, accountService } from '../services/api';
|
||||
import useFormatters from '../hooks/useFormatters';
|
||||
import CashflowChart from '../components/dashboard/CashflowChart';
|
||||
import BalanceProjectionChart from '../components/dashboard/BalanceProjectionChart';
|
||||
import OverpaymentsAnalysis from '../components/dashboard/OverpaymentsAnalysis';
|
||||
import CalendarWidget from '../components/dashboard/CalendarWidget';
|
||||
import UpcomingWidget from '../components/dashboard/UpcomingWidget';
|
||||
@ -313,6 +314,13 @@ const Dashboard = () => {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Projeção de Saldo - Full Width */}
|
||||
<div className="row g-4 mb-4">
|
||||
<div className="col-12">
|
||||
<BalanceProjectionChart />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Main Content Grid */}
|
||||
<div className="row g-4">
|
||||
{/* Coluna Principal - Fluxo de Caixa */}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user