@arkyn/templates 3.0.1-beta.20 → 3.0.1-beta.201
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/LICENSE.txt +24 -0
- package/README.md +153 -0
- package/dist/countries.d.ts +9 -1710
- package/dist/countries.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1911 -4
- package/dist/modules/brazilianStates.js +113 -0
- package/dist/modules/countries.js +1713 -0
- package/dist/modules/countryCurrencies.js +93 -0
- package/dist/modules/index.js +5 -0
- package/dist/modules/maximumFractionDigits.js +4 -0
- package/package.json +74 -8
- package/dist/brazilianStates.js +0 -30
- package/dist/countries.js +0 -1955
- package/dist/countryCurrencies.js +0 -25
- package/dist/maximumFractionDigits.js +0 -2
- package/src/brazilianStates.ts +0 -31
- package/src/countries.ts +0 -1956
- package/src/countryCurrencies.ts +0 -26
- package/src/index.ts +0 -4
- package/src/maximumFractionDigits.ts +0 -3
- package/tsconfig.json +0 -20
package/src/countryCurrencies.ts
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
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
DELETED
package/tsconfig.json
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"declaration": true,
|
|
4
|
-
"declarationDir": "./dist",
|
|
5
|
-
"declarationMap": true,
|
|
6
|
-
"isolatedModules": true,
|
|
7
|
-
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
|
8
|
-
"module": "ESNext",
|
|
9
|
-
"moduleResolution": "node",
|
|
10
|
-
"outDir": "./dist",
|
|
11
|
-
"preserveWatchOutput": true,
|
|
12
|
-
"skipLibCheck": true,
|
|
13
|
-
"strict": true,
|
|
14
|
-
"target": "ESNext",
|
|
15
|
-
"types": ["bun-types"],
|
|
16
|
-
"verbatimModuleSyntax": true
|
|
17
|
-
},
|
|
18
|
-
"exclude": ["dist", "node_modules"],
|
|
19
|
-
"include": ["src/**/*.ts"]
|
|
20
|
-
}
|