@internationalized/number
Advanced tools
Comparing version 3.0.0-nightly-db60babaf-241014 to 3.0.0-nightly-e1b72a79f-241016
@@ -190,4 +190,8 @@ var $0c1d5654b62fc485$exports = require("./NumberFormatter.main.js"); | ||
...intlOptions, | ||
// Resets so we get the full range of symbols | ||
minimumSignificantDigits: 1, | ||
maximumSignificantDigits: 21 | ||
maximumSignificantDigits: 21, | ||
roundingIncrement: 1, | ||
roundingPriority: 'auto', | ||
roundingMode: 'halfExpand' | ||
}); | ||
@@ -194,0 +198,0 @@ // Note: some locale's don't add a group symbol until there is a ten thousands place |
@@ -184,4 +184,8 @@ import {NumberFormatter as $488c6ddbf4ef74c2$export$cc77c4ff7e8673c5} from "./NumberFormatter.module.js"; | ||
...intlOptions, | ||
// Resets so we get the full range of symbols | ||
minimumSignificantDigits: 1, | ||
maximumSignificantDigits: 21 | ||
maximumSignificantDigits: 21, | ||
roundingIncrement: 1, | ||
roundingPriority: 'auto', | ||
roundingMode: 'halfExpand' | ||
}); | ||
@@ -188,0 +192,0 @@ // Note: some locale's don't add a group symbol until there is a ten thousands place |
{ | ||
"name": "@internationalized/number", | ||
"version": "3.0.0-nightly-db60babaf-241014", | ||
"version": "3.0.0-nightly-e1b72a79f-241016", | ||
"description": "Internationalized number formatting and parsing utilities", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
@@ -258,3 +258,10 @@ /* | ||
// formatter needs access to all decimal places in order to generate the correct literal strings for the plural set | ||
let symbolFormatter = new Intl.NumberFormat(locale, {...intlOptions, minimumSignificantDigits: 1, maximumSignificantDigits: 21}); | ||
let symbolFormatter = new Intl.NumberFormat(locale, {...intlOptions, | ||
// Resets so we get the full range of symbols | ||
minimumSignificantDigits: 1, | ||
maximumSignificantDigits: 21, | ||
roundingIncrement: 1, | ||
roundingPriority: 'auto', | ||
roundingMode: 'halfExpand' | ||
}); | ||
// Note: some locale's don't add a group symbol until there is a ten thousands place | ||
@@ -261,0 +268,0 @@ let allParts = symbolFormatter.formatToParts(-10000.111); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
171296
1804