@internationalized/number 3.6.4 → 3.6.6
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/{main.js → index.cjs} +5 -5
- package/dist/{main.js.map → index.cjs.map} +1 -1
- package/dist/{import.mjs → index.js} +4 -4
- package/dist/{module.js.map → index.js.map} +1 -1
- package/dist/{module.js → index.mjs} +4 -4
- package/dist/index.mjs.map +1 -0
- package/dist/{NumberFormatter.main.js → private/NumberFormatter.cjs} +24 -26
- package/dist/private/NumberFormatter.cjs.map +1 -0
- package/dist/{NumberFormatter.mjs → private/NumberFormatter.js} +21 -21
- package/dist/{NumberFormatter.module.js.map → private/NumberFormatter.js.map} +1 -1
- package/dist/{NumberFormatter.module.js → private/NumberFormatter.mjs} +24 -26
- package/dist/private/NumberFormatter.mjs.map +1 -0
- package/dist/{NumberParser.main.js → private/NumberParser.cjs} +92 -76
- package/dist/private/NumberParser.cjs.map +1 -0
- package/dist/{NumberParser.mjs → private/NumberParser.js} +65 -45
- package/dist/private/NumberParser.js.map +1 -0
- package/dist/{NumberParser.module.js → private/NumberParser.mjs} +92 -76
- package/dist/private/NumberParser.mjs.map +1 -0
- package/dist/types/src/NumberFormatter.d.ts +28 -0
- package/dist/types/src/NumberParser.d.ts +27 -0
- package/dist/types/src/index.d.ts +3 -0
- package/package.json +26 -11
- package/src/NumberParser.ts +43 -20
- package/dist/NumberFormatter.main.js.map +0 -1
- package/dist/NumberParser.main.js.map +0 -1
- package/dist/NumberParser.module.js.map +0 -1
- package/dist/types.d.ts +0 -50
- package/dist/types.d.ts.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {NumberFormatter as $
|
|
1
|
+
import {NumberFormatter as $6c0bb0183c96ba81$export$cc77c4ff7e8673c5} from "./NumberFormatter.js";
|
|
2
2
|
|
|
3
3
|
/*
|
|
4
4
|
* Copyright 2020 Adobe. All rights reserved.
|
|
@@ -11,8 +11,8 @@ import {NumberFormatter as $488c6ddbf4ef74c2$export$cc77c4ff7e8673c5} from "./Nu
|
|
|
11
11
|
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
12
12
|
* governing permissions and limitations under the License.
|
|
13
13
|
*/
|
|
14
|
-
const $
|
|
15
|
-
const $
|
|
14
|
+
const $8f9e7ac92b21e8dd$var$CURRENCY_SIGN_REGEX = new RegExp('^.*\\(.*\\).*$');
|
|
15
|
+
const $8f9e7ac92b21e8dd$var$NUMBERING_SYSTEMS = [
|
|
16
16
|
'latn',
|
|
17
17
|
'arab',
|
|
18
18
|
'hanidec',
|
|
@@ -20,62 +20,64 @@ const $6c7bd7858deea686$var$NUMBERING_SYSTEMS = [
|
|
|
20
20
|
'beng',
|
|
21
21
|
'fullwide'
|
|
22
22
|
];
|
|
23
|
-
class $
|
|
23
|
+
class $8f9e7ac92b21e8dd$export$cd11ab140839f11d {
|
|
24
24
|
/**
|
|
25
25
|
* Parses the given string to a number. Returns NaN if a valid number could not be parsed.
|
|
26
26
|
*/ parse(value) {
|
|
27
|
-
return $
|
|
27
|
+
return $8f9e7ac92b21e8dd$var$getNumberParserImpl(this.locale, this.options, value).parse(value);
|
|
28
28
|
}
|
|
29
29
|
/**
|
|
30
30
|
* Returns whether the given string could potentially be a valid number. This should be used to
|
|
31
31
|
* validate user input as the user types. If a `minValue` or `maxValue` is provided, the validity
|
|
32
32
|
* of the minus/plus sign characters can be checked.
|
|
33
33
|
*/ isValidPartialNumber(value, minValue, maxValue) {
|
|
34
|
-
return $
|
|
34
|
+
return $8f9e7ac92b21e8dd$var$getNumberParserImpl(this.locale, this.options, value).isValidPartialNumber(value, minValue, maxValue);
|
|
35
35
|
}
|
|
36
36
|
/**
|
|
37
37
|
* Returns a numbering system for which the given string is valid in the current locale.
|
|
38
38
|
* If no numbering system could be detected, the default numbering system for the current
|
|
39
39
|
* locale is returned.
|
|
40
40
|
*/ getNumberingSystem(value) {
|
|
41
|
-
return $
|
|
41
|
+
return $8f9e7ac92b21e8dd$var$getNumberParserImpl(this.locale, this.options, value).options.numberingSystem;
|
|
42
42
|
}
|
|
43
43
|
constructor(locale, options = {}){
|
|
44
44
|
this.locale = locale;
|
|
45
45
|
this.options = options;
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
|
-
const $
|
|
49
|
-
function $
|
|
48
|
+
const $8f9e7ac92b21e8dd$var$numberParserCache = new Map();
|
|
49
|
+
function $8f9e7ac92b21e8dd$var$getNumberParserImpl(locale, options, value) {
|
|
50
50
|
// First try the default numbering system for the provided locale
|
|
51
|
-
let defaultParser = $
|
|
51
|
+
let defaultParser = $8f9e7ac92b21e8dd$var$getCachedNumberParser(locale, options);
|
|
52
52
|
// If that doesn't match, and the locale doesn't include a hard coded numbering system,
|
|
53
53
|
// try each of the other supported numbering systems until we find one that matches.
|
|
54
54
|
if (!locale.includes('-nu-') && !defaultParser.isValidPartialNumber(value)) {
|
|
55
|
-
for (let numberingSystem of $
|
|
56
|
-
let parser = $
|
|
55
|
+
for (let numberingSystem of $8f9e7ac92b21e8dd$var$NUMBERING_SYSTEMS)if (numberingSystem !== defaultParser.options.numberingSystem) {
|
|
56
|
+
let parser = $8f9e7ac92b21e8dd$var$getCachedNumberParser(locale + (locale.includes('-u-') ? '-nu-' : '-u-nu-') + numberingSystem, options);
|
|
57
57
|
if (parser.isValidPartialNumber(value)) return parser;
|
|
58
58
|
}
|
|
59
59
|
}
|
|
60
60
|
return defaultParser;
|
|
61
61
|
}
|
|
62
|
-
function $
|
|
62
|
+
function $8f9e7ac92b21e8dd$var$getCachedNumberParser(locale, options) {
|
|
63
63
|
let cacheKey = locale + (options ? Object.entries(options).sort((a, b)=>a[0] < b[0] ? -1 : 1).join() : '');
|
|
64
|
-
let parser = $
|
|
64
|
+
let parser = $8f9e7ac92b21e8dd$var$numberParserCache.get(cacheKey);
|
|
65
65
|
if (!parser) {
|
|
66
|
-
parser = new $
|
|
67
|
-
$
|
|
66
|
+
parser = new $8f9e7ac92b21e8dd$var$NumberParserImpl(locale, options);
|
|
67
|
+
$8f9e7ac92b21e8dd$var$numberParserCache.set(cacheKey, parser);
|
|
68
68
|
}
|
|
69
69
|
return parser;
|
|
70
70
|
}
|
|
71
71
|
// The actual number parser implementation. Instances of this class are cached
|
|
72
72
|
// based on the locale, options, and detected numbering system.
|
|
73
|
-
class $
|
|
73
|
+
class $8f9e7ac92b21e8dd$var$NumberParserImpl {
|
|
74
74
|
parse(value) {
|
|
75
|
+
let isGroupSymbolAllowed = this.formatter.resolvedOptions().useGrouping;
|
|
75
76
|
// to parse the number, we need to remove anything that isn't actually part of the number, for example we want '-10.40' not '-10.40 USD'
|
|
76
77
|
let fullySanitizedValue = this.sanitize(value);
|
|
77
|
-
|
|
78
|
-
|
|
78
|
+
// Return NaN if there is a group symbol but useGrouping is false
|
|
79
|
+
if (!isGroupSymbolAllowed && this.symbols.group && fullySanitizedValue.includes(this.symbols.group)) return NaN;
|
|
80
|
+
else if (this.symbols.group) fullySanitizedValue = fullySanitizedValue.replaceAll(this.symbols.group, '');
|
|
79
81
|
if (this.symbols.decimal) fullySanitizedValue = fullySanitizedValue.replace(this.symbols.decimal, '.');
|
|
80
82
|
if (this.symbols.minusSign) fullySanitizedValue = fullySanitizedValue.replace(this.symbols.minusSign, '-');
|
|
81
83
|
fullySanitizedValue = fullySanitizedValue.replace(this.symbols.numeral, this.symbols.index);
|
|
@@ -104,14 +106,17 @@ class $6c7bd7858deea686$var$NumberParserImpl {
|
|
|
104
106
|
minimumFractionDigits: Math.min(((_this_options_minimumFractionDigits = this.options.minimumFractionDigits) !== null && _this_options_minimumFractionDigits !== void 0 ? _this_options_minimumFractionDigits : 0) + 2, 20),
|
|
105
107
|
maximumFractionDigits: Math.min(((_this_options_maximumFractionDigits = this.options.maximumFractionDigits) !== null && _this_options_maximumFractionDigits !== void 0 ? _this_options_maximumFractionDigits : 0) + 2, 20)
|
|
106
108
|
};
|
|
107
|
-
return new $
|
|
109
|
+
return new $8f9e7ac92b21e8dd$export$cd11ab140839f11d(this.locale, options).parse(new (0, $6c0bb0183c96ba81$export$cc77c4ff7e8673c5)(this.locale, options).format(newValue));
|
|
108
110
|
}
|
|
109
111
|
// accounting will always be stripped to a positive number, so if it's accounting and has a () around everything, then we need to make it negative again
|
|
110
|
-
if (this.options.currencySign === 'accounting' && $
|
|
112
|
+
if (this.options.currencySign === 'accounting' && $8f9e7ac92b21e8dd$var$CURRENCY_SIGN_REGEX.test(value)) newValue = -1 * newValue;
|
|
111
113
|
return newValue;
|
|
112
114
|
}
|
|
113
115
|
sanitize(value) {
|
|
114
|
-
|
|
116
|
+
let isGroupSymbolAllowed = this.formatter.resolvedOptions().useGrouping;
|
|
117
|
+
// If the value is only a unit and it matches one of the formatted numbers where the value is part of the unit and doesn't have any numerals, then
|
|
118
|
+
// return the known value for that case.
|
|
119
|
+
if (this.symbols.noNumeralUnits.length > 0 && this.symbols.noNumeralUnits.find((obj)=>obj.unit === value)) return this.symbols.noNumeralUnits.find((obj)=>obj.unit === value).value.toString();
|
|
115
120
|
value = value.replace(this.symbols.literals, '');
|
|
116
121
|
// Replace the ASCII minus sign with the minus sign used in the current locale
|
|
117
122
|
// so that both are allowed in case the user's keyboard doesn't have the locale's minus sign.
|
|
@@ -120,30 +125,32 @@ class $6c7bd7858deea686$var$NumberParserImpl {
|
|
|
120
125
|
// instead they use the , (44) character or apparently the (1548) character.
|
|
121
126
|
if (this.options.numberingSystem === 'arab') {
|
|
122
127
|
if (this.symbols.decimal) {
|
|
123
|
-
value = value
|
|
124
|
-
value = value
|
|
128
|
+
value = $8f9e7ac92b21e8dd$var$replaceAll(value, ',', this.symbols.decimal);
|
|
129
|
+
value = $8f9e7ac92b21e8dd$var$replaceAll(value, String.fromCharCode(1548), this.symbols.decimal);
|
|
125
130
|
}
|
|
126
|
-
if (this.symbols.group) value = $
|
|
131
|
+
if (this.symbols.group && isGroupSymbolAllowed) value = $8f9e7ac92b21e8dd$var$replaceAll(value, '.', this.symbols.group);
|
|
127
132
|
}
|
|
133
|
+
// In some locale styles, such as swiss currency, the group character can be a special single quote
|
|
134
|
+
// that keyboards don't typically have. This expands the character to include the easier to type single quote.
|
|
135
|
+
if (this.symbols.group === "\u2019" && value.includes("'") && isGroupSymbolAllowed) value = $8f9e7ac92b21e8dd$var$replaceAll(value, "'", this.symbols.group);
|
|
128
136
|
// fr-FR group character is narrow non-breaking space, char code 8239 (U+202F), but that's not a key on the french keyboard,
|
|
129
137
|
// so allow space and non-breaking space as a group char as well
|
|
130
|
-
if (this.options.locale === 'fr-FR' && this.symbols.group) {
|
|
131
|
-
value = $
|
|
132
|
-
value = $
|
|
138
|
+
if (this.options.locale === 'fr-FR' && this.symbols.group && isGroupSymbolAllowed) {
|
|
139
|
+
value = $8f9e7ac92b21e8dd$var$replaceAll(value, ' ', this.symbols.group);
|
|
140
|
+
value = $8f9e7ac92b21e8dd$var$replaceAll(value, /\u00A0/g, this.symbols.group);
|
|
133
141
|
}
|
|
134
142
|
return value;
|
|
135
143
|
}
|
|
136
144
|
isValidPartialNumber(value, minValue = -Infinity, maxValue = Infinity) {
|
|
145
|
+
let isGroupSymbolAllowed = this.formatter.resolvedOptions().useGrouping;
|
|
137
146
|
value = this.sanitize(value);
|
|
138
147
|
// Remove minus or plus sign, which must be at the start of the string.
|
|
139
148
|
if (this.symbols.minusSign && value.startsWith(this.symbols.minusSign) && minValue < 0) value = value.slice(this.symbols.minusSign.length);
|
|
140
149
|
else if (this.symbols.plusSign && value.startsWith(this.symbols.plusSign) && maxValue > 0) value = value.slice(this.symbols.plusSign.length);
|
|
141
|
-
// Numbers cannot start with a group separator
|
|
142
|
-
if (this.symbols.group && value.startsWith(this.symbols.group)) return false;
|
|
143
150
|
// Numbers that can't have any decimal values fail if a decimal character is typed
|
|
144
151
|
if (this.symbols.decimal && value.indexOf(this.symbols.decimal) > -1 && this.options.maximumFractionDigits === 0) return false;
|
|
145
152
|
// Remove numerals, groups, and decimals
|
|
146
|
-
if (this.symbols.group) value = $
|
|
153
|
+
if (this.symbols.group && isGroupSymbolAllowed) value = $8f9e7ac92b21e8dd$var$replaceAll(value, this.symbols.group, '');
|
|
147
154
|
value = value.replace(this.symbols.numeral, '');
|
|
148
155
|
if (this.symbols.decimal) value = value.replace(this.symbols.decimal, '');
|
|
149
156
|
// The number is valid if there are no remaining characters
|
|
@@ -163,12 +170,12 @@ class $6c7bd7858deea686$var$NumberParserImpl {
|
|
|
163
170
|
}
|
|
164
171
|
this.formatter = new Intl.NumberFormat(locale, options);
|
|
165
172
|
this.options = this.formatter.resolvedOptions();
|
|
166
|
-
this.symbols = $
|
|
173
|
+
this.symbols = $8f9e7ac92b21e8dd$var$getSymbols(locale, this.formatter, this.options, options);
|
|
167
174
|
var _this_options_minimumFractionDigits, _this_options_maximumFractionDigits;
|
|
168
175
|
if (this.options.style === 'percent' && (((_this_options_minimumFractionDigits = this.options.minimumFractionDigits) !== null && _this_options_minimumFractionDigits !== void 0 ? _this_options_minimumFractionDigits : 0) > 18 || ((_this_options_maximumFractionDigits = this.options.maximumFractionDigits) !== null && _this_options_maximumFractionDigits !== void 0 ? _this_options_maximumFractionDigits : 0) > 18)) console.warn('NumberParser cannot handle percentages with greater than 18 decimal places, please reduce the number in your options.');
|
|
169
176
|
}
|
|
170
177
|
}
|
|
171
|
-
const $
|
|
178
|
+
const $8f9e7ac92b21e8dd$var$nonLiteralParts = new Set([
|
|
172
179
|
'decimal',
|
|
173
180
|
'fraction',
|
|
174
181
|
'integer',
|
|
@@ -179,7 +186,7 @@ const $6c7bd7858deea686$var$nonLiteralParts = new Set([
|
|
|
179
186
|
// This list is derived from https://www.unicode.org/cldr/charts/43/supplemental/language_plural_rules.html#comparison and includes
|
|
180
187
|
// all unique numbers which we need to check in order to determine all the plural forms for a given locale.
|
|
181
188
|
// See: https://github.com/adobe/react-spectrum/pull/5134/files#r1337037855 for used script
|
|
182
|
-
const $
|
|
189
|
+
const $8f9e7ac92b21e8dd$var$pluralNumbers = [
|
|
183
190
|
0,
|
|
184
191
|
4,
|
|
185
192
|
2,
|
|
@@ -193,7 +200,7 @@ const $6c7bd7858deea686$var$pluralNumbers = [
|
|
|
193
200
|
0.1,
|
|
194
201
|
1.1
|
|
195
202
|
];
|
|
196
|
-
function $
|
|
203
|
+
function $8f9e7ac92b21e8dd$var$getSymbols(locale, formatter, intlOptions, originalOptions) {
|
|
197
204
|
var _allParts_find, _posAllParts_find, _decimalParts_find, _allParts_find1;
|
|
198
205
|
// formatter needs access to all decimal places in order to generate the correct literal strings for the plural set
|
|
199
206
|
let symbolFormatter = new Intl.NumberFormat(locale, {
|
|
@@ -203,12 +210,22 @@ function $6c7bd7858deea686$var$getSymbols(locale, formatter, intlOptions, origin
|
|
|
203
210
|
maximumSignificantDigits: 21,
|
|
204
211
|
roundingIncrement: 1,
|
|
205
212
|
roundingPriority: 'auto',
|
|
206
|
-
roundingMode: 'halfExpand'
|
|
213
|
+
roundingMode: 'halfExpand',
|
|
214
|
+
useGrouping: true
|
|
207
215
|
});
|
|
208
216
|
// Note: some locale's don't add a group symbol until there is a ten thousands place
|
|
209
217
|
let allParts = symbolFormatter.formatToParts(-10000.111);
|
|
210
218
|
let posAllParts = symbolFormatter.formatToParts(10000.111);
|
|
211
|
-
let pluralParts = $
|
|
219
|
+
let pluralParts = $8f9e7ac92b21e8dd$var$pluralNumbers.map((n)=>symbolFormatter.formatToParts(n));
|
|
220
|
+
// if the plural parts include a unit but no integer or fraction, then we need to add the unit to the special set
|
|
221
|
+
let noNumeralUnits = pluralParts.map((p, i)=>{
|
|
222
|
+
let unit = p.find((p)=>p.type === 'unit');
|
|
223
|
+
if (unit && !p.some((p)=>p.type === 'integer' || p.type === 'fraction')) return {
|
|
224
|
+
unit: unit.value,
|
|
225
|
+
value: $8f9e7ac92b21e8dd$var$pluralNumbers[i]
|
|
226
|
+
};
|
|
227
|
+
return null;
|
|
228
|
+
}).filter((p)=>!!p);
|
|
212
229
|
var _allParts_find_value;
|
|
213
230
|
let minusSign = (_allParts_find_value = (_allParts_find = allParts.find((p)=>p.type === 'minusSign')) === null || _allParts_find === void 0 ? void 0 : _allParts_find.value) !== null && _allParts_find_value !== void 0 ? _allParts_find_value : '-';
|
|
214
231
|
let plusSign = (_posAllParts_find = posAllParts.find((p)=>p.type === 'plusSign')) === null || _posAllParts_find === void 0 ? void 0 : _posAllParts_find.value;
|
|
@@ -226,15 +243,16 @@ function $6c7bd7858deea686$var$getSymbols(locale, formatter, intlOptions, origin
|
|
|
226
243
|
let group = (_allParts_find1 = allParts.find((p)=>p.type === 'group')) === null || _allParts_find1 === void 0 ? void 0 : _allParts_find1.value;
|
|
227
244
|
// this set is also for a regex, it's all literals that might be in the string we want to eventually parse that
|
|
228
245
|
// don't contribute to the numerical value
|
|
229
|
-
let allPartsLiterals = allParts.filter((p)=>!$
|
|
230
|
-
let pluralPartsLiterals = pluralParts.flatMap((p)=>p.filter((p)=>!$
|
|
246
|
+
let allPartsLiterals = allParts.filter((p)=>!$8f9e7ac92b21e8dd$var$nonLiteralParts.has(p.type)).map((p)=>$8f9e7ac92b21e8dd$var$escapeRegex(p.value));
|
|
247
|
+
let pluralPartsLiterals = pluralParts.flatMap((p)=>p.filter((p)=>!$8f9e7ac92b21e8dd$var$nonLiteralParts.has(p.type)).map((p)=>$8f9e7ac92b21e8dd$var$escapeRegex(p.value)));
|
|
231
248
|
let sortedLiterals = [
|
|
232
249
|
...new Set([
|
|
233
250
|
...allPartsLiterals,
|
|
234
251
|
...pluralPartsLiterals
|
|
235
252
|
])
|
|
236
253
|
].sort((a, b)=>b.length - a.length);
|
|
237
|
-
|
|
254
|
+
// Match both whitespace and formatting characters
|
|
255
|
+
let literals = sortedLiterals.length === 0 ? new RegExp('\\p{White_Space}|\\p{Cf}', 'gu') : new RegExp(`${sortedLiterals.join('|')}|\\p{White_Space}|\\p{Cf}`, 'gu');
|
|
238
256
|
// These are for replacing non-latn characters with the latn equivalent
|
|
239
257
|
let numerals = [
|
|
240
258
|
...new Intl.NumberFormat(intlOptions.locale, {
|
|
@@ -254,17 +272,19 @@ function $6c7bd7858deea686$var$getSymbols(locale, formatter, intlOptions, origin
|
|
|
254
272
|
group: group,
|
|
255
273
|
literals: literals,
|
|
256
274
|
numeral: numeral,
|
|
257
|
-
|
|
275
|
+
numerals: numerals,
|
|
276
|
+
index: index,
|
|
277
|
+
noNumeralUnits: noNumeralUnits
|
|
258
278
|
};
|
|
259
279
|
}
|
|
260
|
-
function $
|
|
280
|
+
function $8f9e7ac92b21e8dd$var$replaceAll(str, find, replace) {
|
|
261
281
|
if (str.replaceAll) return str.replaceAll(find, replace);
|
|
262
282
|
return str.split(find).join(replace);
|
|
263
283
|
}
|
|
264
|
-
function $
|
|
284
|
+
function $8f9e7ac92b21e8dd$var$escapeRegex(string) {
|
|
265
285
|
return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
|
266
286
|
}
|
|
267
287
|
|
|
268
288
|
|
|
269
|
-
export {$
|
|
270
|
-
//# sourceMappingURL=NumberParser.
|
|
289
|
+
export {$8f9e7ac92b21e8dd$export$cd11ab140839f11d as NumberParser};
|
|
290
|
+
//# sourceMappingURL=NumberParser.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"mappings":"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","sources":["packages/@internationalized/number/src/NumberParser.ts"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {NumberFormatter} from './NumberFormatter';\n\ninterface Symbols {\n minusSign?: string,\n plusSign?: string,\n decimal?: string,\n group?: string,\n literals: RegExp,\n numeral: RegExp,\n numerals: string[],\n index: (v: string) => string,\n noNumeralUnits: Array<{unit: string, value: number}>\n}\n\nconst CURRENCY_SIGN_REGEX = new RegExp('^.*\\\\(.*\\\\).*$');\nconst NUMBERING_SYSTEMS = ['latn', 'arab', 'hanidec', 'deva', 'beng', 'fullwide'];\n\n/**\n * A NumberParser can be used to perform locale-aware parsing of numbers from Unicode strings,\n * as well as validation of partial user input. It automatically detects the numbering system\n * used in the input, and supports parsing decimals, percentages, currency values, and units\n * according to the locale.\n */\nexport class NumberParser {\n private locale: string;\n private options: Intl.NumberFormatOptions;\n\n constructor(locale: string, options: Intl.NumberFormatOptions = {}) {\n this.locale = locale;\n this.options = options;\n }\n\n /**\n * Parses the given string to a number. Returns NaN if a valid number could not be parsed.\n */\n parse(value: string): number {\n return getNumberParserImpl(this.locale, this.options, value).parse(value);\n }\n\n /**\n * Returns whether the given string could potentially be a valid number. This should be used to\n * validate user input as the user types. If a `minValue` or `maxValue` is provided, the validity\n * of the minus/plus sign characters can be checked.\n */\n isValidPartialNumber(value: string, minValue?: number, maxValue?: number): boolean {\n return getNumberParserImpl(this.locale, this.options, value).isValidPartialNumber(value, minValue, maxValue);\n }\n\n /**\n * Returns a numbering system for which the given string is valid in the current locale.\n * If no numbering system could be detected, the default numbering system for the current\n * locale is returned.\n */\n getNumberingSystem(value: string): string {\n return getNumberParserImpl(this.locale, this.options, value).options.numberingSystem;\n }\n}\n\nconst numberParserCache = new Map<string, NumberParserImpl>();\nfunction getNumberParserImpl(locale: string, options: Intl.NumberFormatOptions, value: string) {\n // First try the default numbering system for the provided locale\n let defaultParser = getCachedNumberParser(locale, options);\n\n // If that doesn't match, and the locale doesn't include a hard coded numbering system,\n // try each of the other supported numbering systems until we find one that matches.\n if (!locale.includes('-nu-') && !defaultParser.isValidPartialNumber(value)) {\n for (let numberingSystem of NUMBERING_SYSTEMS) {\n if (numberingSystem !== defaultParser.options.numberingSystem) {\n let parser = getCachedNumberParser(locale + (locale.includes('-u-') ? '-nu-' : '-u-nu-') + numberingSystem, options);\n if (parser.isValidPartialNumber(value)) {\n return parser;\n }\n }\n }\n }\n\n return defaultParser;\n}\n\nfunction getCachedNumberParser(locale: string, options: Intl.NumberFormatOptions) {\n let cacheKey = locale + (options ? Object.entries(options).sort((a, b) => a[0] < b[0] ? -1 : 1).join() : '');\n let parser = numberParserCache.get(cacheKey);\n if (!parser) {\n parser = new NumberParserImpl(locale, options);\n numberParserCache.set(cacheKey, parser);\n }\n\n return parser;\n}\n\n// The actual number parser implementation. Instances of this class are cached\n// based on the locale, options, and detected numbering system.\nclass NumberParserImpl {\n formatter: Intl.NumberFormat;\n options: Intl.ResolvedNumberFormatOptions;\n symbols: Symbols;\n locale: string;\n\n constructor(locale: string, options: Intl.NumberFormatOptions = {}) {\n this.locale = locale;\n // see https://tc39.es/ecma402/#sec-setnfdigitoptions, when using roundingIncrement, the maximumFractionDigits and minimumFractionDigits must be equal\n // by default, they are 0 and 3 respectively, so we set them to 0 if neither are set\n if (options.roundingIncrement !== 1 && options.roundingIncrement != null) {\n if (options.maximumFractionDigits == null && options.minimumFractionDigits == null) {\n options.maximumFractionDigits = 0;\n options.minimumFractionDigits = 0;\n } else if (options.maximumFractionDigits == null) {\n options.maximumFractionDigits = options.minimumFractionDigits;\n } else if (options.minimumFractionDigits == null) {\n options.minimumFractionDigits = options.maximumFractionDigits;\n }\n // if both are specified, let the normal Range Error be thrown\n }\n this.formatter = new Intl.NumberFormat(locale, options);\n this.options = this.formatter.resolvedOptions();\n this.symbols = getSymbols(locale, this.formatter, this.options, options);\n if (this.options.style === 'percent' && ((this.options.minimumFractionDigits ?? 0) > 18 || (this.options.maximumFractionDigits ?? 0) > 18)) {\n console.warn('NumberParser cannot handle percentages with greater than 18 decimal places, please reduce the number in your options.');\n }\n }\n\n parse(value: string) {\n let isGroupSymbolAllowed = this.formatter.resolvedOptions().useGrouping;\n // to parse the number, we need to remove anything that isn't actually part of the number, for example we want '-10.40' not '-10.40 USD'\n let fullySanitizedValue = this.sanitize(value);\n\n // Return NaN if there is a group symbol but useGrouping is false\n if (!isGroupSymbolAllowed && this.symbols.group && fullySanitizedValue.includes(this.symbols.group)) {\n return NaN;\n } else if (this.symbols.group) {\n fullySanitizedValue = fullySanitizedValue.replaceAll(this.symbols.group!, '');\n }\n\n if (this.symbols.decimal) {\n fullySanitizedValue = fullySanitizedValue.replace(this.symbols.decimal!, '.');\n }\n if (this.symbols.minusSign) {\n fullySanitizedValue = fullySanitizedValue.replace(this.symbols.minusSign!, '-');\n }\n fullySanitizedValue = fullySanitizedValue.replace(this.symbols.numeral, this.symbols.index);\n\n if (this.options.style === 'percent') {\n // javascript is bad at dividing by 100 and maintaining the same significant figures, so perform it on the string before parsing\n let isNegative = fullySanitizedValue.indexOf('-');\n fullySanitizedValue = fullySanitizedValue.replace('-', '');\n fullySanitizedValue = fullySanitizedValue.replace('+', '');\n let index = fullySanitizedValue.indexOf('.');\n if (index === -1) {\n index = fullySanitizedValue.length;\n }\n fullySanitizedValue = fullySanitizedValue.replace('.', '');\n if (index - 2 === 0) {\n fullySanitizedValue = `0.${fullySanitizedValue}`;\n } else if (index - 2 === -1) {\n fullySanitizedValue = `0.0${fullySanitizedValue}`;\n } else if (index - 2 === -2) {\n fullySanitizedValue = '0.00';\n } else {\n fullySanitizedValue = `${fullySanitizedValue.slice(0, index - 2)}.${fullySanitizedValue.slice(index - 2)}`;\n }\n if (isNegative > -1) {\n fullySanitizedValue = `-${fullySanitizedValue}`;\n }\n }\n\n let newValue = fullySanitizedValue ? +fullySanitizedValue : NaN;\n if (isNaN(newValue)) {\n return NaN;\n }\n\n if (this.options.style === 'percent') {\n // extra step for rounding percents to what our formatter would output\n let options = {\n ...this.options,\n style: 'decimal' as const,\n minimumFractionDigits: Math.min((this.options.minimumFractionDigits ?? 0) + 2, 20),\n maximumFractionDigits: Math.min((this.options.maximumFractionDigits ?? 0) + 2, 20)\n };\n return (new NumberParser(this.locale, options)).parse(new NumberFormatter(this.locale, options).format(newValue));\n }\n\n // accounting will always be stripped to a positive number, so if it's accounting and has a () around everything, then we need to make it negative again\n if (this.options.currencySign === 'accounting' && CURRENCY_SIGN_REGEX.test(value)) {\n newValue = -1 * newValue;\n }\n return newValue;\n }\n\n sanitize(value: string) {\n let isGroupSymbolAllowed = this.formatter.resolvedOptions().useGrouping;\n // If the value is only a unit and it matches one of the formatted numbers where the value is part of the unit and doesn't have any numerals, then\n // return the known value for that case.\n if (this.symbols.noNumeralUnits.length > 0 && this.symbols.noNumeralUnits.find(obj => obj.unit === value)) {\n return this.symbols.noNumeralUnits.find(obj => obj.unit === value)!.value.toString();\n }\n\n value = value.replace(this.symbols.literals, '');\n\n // Replace the ASCII minus sign with the minus sign used in the current locale\n // so that both are allowed in case the user's keyboard doesn't have the locale's minus sign.\n if (this.symbols.minusSign) {\n value = value.replace('-', this.symbols.minusSign);\n }\n\n // In arab numeral system, their decimal character is 1643, but most keyboards don't type that\n // instead they use the , (44) character or apparently the (1548) character.\n if (this.options.numberingSystem === 'arab') {\n if (this.symbols.decimal) {\n value = replaceAll(value, ',', this.symbols.decimal);\n value = replaceAll(value, String.fromCharCode(1548), this.symbols.decimal);\n }\n if (this.symbols.group && isGroupSymbolAllowed) {\n value = replaceAll(value, '.', this.symbols.group);\n }\n }\n\n // In some locale styles, such as swiss currency, the group character can be a special single quote\n // that keyboards don't typically have. This expands the character to include the easier to type single quote.\n if (this.symbols.group === '’' && value.includes(\"'\") && isGroupSymbolAllowed) {\n value = replaceAll(value, \"'\", this.symbols.group);\n }\n\n // fr-FR group character is narrow non-breaking space, char code 8239 (U+202F), but that's not a key on the french keyboard,\n // so allow space and non-breaking space as a group char as well\n if (this.options.locale === 'fr-FR' && this.symbols.group && isGroupSymbolAllowed) {\n value = replaceAll(value, ' ', this.symbols.group);\n value = replaceAll(value, /\\u00A0/g, this.symbols.group);\n }\n\n return value;\n }\n\n isValidPartialNumber(value: string, minValue: number = -Infinity, maxValue: number = Infinity): boolean {\n let isGroupSymbolAllowed = this.formatter.resolvedOptions().useGrouping;\n value = this.sanitize(value);\n\n // Remove minus or plus sign, which must be at the start of the string.\n if (this.symbols.minusSign && value.startsWith(this.symbols.minusSign) && minValue < 0) {\n value = value.slice(this.symbols.minusSign.length);\n } else if (this.symbols.plusSign && value.startsWith(this.symbols.plusSign) && maxValue > 0) {\n value = value.slice(this.symbols.plusSign.length);\n }\n\n // Numbers that can't have any decimal values fail if a decimal character is typed\n if (this.symbols.decimal && value.indexOf(this.symbols.decimal) > -1 && this.options.maximumFractionDigits === 0) {\n return false;\n }\n\n // Remove numerals, groups, and decimals\n if (this.symbols.group && isGroupSymbolAllowed) {\n value = replaceAll(value, this.symbols.group, '');\n }\n value = value.replace(this.symbols.numeral, '');\n if (this.symbols.decimal) {\n value = value.replace(this.symbols.decimal, '');\n }\n\n // The number is valid if there are no remaining characters\n return value.length === 0;\n }\n}\n\nconst nonLiteralParts = new Set(['decimal', 'fraction', 'integer', 'minusSign', 'plusSign', 'group']);\n\n// This list is derived from https://www.unicode.org/cldr/charts/43/supplemental/language_plural_rules.html#comparison and includes\n// all unique numbers which we need to check in order to determine all the plural forms for a given locale.\n// See: https://github.com/adobe/react-spectrum/pull/5134/files#r1337037855 for used script\nconst pluralNumbers = [\n 0, 4, 2, 1, 11, 20, 3, 7, 100, 21, 0.1, 1.1\n];\n\nfunction getSymbols(locale: string, formatter: Intl.NumberFormat, intlOptions: Intl.ResolvedNumberFormatOptions, originalOptions: Intl.NumberFormatOptions): Symbols {\n // formatter needs access to all decimal places in order to generate the correct literal strings for the plural set\n let symbolFormatter = new Intl.NumberFormat(locale, {...intlOptions,\n // Resets so we get the full range of symbols\n minimumSignificantDigits: 1,\n maximumSignificantDigits: 21,\n roundingIncrement: 1,\n roundingPriority: 'auto',\n roundingMode: 'halfExpand',\n useGrouping: true\n });\n // Note: some locale's don't add a group symbol until there is a ten thousands place\n let allParts = symbolFormatter.formatToParts(-10000.111);\n let posAllParts = symbolFormatter.formatToParts(10000.111);\n let pluralParts = pluralNumbers.map(n => symbolFormatter.formatToParts(n));\n // if the plural parts include a unit but no integer or fraction, then we need to add the unit to the special set\n let noNumeralUnits = pluralParts.map((p, i) => {\n let unit = p.find(p => p.type === 'unit');\n if (unit && !p.some(p => p.type === 'integer' || p.type === 'fraction')) {\n return {unit: unit.value, value: pluralNumbers[i]};\n }\n return null;\n }).filter(p => !!p);\n\n let minusSign = allParts.find(p => p.type === 'minusSign')?.value ?? '-';\n let plusSign = posAllParts.find(p => p.type === 'plusSign')?.value;\n\n // Safari does not support the signDisplay option, but our number parser polyfills it.\n // If no plus sign was returned, but the original options contained signDisplay, default to the '+' character.\n if (!plusSign && (originalOptions?.signDisplay === 'exceptZero' || originalOptions?.signDisplay === 'always')) {\n plusSign = '+';\n }\n\n // If maximumSignificantDigits is 1 (the minimum) then we won't get decimal characters out of the above formatters\n // Percent also defaults to 0 fractionDigits, so we need to make a new one that isn't percent to get an accurate decimal\n let decimalParts = new Intl.NumberFormat(locale, {...intlOptions, minimumFractionDigits: 2, maximumFractionDigits: 2}).formatToParts(0.001);\n\n let decimal = decimalParts.find(p => p.type === 'decimal')?.value;\n let group = allParts.find(p => p.type === 'group')?.value;\n\n // this set is also for a regex, it's all literals that might be in the string we want to eventually parse that\n // don't contribute to the numerical value\n let allPartsLiterals = allParts.filter(p => !nonLiteralParts.has(p.type)).map(p => escapeRegex(p.value));\n let pluralPartsLiterals = pluralParts.flatMap(p => p.filter(p => !nonLiteralParts.has(p.type)).map(p => escapeRegex(p.value)));\n let sortedLiterals = [...new Set([...allPartsLiterals, ...pluralPartsLiterals])].sort((a, b) => b.length - a.length);\n\n // Match both whitespace and formatting characters\n let literals = sortedLiterals.length === 0 ?\n new RegExp('\\\\p{White_Space}|\\\\p{Cf}', 'gu') :\n new RegExp(`${sortedLiterals.join('|')}|\\\\p{White_Space}|\\\\p{Cf}`, 'gu');\n\n // These are for replacing non-latn characters with the latn equivalent\n let numerals = [...new Intl.NumberFormat(intlOptions.locale, {useGrouping: false}).format(9876543210)].reverse();\n let indexes = new Map(numerals.map((d, i) => [d, i]));\n let numeral = new RegExp(`[${numerals.join('')}]`, 'g');\n let index = d => String(indexes.get(d));\n\n return {minusSign, plusSign, decimal, group, literals, numeral, numerals, index, noNumeralUnits};\n}\n\nfunction replaceAll(str: string, find: string | RegExp, replace: string) {\n if (str.replaceAll) {\n return str.replaceAll(find, replace);\n }\n\n return str.split(find).join(replace);\n}\n\nfunction escapeRegex(string: string) {\n return string.replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\$&');\n}\n"],"names":[],"version":3,"file":"NumberParser.js.map"}
|