@formatjs/intl-listformat 7.5.2 → 7.5.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/LICENSE.md +1 -1
- package/lib/index.js +31 -33
- package/lib/polyfill-force.js +2 -5
- package/lib/polyfill.js +4 -7
- package/lib/should-polyfill.js +4 -8
- package/lib/supported-locales.generated.js +1 -4
- package/package.json +5 -5
- package/polyfill.iife.js +4662 -7810
package/LICENSE.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2023 FormatJS
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
6
|
|
package/lib/index.js
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
var ecma402_abstract_1 = require("@formatjs/ecma402-abstract");
|
|
5
|
-
var intl_localematcher_1 = require("@formatjs/intl-localematcher");
|
|
1
|
+
import { __assign } from "tslib";
|
|
2
|
+
import { GetOption, setInternalSlot, SupportedLocales, getInternalSlot, PartitionPattern, invariant, isLiteralPart, GetOptionsObject, CanonicalizeLocaleList, } from '@formatjs/ecma402-abstract';
|
|
3
|
+
import { ResolveLocale } from '@formatjs/intl-localematcher';
|
|
6
4
|
function validateInstance(instance, method) {
|
|
7
5
|
if (!(instance instanceof ListFormat)) {
|
|
8
6
|
throw new TypeError("Method Intl.ListFormat.prototype.".concat(method, " called on incompatible receiver ").concat(String(instance)));
|
|
@@ -32,7 +30,7 @@ function createPartsFromList(internalSlotMap, lf, list) {
|
|
|
32
30
|
return [];
|
|
33
31
|
}
|
|
34
32
|
if (size === 2) {
|
|
35
|
-
var pattern =
|
|
33
|
+
var pattern = getInternalSlot(internalSlotMap, lf, 'templatePair');
|
|
36
34
|
var first = { type: 'element', value: list[0] };
|
|
37
35
|
var second = { type: 'element', value: list[1] };
|
|
38
36
|
return deconstructPattern(pattern, { '0': first, '1': second });
|
|
@@ -46,13 +44,13 @@ function createPartsFromList(internalSlotMap, lf, list) {
|
|
|
46
44
|
while (i >= 0) {
|
|
47
45
|
var pattern = void 0;
|
|
48
46
|
if (i === 0) {
|
|
49
|
-
pattern =
|
|
47
|
+
pattern = getInternalSlot(internalSlotMap, lf, 'templateStart');
|
|
50
48
|
}
|
|
51
49
|
else if (i < size - 2) {
|
|
52
|
-
pattern =
|
|
50
|
+
pattern = getInternalSlot(internalSlotMap, lf, 'templateMiddle');
|
|
53
51
|
}
|
|
54
52
|
else {
|
|
55
|
-
pattern =
|
|
53
|
+
pattern = getInternalSlot(internalSlotMap, lf, 'templateEnd');
|
|
56
54
|
}
|
|
57
55
|
var head = { type: 'element', value: list[i] };
|
|
58
56
|
parts = deconstructPattern(pattern, { '0': head, '1': parts });
|
|
@@ -61,19 +59,19 @@ function createPartsFromList(internalSlotMap, lf, list) {
|
|
|
61
59
|
return parts;
|
|
62
60
|
}
|
|
63
61
|
function deconstructPattern(pattern, placeables) {
|
|
64
|
-
var patternParts =
|
|
62
|
+
var patternParts = PartitionPattern(pattern);
|
|
65
63
|
var result = [];
|
|
66
64
|
for (var _i = 0, patternParts_1 = patternParts; _i < patternParts_1.length; _i++) {
|
|
67
65
|
var patternPart = patternParts_1[_i];
|
|
68
66
|
var part = patternPart.type;
|
|
69
|
-
if (
|
|
67
|
+
if (isLiteralPart(patternPart)) {
|
|
70
68
|
result.push({
|
|
71
69
|
type: 'literal',
|
|
72
70
|
value: patternPart.value,
|
|
73
71
|
});
|
|
74
72
|
}
|
|
75
73
|
else {
|
|
76
|
-
|
|
74
|
+
invariant(part in placeables, "".concat(part, " is missing from placables"));
|
|
77
75
|
var subst = placeables[part];
|
|
78
76
|
if (Array.isArray(subst)) {
|
|
79
77
|
result.push.apply(result, subst);
|
|
@@ -93,28 +91,28 @@ var ListFormat = /** @class */ (function () {
|
|
|
93
91
|
if (!newTarget) {
|
|
94
92
|
throw new TypeError("Intl.ListFormat must be called with 'new'");
|
|
95
93
|
}
|
|
96
|
-
|
|
97
|
-
var requestedLocales =
|
|
94
|
+
setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'initializedListFormat', true);
|
|
95
|
+
var requestedLocales = CanonicalizeLocaleList(locales);
|
|
98
96
|
var opt = Object.create(null);
|
|
99
|
-
var opts =
|
|
100
|
-
var matcher =
|
|
97
|
+
var opts = GetOptionsObject(options);
|
|
98
|
+
var matcher = GetOption(opts, 'localeMatcher', 'string', ['best fit', 'lookup'], 'best fit');
|
|
101
99
|
opt.localeMatcher = matcher;
|
|
102
100
|
var localeData = ListFormat.localeData;
|
|
103
|
-
var r =
|
|
104
|
-
|
|
105
|
-
var type =
|
|
106
|
-
|
|
107
|
-
var style =
|
|
108
|
-
|
|
101
|
+
var r = ResolveLocale(ListFormat.availableLocales, requestedLocales, opt, ListFormat.relevantExtensionKeys, localeData, ListFormat.getDefaultLocale);
|
|
102
|
+
setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'locale', r.locale);
|
|
103
|
+
var type = GetOption(opts, 'type', 'string', ['conjunction', 'disjunction', 'unit'], 'conjunction');
|
|
104
|
+
setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'type', type);
|
|
105
|
+
var style = GetOption(opts, 'style', 'string', ['long', 'short', 'narrow'], 'long');
|
|
106
|
+
setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'style', style);
|
|
109
107
|
var dataLocale = r.dataLocale;
|
|
110
108
|
var dataLocaleData = localeData[dataLocale];
|
|
111
|
-
|
|
109
|
+
invariant(!!dataLocaleData, "Missing locale data for ".concat(dataLocale));
|
|
112
110
|
var dataLocaleTypes = dataLocaleData[type];
|
|
113
111
|
var templates = dataLocaleTypes[style];
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
112
|
+
setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'templatePair', templates.pair);
|
|
113
|
+
setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'templateStart', templates.start);
|
|
114
|
+
setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'templateMiddle', templates.middle);
|
|
115
|
+
setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'templateEnd', templates.end);
|
|
118
116
|
}
|
|
119
117
|
ListFormat.prototype.format = function (elements) {
|
|
120
118
|
validateInstance(this, 'format');
|
|
@@ -138,21 +136,21 @@ var ListFormat = /** @class */ (function () {
|
|
|
138
136
|
var result = [];
|
|
139
137
|
for (var _i = 0, parts_2 = parts; _i < parts_2.length; _i++) {
|
|
140
138
|
var part = parts_2[_i];
|
|
141
|
-
result.push(
|
|
139
|
+
result.push(__assign({}, part));
|
|
142
140
|
}
|
|
143
141
|
return result;
|
|
144
142
|
};
|
|
145
143
|
ListFormat.prototype.resolvedOptions = function () {
|
|
146
144
|
validateInstance(this, 'resolvedOptions');
|
|
147
145
|
return {
|
|
148
|
-
locale:
|
|
149
|
-
type:
|
|
150
|
-
style:
|
|
146
|
+
locale: getInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'locale'),
|
|
147
|
+
type: getInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'type'),
|
|
148
|
+
style: getInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'style'),
|
|
151
149
|
};
|
|
152
150
|
};
|
|
153
151
|
ListFormat.supportedLocalesOf = function (locales, options) {
|
|
154
152
|
// test262/test/intl402/ListFormat/constructor/supportedLocalesOf/result-type.js
|
|
155
|
-
return
|
|
153
|
+
return SupportedLocales(ListFormat.availableLocales, CanonicalizeLocaleList(locales), options);
|
|
156
154
|
};
|
|
157
155
|
ListFormat.__addLocaleData = function () {
|
|
158
156
|
var data = [];
|
|
@@ -183,7 +181,7 @@ var ListFormat = /** @class */ (function () {
|
|
|
183
181
|
ListFormat.__INTERNAL_SLOT_MAP__ = new WeakMap();
|
|
184
182
|
return ListFormat;
|
|
185
183
|
}());
|
|
186
|
-
|
|
184
|
+
export default ListFormat;
|
|
187
185
|
try {
|
|
188
186
|
// IE11 does not have Symbol
|
|
189
187
|
if (typeof Symbol !== 'undefined') {
|
package/lib/polyfill-force.js
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
var tslib_1 = require("tslib");
|
|
4
|
-
var _1 = tslib_1.__importDefault(require("./"));
|
|
1
|
+
import ListFormat from './';
|
|
5
2
|
Object.defineProperty(Intl, 'ListFormat', {
|
|
6
|
-
value:
|
|
3
|
+
value: ListFormat,
|
|
7
4
|
writable: true,
|
|
8
5
|
enumerable: false,
|
|
9
6
|
configurable: true,
|
package/lib/polyfill.js
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
var _1 = tslib_1.__importDefault(require("./"));
|
|
5
|
-
var should_polyfill_1 = require("./should-polyfill");
|
|
6
|
-
if ((0, should_polyfill_1.shouldPolyfill)()) {
|
|
1
|
+
import ListFormat from './';
|
|
2
|
+
import { shouldPolyfill } from './should-polyfill';
|
|
3
|
+
if (shouldPolyfill()) {
|
|
7
4
|
Object.defineProperty(Intl, 'ListFormat', {
|
|
8
|
-
value:
|
|
5
|
+
value: ListFormat,
|
|
9
6
|
writable: true,
|
|
10
7
|
enumerable: false,
|
|
11
8
|
configurable: true,
|
package/lib/should-polyfill.js
CHANGED
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.shouldPolyfill = void 0;
|
|
4
|
-
var intl_localematcher_1 = require("@formatjs/intl-localematcher");
|
|
5
|
-
var supported_locales_generated_1 = require("./supported-locales.generated");
|
|
1
|
+
import { match } from '@formatjs/intl-localematcher';
|
|
2
|
+
import { supportedLocales } from './supported-locales.generated';
|
|
6
3
|
function supportedLocalesOf(locale) {
|
|
7
4
|
if (!locale) {
|
|
8
5
|
return true;
|
|
@@ -11,10 +8,9 @@ function supportedLocalesOf(locale) {
|
|
|
11
8
|
return (Intl.ListFormat.supportedLocalesOf(locales).length ===
|
|
12
9
|
locales.length);
|
|
13
10
|
}
|
|
14
|
-
function shouldPolyfill(locale) {
|
|
11
|
+
export function shouldPolyfill(locale) {
|
|
15
12
|
if (locale === void 0) { locale = 'en'; }
|
|
16
13
|
if (!('ListFormat' in Intl) || !supportedLocalesOf(locale)) {
|
|
17
|
-
return locale ?
|
|
14
|
+
return locale ? match([locale], supportedLocales, 'en') : undefined;
|
|
18
15
|
}
|
|
19
16
|
}
|
|
20
|
-
exports.shouldPolyfill = shouldPolyfill;
|
|
@@ -1,4 +1 @@
|
|
|
1
|
-
"
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.supportedLocales = void 0;
|
|
4
|
-
exports.supportedLocales = ["af", "af-NA", "agq", "ak", "am", "ar", "ar-AE", "ar-BH", "ar-DJ", "ar-DZ", "ar-EG", "ar-EH", "ar-ER", "ar-IL", "ar-IQ", "ar-JO", "ar-KM", "ar-KW", "ar-LB", "ar-LY", "ar-MA", "ar-MR", "ar-OM", "ar-PS", "ar-QA", "ar-SA", "ar-SD", "ar-SO", "ar-SS", "ar-SY", "ar-TD", "ar-TN", "ar-YE", "as", "asa", "ast", "az", "az-Cyrl", "az-Latn", "bas", "be", "be-tarask", "bem", "bez", "bg", "bm", "bn", "bn-IN", "bo", "bo-IN", "br", "brx", "bs", "bs-Cyrl", "bs-Latn", "ca", "ca-AD", "ca-ES-valencia", "ca-FR", "ca-IT", "ccp", "ccp-IN", "ce", "ceb", "cgg", "chr", "ckb", "ckb-IR", "cs", "cy", "da", "da-GL", "dav", "de", "de-AT", "de-BE", "de-CH", "de-IT", "de-LI", "de-LU", "dje", "doi", "dsb", "dua", "dyo", "dz", "ebu", "ee", "ee-TG", "el", "el-CY", "en", "en-001", "en-150", "en-AE", "en-AG", "en-AI", "en-AS", "en-AT", "en-AU", "en-BB", "en-BE", "en-BI", "en-BM", "en-BS", "en-BW", "en-BZ", "en-CA", "en-CC", "en-CH", "en-CK", "en-CM", "en-CX", "en-CY", "en-DE", "en-DG", "en-DK", "en-DM", "en-ER", "en-FI", "en-FJ", "en-FK", "en-FM", "en-GB", "en-GD", "en-GG", "en-GH", "en-GI", "en-GM", "en-GU", "en-GY", "en-HK", "en-IE", "en-IL", "en-IM", "en-IN", "en-IO", "en-JE", "en-JM", "en-KE", "en-KI", "en-KN", "en-KY", "en-LC", "en-LR", "en-LS", "en-MG", "en-MH", "en-MO", "en-MP", "en-MS", "en-MT", "en-MU", "en-MW", "en-MY", "en-NA", "en-NF", "en-NG", "en-NL", "en-NR", "en-NU", "en-NZ", "en-PG", "en-PH", "en-PK", "en-PN", "en-PR", "en-PW", "en-RW", "en-SB", "en-SC", "en-SD", "en-SE", "en-SG", "en-SH", "en-SI", "en-SL", "en-SS", "en-SX", "en-SZ", "en-TC", "en-TK", "en-TO", "en-TT", "en-TV", "en-TZ", "en-UG", "en-UM", "en-VC", "en-VG", "en-VI", "en-VU", "en-WS", "en-ZA", "en-ZM", "en-ZW", "eo", "es", "es-419", "es-AR", "es-BO", "es-BR", "es-BZ", "es-CL", "es-CO", "es-CR", "es-CU", "es-DO", "es-EA", "es-EC", "es-GQ", "es-GT", "es-HN", "es-IC", "es-MX", "es-NI", "es-PA", "es-PE", "es-PH", "es-PR", "es-PY", "es-SV", "es-US", "es-UY", "es-VE", "et", "eu", "ewo", "fa", "fa-AF", "ff", "ff-Adlm", "ff-Adlm-BF", "ff-Adlm-CM", "ff-Adlm-GH", "ff-Adlm-GM", "ff-Adlm-GW", "ff-Adlm-LR", "ff-Adlm-MR", "ff-Adlm-NE", "ff-Adlm-NG", "ff-Adlm-SL", "ff-Adlm-SN", "ff-Latn", "ff-Latn-BF", "ff-Latn-CM", "ff-Latn-GH", "ff-Latn-GM", "ff-Latn-GN", "ff-Latn-GW", "ff-Latn-LR", "ff-Latn-MR", "ff-Latn-NE", "ff-Latn-NG", "ff-Latn-SL", "fi", "fil", "fo", "fo-DK", "fr", "fr-BE", "fr-BF", "fr-BI", "fr-BJ", "fr-BL", "fr-CA", "fr-CD", "fr-CF", "fr-CG", "fr-CH", "fr-CI", "fr-CM", "fr-DJ", "fr-DZ", "fr-GA", "fr-GF", "fr-GN", "fr-GP", "fr-GQ", "fr-HT", "fr-KM", "fr-LU", "fr-MA", "fr-MC", "fr-MF", "fr-MG", "fr-ML", "fr-MQ", "fr-MR", "fr-MU", "fr-NC", "fr-NE", "fr-PF", "fr-PM", "fr-RE", "fr-RW", "fr-SC", "fr-SN", "fr-SY", "fr-TD", "fr-TG", "fr-TN", "fr-VU", "fr-WF", "fr-YT", "fur", "fy", "ga", "ga-GB", "gd", "gl", "gsw", "gsw-FR", "gsw-LI", "gu", "guz", "gv", "ha", "ha-GH", "ha-NE", "haw", "he", "hi", "hr", "hr-BA", "hsb", "hu", "hy", "ia", "id", "ig", "ii", "is", "it", "it-CH", "it-SM", "it-VA", "ja", "jgo", "jmc", "jv", "ka", "kab", "kam", "kde", "kea", "kgp", "khq", "ki", "kk", "kkj", "kl", "kln", "km", "kn", "ko", "ko-KP", "kok", "ks", "ks-Arab", "ksb", "ksf", "ksh", "ku", "kw", "ky", "lag", "lb", "lg", "lkt", "ln", "ln-AO", "ln-CF", "ln-CG", "lo", "lrc", "lrc-IQ", "lt", "lu", "luo", "luy", "lv", "mai", "mas", "mas-TZ", "mer", "mfe", "mg", "mgh", "mgo", "mi", "mk", "ml", "mn", "mni", "mni-Beng", "mr", "ms", "ms-BN", "ms-ID", "ms-SG", "mt", "mua", "my", "mzn", "naq", "nb", "nb-SJ", "nd", "nds", "nds-NL", "ne", "ne-IN", "nl", "nl-AW", "nl-BE", "nl-BQ", "nl-CW", "nl-SR", "nl-SX", "nmg", "nn", "nnh", "no", "nus", "nyn", "om", "om-KE", "or", "os", "os-RU", "pa", "pa-Arab", "pa-Guru", "pcm", "pl", "ps", "ps-PK", "pt", "pt-AO", "pt-CH", "pt-CV", "pt-GQ", "pt-GW", "pt-LU", "pt-MO", "pt-MZ", "pt-PT", "pt-ST", "pt-TL", "qu", "qu-BO", "qu-EC", "rm", "rn", "ro", "ro-MD", "rof", "ru", "ru-BY", "ru-KG", "ru-KZ", "ru-MD", "ru-UA", "rw", "rwk", "sa", "sah", "saq", "sat", "sat-Olck", "sbp", "sc", "sd", "sd-Arab", "sd-Deva", "se", "se-FI", "se-SE", "seh", "ses", "sg", "shi", "shi-Latn", "shi-Tfng", "si", "sk", "sl", "smn", "sn", "so", "so-DJ", "so-ET", "so-KE", "sq", "sq-MK", "sq-XK", "sr", "sr-Cyrl", "sr-Cyrl-BA", "sr-Cyrl-ME", "sr-Cyrl-XK", "sr-Latn", "sr-Latn-BA", "sr-Latn-ME", "sr-Latn-XK", "su", "su-Latn", "sv", "sv-AX", "sv-FI", "sw", "sw-CD", "sw-KE", "sw-UG", "ta", "ta-LK", "ta-MY", "ta-SG", "te", "teo", "teo-KE", "tg", "th", "ti", "ti-ER", "tk", "to", "tr", "tr-CY", "tt", "twq", "tzm", "ug", "uk", "und", "ur", "ur-IN", "uz", "uz-Arab", "uz-Cyrl", "uz-Latn", "vai", "vai-Latn", "vai-Vaii", "vi", "vun", "wae", "wo", "xh", "xog", "yav", "yi", "yo", "yo-BJ", "yrl", "yrl-CO", "yrl-VE", "yue", "yue-Hans", "yue-Hant", "zgh", "zh", "zh-Hans", "zh-Hans-HK", "zh-Hans-MO", "zh-Hans-SG", "zh-Hant", "zh-Hant-HK", "zh-Hant-MO", "zu"];
|
|
1
|
+
export var supportedLocales = ["af", "af-NA", "agq", "ak", "am", "ar", "ar-AE", "ar-BH", "ar-DJ", "ar-DZ", "ar-EG", "ar-EH", "ar-ER", "ar-IL", "ar-IQ", "ar-JO", "ar-KM", "ar-KW", "ar-LB", "ar-LY", "ar-MA", "ar-MR", "ar-OM", "ar-PS", "ar-QA", "ar-SA", "ar-SD", "ar-SO", "ar-SS", "ar-SY", "ar-TD", "ar-TN", "ar-YE", "as", "asa", "ast", "az", "az-Cyrl", "az-Latn", "bas", "be", "be-tarask", "bem", "bez", "bg", "bm", "bn", "bn-IN", "bo", "bo-IN", "br", "brx", "bs", "bs-Cyrl", "bs-Latn", "ca", "ca-AD", "ca-ES-valencia", "ca-FR", "ca-IT", "ccp", "ccp-IN", "ce", "ceb", "cgg", "chr", "ckb", "ckb-IR", "cs", "cy", "da", "da-GL", "dav", "de", "de-AT", "de-BE", "de-CH", "de-IT", "de-LI", "de-LU", "dje", "doi", "dsb", "dua", "dyo", "dz", "ebu", "ee", "ee-TG", "el", "el-CY", "en", "en-001", "en-150", "en-AE", "en-AG", "en-AI", "en-AS", "en-AT", "en-AU", "en-BB", "en-BE", "en-BI", "en-BM", "en-BS", "en-BW", "en-BZ", "en-CA", "en-CC", "en-CH", "en-CK", "en-CM", "en-CX", "en-CY", "en-DE", "en-DG", "en-DK", "en-DM", "en-ER", "en-FI", "en-FJ", "en-FK", "en-FM", "en-GB", "en-GD", "en-GG", "en-GH", "en-GI", "en-GM", "en-GU", "en-GY", "en-HK", "en-IE", "en-IL", "en-IM", "en-IN", "en-IO", "en-JE", "en-JM", "en-KE", "en-KI", "en-KN", "en-KY", "en-LC", "en-LR", "en-LS", "en-MG", "en-MH", "en-MO", "en-MP", "en-MS", "en-MT", "en-MU", "en-MW", "en-MY", "en-NA", "en-NF", "en-NG", "en-NL", "en-NR", "en-NU", "en-NZ", "en-PG", "en-PH", "en-PK", "en-PN", "en-PR", "en-PW", "en-RW", "en-SB", "en-SC", "en-SD", "en-SE", "en-SG", "en-SH", "en-SI", "en-SL", "en-SS", "en-SX", "en-SZ", "en-TC", "en-TK", "en-TO", "en-TT", "en-TV", "en-TZ", "en-UG", "en-UM", "en-VC", "en-VG", "en-VI", "en-VU", "en-WS", "en-ZA", "en-ZM", "en-ZW", "eo", "es", "es-419", "es-AR", "es-BO", "es-BR", "es-BZ", "es-CL", "es-CO", "es-CR", "es-CU", "es-DO", "es-EA", "es-EC", "es-GQ", "es-GT", "es-HN", "es-IC", "es-MX", "es-NI", "es-PA", "es-PE", "es-PH", "es-PR", "es-PY", "es-SV", "es-US", "es-UY", "es-VE", "et", "eu", "ewo", "fa", "fa-AF", "ff", "ff-Adlm", "ff-Adlm-BF", "ff-Adlm-CM", "ff-Adlm-GH", "ff-Adlm-GM", "ff-Adlm-GW", "ff-Adlm-LR", "ff-Adlm-MR", "ff-Adlm-NE", "ff-Adlm-NG", "ff-Adlm-SL", "ff-Adlm-SN", "ff-Latn", "ff-Latn-BF", "ff-Latn-CM", "ff-Latn-GH", "ff-Latn-GM", "ff-Latn-GN", "ff-Latn-GW", "ff-Latn-LR", "ff-Latn-MR", "ff-Latn-NE", "ff-Latn-NG", "ff-Latn-SL", "fi", "fil", "fo", "fo-DK", "fr", "fr-BE", "fr-BF", "fr-BI", "fr-BJ", "fr-BL", "fr-CA", "fr-CD", "fr-CF", "fr-CG", "fr-CH", "fr-CI", "fr-CM", "fr-DJ", "fr-DZ", "fr-GA", "fr-GF", "fr-GN", "fr-GP", "fr-GQ", "fr-HT", "fr-KM", "fr-LU", "fr-MA", "fr-MC", "fr-MF", "fr-MG", "fr-ML", "fr-MQ", "fr-MR", "fr-MU", "fr-NC", "fr-NE", "fr-PF", "fr-PM", "fr-RE", "fr-RW", "fr-SC", "fr-SN", "fr-SY", "fr-TD", "fr-TG", "fr-TN", "fr-VU", "fr-WF", "fr-YT", "fur", "fy", "ga", "ga-GB", "gd", "gl", "gsw", "gsw-FR", "gsw-LI", "gu", "guz", "gv", "ha", "ha-GH", "ha-NE", "haw", "he", "hi", "hr", "hr-BA", "hsb", "hu", "hy", "ia", "id", "ig", "ii", "is", "it", "it-CH", "it-SM", "it-VA", "ja", "jgo", "jmc", "jv", "ka", "kab", "kam", "kde", "kea", "kgp", "khq", "ki", "kk", "kkj", "kl", "kln", "km", "kn", "ko", "ko-KP", "kok", "ks", "ks-Arab", "ksb", "ksf", "ksh", "ku", "kw", "ky", "lag", "lb", "lg", "lkt", "ln", "ln-AO", "ln-CF", "ln-CG", "lo", "lrc", "lrc-IQ", "lt", "lu", "luo", "luy", "lv", "mai", "mas", "mas-TZ", "mer", "mfe", "mg", "mgh", "mgo", "mi", "mk", "ml", "mn", "mni", "mni-Beng", "mr", "ms", "ms-BN", "ms-ID", "ms-SG", "mt", "mua", "my", "mzn", "naq", "nb", "nb-SJ", "nd", "nds", "nds-NL", "ne", "ne-IN", "nl", "nl-AW", "nl-BE", "nl-BQ", "nl-CW", "nl-SR", "nl-SX", "nmg", "nn", "nnh", "no", "nus", "nyn", "om", "om-KE", "or", "os", "os-RU", "pa", "pa-Arab", "pa-Guru", "pcm", "pl", "ps", "ps-PK", "pt", "pt-AO", "pt-CH", "pt-CV", "pt-GQ", "pt-GW", "pt-LU", "pt-MO", "pt-MZ", "pt-PT", "pt-ST", "pt-TL", "qu", "qu-BO", "qu-EC", "rm", "rn", "ro", "ro-MD", "rof", "ru", "ru-BY", "ru-KG", "ru-KZ", "ru-MD", "ru-UA", "rw", "rwk", "sa", "sah", "saq", "sat", "sat-Olck", "sbp", "sc", "sd", "sd-Arab", "sd-Deva", "se", "se-FI", "se-SE", "seh", "ses", "sg", "shi", "shi-Latn", "shi-Tfng", "si", "sk", "sl", "smn", "sn", "so", "so-DJ", "so-ET", "so-KE", "sq", "sq-MK", "sq-XK", "sr", "sr-Cyrl", "sr-Cyrl-BA", "sr-Cyrl-ME", "sr-Cyrl-XK", "sr-Latn", "sr-Latn-BA", "sr-Latn-ME", "sr-Latn-XK", "su", "su-Latn", "sv", "sv-AX", "sv-FI", "sw", "sw-CD", "sw-KE", "sw-UG", "ta", "ta-LK", "ta-MY", "ta-SG", "te", "teo", "teo-KE", "tg", "th", "ti", "ti-ER", "tk", "to", "tr", "tr-CY", "tt", "twq", "tzm", "ug", "uk", "und", "ur", "ur-IN", "uz", "uz-Arab", "uz-Cyrl", "uz-Latn", "vai", "vai-Latn", "vai-Vaii", "vi", "vun", "wae", "wo", "xh", "xog", "yav", "yi", "yo", "yo-BJ", "yrl", "yrl-CO", "yrl-VE", "yue", "yue-Hans", "yue-Hant", "zgh", "zh", "zh-Hans", "zh-Hans-HK", "zh-Hans-MO", "zh-Hans-SG", "zh-Hant", "zh-Hant-HK", "zh-Hant-MO", "zu"];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@formatjs/intl-listformat",
|
|
3
|
-
"version": "7.5.
|
|
3
|
+
"version": "7.5.4",
|
|
4
4
|
"description": "Formats JS list in a i18n-safe way",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"intl",
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"tslib": "^2.4.0",
|
|
23
|
-
"@formatjs/ecma402-abstract": "1.
|
|
24
|
-
"@formatjs/intl-localematcher": "0.5.
|
|
23
|
+
"@formatjs/ecma402-abstract": "1.18.1",
|
|
24
|
+
"@formatjs/intl-localematcher": "0.5.3"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@formatjs/intl-
|
|
28
|
-
"@formatjs/intl-
|
|
27
|
+
"@formatjs/intl-getcanonicallocales": "2.3.0",
|
|
28
|
+
"@formatjs/intl-locale": "3.4.4"
|
|
29
29
|
},
|
|
30
30
|
"main": "index.js",
|
|
31
31
|
"types": "index.d.ts",
|