@pelcro/react-pelcro-js 3.2.0-beta.23 → 3.2.0-beta.24

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/index.cjs.js CHANGED
@@ -6478,7 +6478,7 @@ const ZERO_DECIMAL_CURRENCIES = ["BIF", "CLP", "DJF", "GNF", "JPY", "KMF", "KRW"
6478
6478
  * @return {boolean}
6479
6479
  */
6480
6480
 
6481
- const isCurrencyZeroDecimal = currency => ZERO_DECIMAL_CURRENCIES.includes(currency);
6481
+ const isCurrencyZeroDecimal = currency => ZERO_DECIMAL_CURRENCIES.includes(currency.toUpperCase());
6482
6482
  const sortCountries = countries => {
6483
6483
  const sortable = [];
6484
6484
  delete countries.CA;
package/dist/index.esm.js CHANGED
@@ -6448,7 +6448,7 @@ const ZERO_DECIMAL_CURRENCIES = ["BIF", "CLP", "DJF", "GNF", "JPY", "KMF", "KRW"
6448
6448
  * @return {boolean}
6449
6449
  */
6450
6450
 
6451
- const isCurrencyZeroDecimal = currency => ZERO_DECIMAL_CURRENCIES.includes(currency);
6451
+ const isCurrencyZeroDecimal = currency => ZERO_DECIMAL_CURRENCIES.includes(currency.toUpperCase());
6452
6452
  const sortCountries = countries => {
6453
6453
  const sortable = [];
6454
6454
  delete countries.CA;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pelcro/react-pelcro-js",
3
3
  "description": "Pelcro's React UI Elements",
4
- "version": "3.2.0-beta.23",
4
+ "version": "3.2.0-beta.24",
5
5
  "license": "MIT",
6
6
  "private": false,
7
7
  "main": "dist/index.cjs.js",