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