@arkyn/templates 1.5.0 → 1.5.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.
@@ -0,0 +1,92 @@
1
+ declare const countryCurrencies: {
2
+ USD: {
3
+ countryLanguage: string;
4
+ countryCurrency: string;
5
+ };
6
+ EUR: {
7
+ countryLanguage: string;
8
+ countryCurrency: string;
9
+ };
10
+ JPY: {
11
+ countryLanguage: string;
12
+ countryCurrency: string;
13
+ };
14
+ GBP: {
15
+ countryLanguage: string;
16
+ countryCurrency: string;
17
+ };
18
+ AUD: {
19
+ countryLanguage: string;
20
+ countryCurrency: string;
21
+ };
22
+ CAD: {
23
+ countryLanguage: string;
24
+ countryCurrency: string;
25
+ };
26
+ CHF: {
27
+ countryLanguage: string;
28
+ countryCurrency: string;
29
+ };
30
+ CNY: {
31
+ countryLanguage: string;
32
+ countryCurrency: string;
33
+ };
34
+ SEK: {
35
+ countryLanguage: string;
36
+ countryCurrency: string;
37
+ };
38
+ NZD: {
39
+ countryLanguage: string;
40
+ countryCurrency: string;
41
+ };
42
+ BRL: {
43
+ countryLanguage: string;
44
+ countryCurrency: string;
45
+ };
46
+ INR: {
47
+ countryLanguage: string;
48
+ countryCurrency: string;
49
+ };
50
+ RUB: {
51
+ countryLanguage: string;
52
+ countryCurrency: string;
53
+ };
54
+ ZAR: {
55
+ countryLanguage: string;
56
+ countryCurrency: string;
57
+ };
58
+ MXN: {
59
+ countryLanguage: string;
60
+ countryCurrency: string;
61
+ };
62
+ SGD: {
63
+ countryLanguage: string;
64
+ countryCurrency: string;
65
+ };
66
+ HKD: {
67
+ countryLanguage: string;
68
+ countryCurrency: string;
69
+ };
70
+ NOK: {
71
+ countryLanguage: string;
72
+ countryCurrency: string;
73
+ };
74
+ KRW: {
75
+ countryLanguage: string;
76
+ countryCurrency: string;
77
+ };
78
+ TRY: {
79
+ countryLanguage: string;
80
+ countryCurrency: string;
81
+ };
82
+ IDR: {
83
+ countryLanguage: string;
84
+ countryCurrency: string;
85
+ };
86
+ THB: {
87
+ countryLanguage: string;
88
+ countryCurrency: string;
89
+ };
90
+ };
91
+ export { countryCurrencies };
92
+ //# sourceMappingURL=countryCurrencies.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"countryCurrencies.d.ts","sourceRoot":"","sources":["../src/countryCurrencies.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuBtB,CAAC;AAEF,OAAO,EAAE,iBAAiB,EAAE,CAAC"}
@@ -0,0 +1,25 @@
1
+ const countryCurrencies = {
2
+ USD: { countryLanguage: "en-US", countryCurrency: "USD" },
3
+ EUR: { countryLanguage: "de-DE", countryCurrency: "EUR" },
4
+ JPY: { countryLanguage: "ja-JP", countryCurrency: "JPY" },
5
+ GBP: { countryLanguage: "en-GB", countryCurrency: "GBP" },
6
+ AUD: { countryLanguage: "en-AU", countryCurrency: "AUD" },
7
+ CAD: { countryLanguage: "en-CA", countryCurrency: "CAD" },
8
+ CHF: { countryLanguage: "de-CH", countryCurrency: "CHF" },
9
+ CNY: { countryLanguage: "zh-CN", countryCurrency: "CNY" },
10
+ SEK: { countryLanguage: "sv-SE", countryCurrency: "SEK" },
11
+ NZD: { countryLanguage: "en-NZ", countryCurrency: "NZD" },
12
+ BRL: { countryLanguage: "pt-BR", countryCurrency: "BRL" },
13
+ INR: { countryLanguage: "en-IN", countryCurrency: "INR" },
14
+ RUB: { countryLanguage: "ru-RU", countryCurrency: "RUB" },
15
+ ZAR: { countryLanguage: "en-ZA", countryCurrency: "ZAR" },
16
+ MXN: { countryLanguage: "es-MX", countryCurrency: "MXN" },
17
+ SGD: { countryLanguage: "en-SG", countryCurrency: "SGD" },
18
+ HKD: { countryLanguage: "zh-HK", countryCurrency: "HKD" },
19
+ NOK: { countryLanguage: "nb-NO", countryCurrency: "NOK" },
20
+ KRW: { countryLanguage: "ko-KR", countryCurrency: "KRW" },
21
+ TRY: { countryLanguage: "tr-TR", countryCurrency: "TRY" },
22
+ IDR: { countryLanguage: "id-ID", countryCurrency: "IDR" },
23
+ THB: { countryLanguage: "th-TH", countryCurrency: "THB" },
24
+ };
25
+ export { countryCurrencies };
package/dist/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export { countries } from "./countries";
2
+ export { countryCurrencies } from "./countryCurrencies";
2
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC"}
package/dist/index.js CHANGED
@@ -1 +1,2 @@
1
1
  export { countries } from "./countries";
