@marcos_feitoza/personal-finance-frontend-core-ui 1.0.0 → 1.0.1

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.0.1](https://github.com/MarcosOps/personal-finance-frontend-core-ui/compare/v1.0.0...v1.0.1) (2025-11-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update transaction error message to Transfer not completed. ([05c8369](https://github.com/MarcosOps/personal-finance-frontend-core-ui/commit/05c83695b15fb2091729e29753356e64e3ee2892))
7
+
1
8
  # 1.0.0 (2025-11-22)
2
9
 
3
10
 
@@ -106,7 +106,7 @@ class _InvestmentFormState extends State<InvestmentForm> {
106
106
  content: Text(errorMessage),
107
107
  actions: <Widget>[
108
108
  TextButton(
109
- child: const Text('Transfer successful'),
109
+ child: const Text('Transfer not completed!'),
110
110
  onPressed: () {
111
111
  Navigator.of(ctx).pop();
112
112
  },
@@ -189,12 +189,13 @@ class _InvestmentFormState extends State<InvestmentForm> {
189
189
  ),
190
190
  const SizedBox(height: 16),
191
191
 
192
- // Campo de valor (com formatação de moeda)
193
- AppTextField(
194
- controller: _amountController,
195
- labelText: 'Amount',
196
- isCurrency: true,
197
- ), const SizedBox(height: 16),
192
+ // Campo de valor (com formatação de moeda)
193
+ AppTextField(
194
+ controller: _amountController,
195
+ labelText: 'Amount',
196
+ isCurrency: true,
197
+ ),
198
+ const SizedBox(height: 16),
198
199
 
199
200
  // Campo de data (com seletor de calendário)
200
201
  AppTextField(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marcos_feitoza/personal-finance-frontend-core-ui",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },