@voyantjs/finance-ui 0.30.7 → 0.31.0
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/README.md +18 -0
- package/dist/components/invoice-detail-page.d.ts +113 -0
- package/dist/components/invoice-detail-page.d.ts.map +1 -0
- package/dist/components/invoice-detail-page.js +142 -0
- package/dist/components/invoices-page-skeleton.d.ts +5 -0
- package/dist/components/invoices-page-skeleton.d.ts.map +1 -0
- package/dist/components/invoices-page-skeleton.js +13 -0
- package/dist/components/invoices-page.d.ts +6 -0
- package/dist/components/invoices-page.d.ts.map +1 -0
- package/dist/components/invoices-page.js +109 -0
- package/dist/components/payment-detail-page.d.ts +41 -0
- package/dist/components/payment-detail-page.d.ts.map +1 -0
- package/dist/components/payment-detail-page.js +79 -0
- package/dist/components/payments-page-skeleton.d.ts +5 -0
- package/dist/components/payments-page-skeleton.d.ts.map +1 -0
- package/dist/components/payments-page-skeleton.js +13 -0
- package/dist/components/payments-page.d.ts +20 -0
- package/dist/components/payments-page.d.ts.map +1 -0
- package/dist/components/payments-page.js +151 -0
- package/dist/components/taxes-page.d.ts +11 -0
- package/dist/components/taxes-page.d.ts.map +1 -0
- package/dist/components/taxes-page.js +718 -0
- package/dist/i18n/en.d.ts +308 -0
- package/dist/i18n/en.d.ts.map +1 -1
- package/dist/i18n/en.js +308 -0
- package/dist/i18n/index.d.ts +1 -1
- package/dist/i18n/index.d.ts.map +1 -1
- package/dist/i18n/messages.d.ts +193 -1
- package/dist/i18n/messages.d.ts.map +1 -1
- package/dist/i18n/messages.js +11 -0
- package/dist/i18n/provider.d.ts +616 -0
- package/dist/i18n/provider.d.ts.map +1 -1
- package/dist/i18n/ro.d.ts +308 -0
- package/dist/i18n/ro.d.ts.map +1 -1
- package/dist/i18n/ro.js +308 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -0
- package/package.json +9 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyantjs/finance-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.31.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -45,12 +45,12 @@
|
|
|
45
45
|
"react-dom": "^19.0.0",
|
|
46
46
|
"react-hook-form": "^7.60.0",
|
|
47
47
|
"zod": "^4.3.6",
|
|
48
|
-
"@voyantjs/finance": "0.
|
|
49
|
-
"@voyantjs/finance-react": "0.
|
|
50
|
-
"@voyantjs/ui": "0.
|
|
48
|
+
"@voyantjs/finance": "0.31.0",
|
|
49
|
+
"@voyantjs/finance-react": "0.31.0",
|
|
50
|
+
"@voyantjs/ui": "0.31.0"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@voyantjs/i18n": "0.
|
|
53
|
+
"@voyantjs/i18n": "0.31.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@tanstack/react-query": "^5.96.2",
|
|
@@ -63,11 +63,11 @@
|
|
|
63
63
|
"typescript": "^6.0.2",
|
|
64
64
|
"vitest": "^4.1.2",
|
|
65
65
|
"zod": "^4.3.6",
|
|
66
|
-
"@voyantjs/finance": "0.
|
|
67
|
-
"@voyantjs/finance-react": "0.
|
|
68
|
-
"@voyantjs/i18n": "0.
|
|
66
|
+
"@voyantjs/finance": "0.31.0",
|
|
67
|
+
"@voyantjs/finance-react": "0.31.0",
|
|
68
|
+
"@voyantjs/i18n": "0.31.0",
|
|
69
69
|
"@voyantjs/voyant-typescript-config": "0.1.0",
|
|
70
|
-
"@voyantjs/ui": "0.
|
|
70
|
+
"@voyantjs/ui": "0.31.0"
|
|
71
71
|
},
|
|
72
72
|
"files": [
|
|
73
73
|
"dist",
|