@sil/data 0.1.0 → 0.1.4
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/dist/sil-data.cjs +14 -1
- package/dist/sil-data.cjs.map +1 -1
- package/dist/sil-data.js +14 -1
- package/dist/sil-data.js.map +1 -1
- package/dist/types/__tests__/cities.test.d.ts +1 -0
- package/dist/types/__tests__/continents.test.d.ts +1 -0
- package/dist/types/__tests__/countries.test.d.ts +1 -0
- package/dist/types/__tests__/index.test.d.ts +1 -0
- package/dist/types/__tests__/phoneCodes.test.d.ts +1 -0
- package/dist/types/__tests__/states.test.d.ts +1 -0
- package/package.json +1 -1
package/dist/sil-data.cjs
CHANGED
|
@@ -1535,6 +1535,18 @@ const countries = [
|
|
|
1535
1535
|
languages: ["Burmese"],
|
|
1536
1536
|
tld: ".mm"
|
|
1537
1537
|
},
|
|
1538
|
+
{
|
|
1539
|
+
name: "Nagorno-Karabakh",
|
|
1540
|
+
alpha2: "XN",
|
|
1541
|
+
alpha3: "XNA",
|
|
1542
|
+
numeric: "999",
|
|
1543
|
+
flag: "🇽🇳",
|
|
1544
|
+
phoneCode: "+374",
|
|
1545
|
+
capital: "Stepanakert",
|
|
1546
|
+
continent: "Asia",
|
|
1547
|
+
currency: "AMD",
|
|
1548
|
+
languages: ["Armenian"]
|
|
1549
|
+
},
|
|
1538
1550
|
{
|
|
1539
1551
|
name: "Namibia",
|
|
1540
1552
|
alpha2: "NA",
|
|
@@ -4168,7 +4180,7 @@ const flagData = [
|
|
|
4168
4180
|
{ alpha2: "AO", svgUrl: "https://flagcdn.com/ao.svg", pngUrl: "https://flagcdn.com/w320/ao.png", colors: ["red", "black"], similar: ["AL", "GE"] },
|
|
4169
4181
|
{ alpha2: "AG", svgUrl: "https://flagcdn.com/ag.svg", pngUrl: "https://flagcdn.com/w320/ag.png", colors: ["red", "black", "gold", "white", "blue"], similar: ["BB", "JM"] },
|
|
4170
4182
|
{ alpha2: "AR", svgUrl: "https://flagcdn.com/ar.svg", pngUrl: "https://flagcdn.com/w320/ar.png", colors: ["light-blue", "white"], similar: ["HN", "NI", "SV"] },
|
|
4171
|
-
{ alpha2: "AM", svgUrl: "https://flagcdn.com/am.svg", pngUrl: "https://flagcdn.com/w320/am.png", colors: ["red", "blue", "orange"], similar: ["DE", "BE", "TD"] },
|
|
4183
|
+
{ alpha2: "AM", svgUrl: "https://flagcdn.com/am.svg", pngUrl: "https://flagcdn.com/w320/am.png", colors: ["red", "blue", "orange"], similar: ["DE", "BE", "TD", "XN"] },
|
|
4172
4184
|
{ alpha2: "AU", svgUrl: "https://flagcdn.com/au.svg", pngUrl: "https://flagcdn.com/w320/au.png", colors: ["blue", "red", "white"], similar: ["NZ", "GB", "FJ", "TV"] },
|
|
4173
4185
|
{ alpha2: "AT", svgUrl: "https://flagcdn.com/at.svg", pngUrl: "https://flagcdn.com/w320/at.png", colors: ["red", "white"], similar: ["LV", "SG", "PE", "PL"] },
|
|
4174
4186
|
{ alpha2: "AZ", svgUrl: "https://flagcdn.com/az.svg", pngUrl: "https://flagcdn.com/w320/az.png", colors: ["light-blue", "red", "green"], similar: ["TR", "TM", "UZ"] },
|
|
@@ -4292,6 +4304,7 @@ const flagData = [
|
|
|
4292
4304
|
{ alpha2: "MZ", svgUrl: "https://flagcdn.com/mz.svg", pngUrl: "https://flagcdn.com/w320/mz.png", colors: ["green", "white", "black", "yellow", "red"], similar: ["ZW", "AO", "ET"] },
|
|
4293
4305
|
{ alpha2: "MM", svgUrl: "https://flagcdn.com/mm.svg", pngUrl: "https://flagcdn.com/w320/mm.png", colors: ["yellow", "green", "red", "white"], similar: ["LT", "BO", "GH"] },
|
|
4294
4306
|
// ── N ─────────────────────────────────────────────────────────────────
|
|
4307
|
+
{ alpha2: "XN", svgUrl: "https://flagcdn.com/xn.svg", pngUrl: "https://flagcdn.com/w320/xn.png", colors: ["red", "blue", "orange", "white"], similar: ["AM"] },
|
|
4295
4308
|
{ alpha2: "NA", svgUrl: "https://flagcdn.com/na.svg", pngUrl: "https://flagcdn.com/w320/na.png", colors: ["blue", "red", "green", "white", "gold"], similar: ["ZA", "BW", "ZW"] },
|
|
4296
4309
|
{ alpha2: "NR", svgUrl: "https://flagcdn.com/nr.svg", pngUrl: "https://flagcdn.com/w320/nr.png", colors: ["blue", "white", "gold"], similar: ["AU", "TV", "TO"] },
|
|
4297
4310
|
{ alpha2: "NP", svgUrl: "https://flagcdn.com/np.svg", pngUrl: "https://flagcdn.com/w320/np.png", colors: ["red", "white", "blue"], similar: [] },
|