@taxbit/react-sdk 3.0.0-beta.1 → 3.1.0-beta.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 +5 -0
- package/dist/src/contexts/TaxDocumentation/useTaxDocumentation.d.ts +2 -2
- package/dist/src/contexts/TaxDocumentation/useTaxDocumentationContext.d.ts +2 -2
- package/dist/src/i18n/json/bg.json.d.ts +2 -1
- package/dist/src/i18n/json/cs.json.d.ts +1 -0
- package/dist/src/i18n/json/da.json.d.ts +1 -0
- package/dist/src/i18n/json/de-AT.json.d.ts +1 -0
- package/dist/src/i18n/json/de.json.d.ts +320 -74
- package/dist/src/i18n/json/el.json.d.ts +1 -0
- package/dist/src/i18n/json/en.json.d.ts +30 -3
- package/dist/src/i18n/json/es.json.d.ts +27 -0
- package/dist/src/i18n/json/et.json.d.ts +1 -0
- package/dist/src/i18n/json/fi.json.d.ts +1 -0
- package/dist/src/i18n/json/fr-LU.json.d.ts +1 -0
- package/dist/src/i18n/json/fr.json.d.ts +27 -0
- package/dist/src/i18n/json/ga.json.d.ts +1 -0
- package/dist/src/i18n/json/hr.json.d.ts +1 -0
- package/dist/src/i18n/json/hu.json.d.ts +1 -0
- package/dist/src/i18n/json/id.json.d.ts +269 -20
- package/dist/src/i18n/json/index.d.ts +4 -1
- package/dist/src/i18n/json/it.json.d.ts +325 -79
- package/dist/src/i18n/json/ja.json.d.ts +27 -0
- package/dist/src/i18n/json/ko.json.d.ts +272 -26
- package/dist/src/i18n/json/lt.json.d.ts +1 -0
- package/dist/src/i18n/json/lv.json.d.ts +1 -0
- package/dist/src/i18n/json/ms.json.d.ts +486 -0
- package/dist/src/i18n/json/mt.json.d.ts +1 -0
- package/dist/src/i18n/json/nl-BE.json.d.ts +1 -0
- package/dist/src/i18n/json/nl.json.d.ts +327 -81
- package/dist/src/i18n/json/no.json.d.ts +1 -0
- package/dist/src/i18n/json/pl.json.d.ts +324 -78
- package/dist/src/i18n/json/pt.json.d.ts +27 -0
- package/dist/src/i18n/json/ro.json.d.ts +334 -88
- package/dist/src/i18n/json/ru.json.d.ts +321 -75
- package/dist/src/i18n/json/sk.json.d.ts +1 -0
- package/dist/src/i18n/json/sl.json.d.ts +1 -0
- package/dist/src/i18n/json/sv.json.d.ts +1 -0
- package/dist/src/i18n/json/th.json.d.ts +333 -87
- package/dist/src/i18n/json/tr.json.d.ts +27 -0
- package/dist/src/i18n/json/uk.json.d.ts +1 -0
- package/dist/src/i18n/json/vi.json.d.ts +321 -75
- package/dist/src/i18n/json/zh-CN.json.d.ts +486 -0
- package/dist/src/i18n/json/zh-TW.json.d.ts +486 -0
- package/dist/src/i18n/json/zh.json.d.ts +1 -0
- package/dist/src/i18n/locales/index.d.ts +3 -0
- package/dist/src/i18n/locales/ms.d.ts +1 -0
- package/dist/src/i18n/locales/zh-cn.d.ts +1 -0
- package/dist/src/i18n/locales/zh-tw.d.ts +1 -0
- package/dist/src/i18n/types/LocalizationKey.d.ts +2 -2
- package/dist/src/i18n/types/PropertyFile.d.ts +1 -1
- package/dist/src/types/Locale.d.ts +1 -1
- package/dist/src/utils/getFieldsState.d.ts +5 -9
- package/dist/src/utils/isBlank.d.ts +1 -1
- package/dist/src/validations/getSkipFields.d.ts +1 -1
- package/dist/src/wizard/RowInput/HiddenInputRow/tests/HiddenInputRow.test.d.ts +1 -0
- package/dist/taxbit-react-sdk.js +10782 -6598
- package/dist/taxbit-react-sdk.umd.cjs +1 -1
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taxbit/react-sdk",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1.0-beta.0",
|
|
4
4
|
"description": "Taxbit Tax Documentation",
|
|
5
5
|
"author": "Taxbit",
|
|
6
6
|
"type": "module",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"test": "vitest"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@taxbit/utilities": "3.
|
|
37
|
+
"@taxbit/utilities": "3.6.0"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"react": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|