@homefile/components-v2 2.14.18 → 2.14.19

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.
@@ -10,6 +10,7 @@ export const mortgageInfoForm = ({ amount = 0, documentDate = '', maturityDate =
10
10
  visible: true,
11
11
  },
12
12
  {
13
+ icon: 'price',
13
14
  id: 'purchase-price',
14
15
  name: t('propertyTiles.placeholders.purchasePrice'),
15
16
  value: purchasePrice,
@@ -24,6 +25,7 @@ export const mortgageInfoForm = ({ amount = 0, documentDate = '', maturityDate =
24
25
  visible: true,
25
26
  children: [
26
27
  {
28
+ icon: 'billing',
27
29
  id: 'group-1-loan',
28
30
  name: t('propertyTiles.placeholders.loan'),
29
31
  value: amount,
@@ -71,7 +73,7 @@ export const mortgageInfoForm = ({ amount = 0, documentDate = '', maturityDate =
71
73
  id: 'payment-grid-mortgage-payment',
72
74
  name: t('propertyTiles.placeholders.payment'),
73
75
  value: estimatedMortgagePayment,
74
- type: 'number',
76
+ type: 'currency',
75
77
  visible: true,
76
78
  icon: 'check',
77
79
  },
@@ -89,7 +91,7 @@ export const mortgageInfoForm = ({ amount = 0, documentDate = '', maturityDate =
89
91
  id: 'balance',
90
92
  name: t('propertyTiles.placeholders.balance'),
91
93
  value: estimatedMortgageBalance,
92
- type: 'number',
94
+ type: 'currency',
93
95
  visible: true,
94
96
  icon: 'calc',
95
97
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@homefile/components-v2",
3
- "version": "2.14.18",
3
+ "version": "2.14.19",
4
4
  "author": "Homefile",
5
5
  "license": "UNLICENSED",
6
6
  "typings": "dist/index.d.ts",
@@ -22,6 +22,7 @@ export const mortgageInfoForm = ({
22
22
  visible: true,
23
23
  },
24
24
  {
25
+ icon: 'price',
25
26
  id: 'purchase-price',
26
27
  name: t('propertyTiles.placeholders.purchasePrice'),
27
28
  value: purchasePrice,
@@ -36,6 +37,7 @@ export const mortgageInfoForm = ({
36
37
  visible: true,
37
38
  children: [
38
39
  {
40
+ icon: 'billing',
39
41
  id: 'group-1-loan',
40
42
  name: t('propertyTiles.placeholders.loan'),
41
43
  value: amount,
@@ -83,7 +85,7 @@ export const mortgageInfoForm = ({
83
85
  id: 'payment-grid-mortgage-payment',
84
86
  name: t('propertyTiles.placeholders.payment'),
85
87
  value: estimatedMortgagePayment,
86
- type: 'number',
88
+ type: 'currency',
87
89
  visible: true,
88
90
  icon: 'check',
89
91
  },
@@ -101,7 +103,7 @@ export const mortgageInfoForm = ({
101
103
  id: 'balance',
102
104
  name: t('propertyTiles.placeholders.balance'),
103
105
  value: estimatedMortgageBalance,
104
- type: 'number',
106
+ type: 'currency',
105
107
  visible: true,
106
108
  icon: 'calc',
107
109
  },