2
+ export { countryCurrencies } from "./countryCurrencies";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arkyn/templates",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "main": "./dist/bundle.js",
5
5
  "module": "./src/index.ts",
6
6
  "type": "module",
@@ -0,0 +1,26 @@
1
+ const countryCurrencies = {
2
+ USD: { countryLanguage: "en-US", countryCurrency: "USD" },
3
+ EUR: { countryLanguage: "de-DE", countryCurrency: "EUR" },
4
+ JPY: { countryLanguage: "ja-JP", countryCurrency: "JPY" },
5
+ GBP: { countryLanguage: "en-GB", countryCurrency: "GBP" },
6
+ AUD: { countryLanguage: "en-AU", countryCurrency: "AUD" },
7
+ CAD: { countryLanguage: "en-CA", countryCurrency: "CAD" },
8
+ CHF: { countryLanguage: "de-CH", countryCurrency: "CHF" },
9
+ CNY: { countryLanguage: "zh-CN", countryCurrency: "CNY" },
10
+ SEK: { countryLanguage: "sv-SE", countryCurrency: "SEK" },
11
+ NZD: { countryLanguage: "en-NZ", countryCurrency: "NZD" },
12
+ BRL: { countryLanguage: "pt-BR", countryCurrency: "BRL" },
13
+ INR: { countryLanguage: "en-IN", countryCurrency: "INR" },
14
+ RUB: { countryLanguage: "ru-RU", countryCurrency: "RUB" },
15
+ ZAR: { countryLanguage: "en-ZA", countryCurrency: "ZAR" },
16
+ MXN: { countryLanguage: "es-MX", countryCurrency: "MXN" },
17
+ SGD: { countryLanguage: "en-SG", countryCurrency: "SGD" },
18
+ HKD: { countryLanguage: "zh-HK", countryCurrency: "HKD" },
19
+ NOK: { countryLanguage: "nb-NO", countryCurrency: "NOK" },
20
+ KRW: { countryLanguage: "ko-KR", countryCurrency: "KRW" },
21
+ TRY: { countryLanguage: "tr-TR", countryCurrency: "TRY" },
22
+ IDR: { countryLanguage: "id-ID", countryCurrency: "IDR" },
23
+ THB: { countryLanguage: "th-TH", countryCurrency: "THB" },
24
+ };
25
+
26
+ export { countryCurrencies };
package/src/index.ts CHANGED
@@ -1 +1,2 @@
1
1
  export { countries } from "./countries";
2
+ export { countryCurrencies } from "./countryCurrencies";