@marcos_feitoza/personal-finance-frontend-feature-dashboard 1.2.1 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.2.2](https://github.com/MarcosOps/personal-finance-frontend-feature-dashboard/compare/v1.2.1...v1.2.2) (2026-02-01)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * remove Tops ([a9c5979](https://github.com/MarcosOps/personal-finance-frontend-feature-dashboard/commit/a9c5979fbb4bf21378d39232b803b5ef85bff9fb))
7
+
1
8
  ## [1.2.1](https://github.com/MarcosOps/personal-finance-frontend-feature-dashboard/compare/v1.2.0...v1.2.1) (2026-01-30)
2
9
 
3
10
 
@@ -99,30 +99,6 @@ class _HomeScreenState extends State<HomeScreen> {
99
99
  viewModel.bmoUnpaidExpenses,
100
100
  ),
101
101
  ),
102
- DashboardWidgetDefinition(
103
- id: 'cash_tx',
104
- title: 'Cash Transactions',
105
- builder: (context) => _buildRecentTransactionsList(
106
- 'Cash Transactions',
107
- viewModel.cashTransactions,
108
- ),
109
- ),
110
- DashboardWidgetDefinition(
111
- id: 'rbc_tx',
112
- title: 'RBC Transactions',
113
- builder: (context) => _buildRecentTransactionsList(
114
- 'RBC Transactions',
115
- viewModel.rbcTransactions,
116
- ),
117
- ),
118
- DashboardWidgetDefinition(
119
- id: 'bmo_tx',
120
- title: 'BMO Transactions',
121
- builder: (context) => _buildRecentTransactionsList(
122
- 'BMO Transactions',
123
- viewModel.bmoTransactions,
124
- ),
125
- ),
126
102
  DashboardWidgetDefinition(
127
103
  id: 'expense_form',
128
104
  title: 'New Expense',
@@ -329,27 +305,6 @@ class _HomeScreenState extends State<HomeScreen> {
329
305
  Row(
330
306
  crossAxisAlignment: CrossAxisAlignment.start,
331
307
  children: [
332
- Expanded(
333
- child: _buildRecentTransactionsList(
334
- 'Cash Transactions',
335
- viewModel.cashTransactions,
336
- ),
337
- ),
338
- const SizedBox(width: 16),
339
- Expanded(
340
- child: _buildRecentTransactionsList(
341
- 'RBC Transactions',
342
- viewModel.rbcTransactions,
343
- ),
344
- ),
345
- const SizedBox(width: 16),
346
- Expanded(
347
- child: _buildRecentTransactionsList(
348
- 'BMO Transactions',
349
- viewModel.bmoTransactions,
350
- ),
351
- ),
352
- const SizedBox(width: 16),
353
308
  Expanded(
354
309
  child: ExpenseForm(
355
310
  formKey: viewModel.expenseFormKey,
@@ -357,12 +312,7 @@ class _HomeScreenState extends State<HomeScreen> {
357
312
  token: token,
358
313
  ),
359
314
  ),
360
- ],
361
- ),
362
- const SizedBox(height: 16),
363
- Row(
364
- crossAxisAlignment: CrossAxisAlignment.start,
365
- children: [
315
+ const SizedBox(width: 16),
366
316
  Expanded(
367
317
  child: InvestmentForm(
368
318
  formKey: viewModel.investmentFormKey,
@@ -382,6 +332,8 @@ class _HomeScreenState extends State<HomeScreen> {
382
332
  ),
383
333
  ],
384
334
  ),
335
+ const SizedBox(height: 16),
336
+ // Move Money + Salary are now on the same row as Add Expense.
385
337
  ],
386
338
  ),
387
339
  ),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marcos_feitoza/personal-finance-frontend-feature-dashboard",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },