@taxbit/react-sdk 2.0.0-beta.1 → 2.0.0-beta.3
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/i18n/json/index.d.ts +35 -0
- package/dist/taxbit-react-sdk.js +808 -809
- package/dist/taxbit-react-sdk.umd.cjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -272,6 +272,7 @@ type Locale =
|
|
|
272
272
|
| 'en-nz'
|
|
273
273
|
| 'en-us'
|
|
274
274
|
| 'es'
|
|
275
|
+
| 'es-mx'
|
|
275
276
|
| 'et'
|
|
276
277
|
| 'fi'
|
|
277
278
|
| 'fr'
|
|
@@ -327,6 +328,10 @@ type QuestionnaireType = 'DPS' | 'W-FORM' | 'SELF-CERT';
|
|
|
327
328
|
|
|
328
329
|
## Changelog
|
|
329
330
|
|
|
331
|
+
### Version 2.0.0-beta.2
|
|
332
|
+
|
|
333
|
+
1. Adding es-MX ISO option.
|
|
334
|
+
|
|
330
335
|
### Version 2.0.0-beta.1
|
|
331
336
|
|
|
332
337
|
1. Fixed required fields for non-us Regarded Owner.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { default as bgJson } from './bg.json';
|
|
2
|
+
import { default as csJson } from './cs.json';
|
|
3
|
+
import { default as daJson } from './da.json';
|
|
4
|
+
import { default as deATJson } from './de-AT.json';
|
|
5
|
+
import { default as deJson } from './de.json';
|
|
6
|
+
import { default as elCYJson } from './el-CY.json';
|
|
7
|
+
import { default as elJson } from './el.json';
|
|
8
|
+
import { default as enGBJson } from './en-GB.json';
|
|
9
|
+
import { default as enNZJson } from './en-NZ.json';
|
|
10
|
+
import { default as enJson } from './en.json';
|
|
11
|
+
import { default as esMXJson } from './es-MX.json';
|
|
12
|
+
import { default as esJson } from './es.json';
|
|
13
|
+
import { default as etJson } from './et.json';
|
|
14
|
+
import { default as fiJson } from './fi.json';
|
|
15
|
+
import { default as frCAJson } from './fr-CA.json';
|
|
16
|
+
import { default as frLUJson } from './fr-LU.json';
|
|
17
|
+
import { default as frJson } from './fr.json';
|
|
18
|
+
import { default as gaJson } from './ga.json';
|
|
19
|
+
import { default as hrJson } from './hr.json';
|
|
20
|
+
import { default as huJson } from './hu.json';
|
|
21
|
+
import { default as itJson } from './it.json';
|
|
22
|
+
import { default as ltJson } from './lt.json';
|
|
23
|
+
import { default as lvJson } from './lv.json';
|
|
24
|
+
import { default as mtJson } from './mt.json';
|
|
25
|
+
import { default as nlBEJson } from './nl-BE.json';
|
|
26
|
+
import { default as nlJson } from './nl.json';
|
|
27
|
+
import { default as noJson } from './no.json';
|
|
28
|
+
import { default as plJson } from './pl.json';
|
|
29
|
+
import { default as ptJson } from './pt.json';
|
|
30
|
+
import { default as roJson } from './ro.json';
|
|
31
|
+
import { default as skJson } from './sk.json';
|
|
32
|
+
import { default as slJson } from './sl.json';
|
|
33
|
+
import { default as svJson } from './sv.json';
|
|
34
|
+
|
|
35
|
+
export { bgJson, csJson, daJson, deATJson, deJson, elCYJson, elJson, enGBJson, enJson, enNZJson, esJson, esMXJson, etJson, fiJson, frCAJson, frJson, frLUJson, gaJson, hrJson, huJson, itJson, ltJson, lvJson, mtJson, nlBEJson, nlJson, noJson, plJson, ptJson, roJson, skJson, slJson, svJson, };
|