tabexseriescomponents 0.0.717 → 0.0.718

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
@@ -18319,14 +18319,14 @@ var CardsSection = function CardsSection(props) {
18319
18319
  if (sectionproperties.removedecimals == 'Without Decimals') {
18320
18320
  cardobj.defaultprice = parseFloat(Number(arrayItem.productinfo.defaultprice).toFixed(2));
18321
18321
  } else if (sectionproperties.removedecimals == 'Without Decimals and Separated With Comma') {
18322
- cardobj.defaultprice = parseFloat(Number(arrayItem.productinfo.defaultprice).toFixed(2));
18322
+ cardobj.defaultprice = Math.floor(arrayItem.productinfo.defaultprice).toLocaleString;
18323
18323
  } else {
18324
18324
  cardobj.defaultprice = arrayItem.productinfo.defaultprice;
18325
18325
  }
18326
18326
  if (sectionproperties.removedecimals == 'Without Decimals') {
18327
18327
  cardobj.defaultsaleprice = parseFloat(Number(arrayItem.productinfo.defaultsaleprice).toFixed(2));
18328
18328
  } else if (sectionproperties.removedecimals == 'Without Decimals and Separated With Comma') {
18329
- cardobj.defaultsaleprice = parseFloat(Number(arrayItem.productinfo.defaultsaleprice).toFixed(2));
18329
+ cardobj.defaultsaleprice = Math.floor(arrayItem.productinfo.defaultsaleprice).toLocaleString;
18330
18330
  } else {
18331
18331
  cardobj.defaultsaleprice = arrayItem.productinfo.defaultsaleprice;
18332
18332
  }
package/dist/index.esm.js CHANGED
@@ -18271,14 +18271,14 @@ var CardsSection = function CardsSection(props) {
18271
18271
  if (sectionproperties.removedecimals == 'Without Decimals') {
18272
18272
  cardobj.defaultprice = parseFloat(Number(arrayItem.productinfo.defaultprice).toFixed(2));
18273
18273
  } else if (sectionproperties.removedecimals == 'Without Decimals and Separated With Comma') {
18274
- cardobj.defaultprice = parseFloat(Number(arrayItem.productinfo.defaultprice).toFixed(2));
18274
+ cardobj.defaultprice = Math.floor(arrayItem.productinfo.defaultprice).toLocaleString;
18275
18275
  } else {
18276
18276
  cardobj.defaultprice = arrayItem.productinfo.defaultprice;
18277
18277
  }
18278
18278
  if (sectionproperties.removedecimals == 'Without Decimals') {
18279
18279
  cardobj.defaultsaleprice = parseFloat(Number(arrayItem.productinfo.defaultsaleprice).toFixed(2));
18280
18280
  } else if (sectionproperties.removedecimals == 'Without Decimals and Separated With Comma') {
18281
- cardobj.defaultsaleprice = parseFloat(Number(arrayItem.productinfo.defaultsaleprice).toFixed(2));
18281
+ cardobj.defaultsaleprice = Math.floor(arrayItem.productinfo.defaultsaleprice).toLocaleString;
18282
18282
  } else {
18283
18283
  cardobj.defaultsaleprice = arrayItem.productinfo.defaultsaleprice;
18284
18284
  }
package/dist/index.umd.js CHANGED
@@ -18144,14 +18144,14 @@
18144
18144
  if (sectionproperties.removedecimals == 'Without Decimals') {
18145
18145
  cardobj.defaultprice = parseFloat(Number(arrayItem.productinfo.defaultprice).toFixed(2));
18146
18146
  } else if (sectionproperties.removedecimals == 'Without Decimals and Separated With Comma') {
18147
- cardobj.defaultprice = parseFloat(Number(arrayItem.productinfo.defaultprice).toFixed(2));
18147
+ cardobj.defaultprice = Math.floor(arrayItem.productinfo.defaultprice).toLocaleString;
18148
18148
  } else {
18149
18149
  cardobj.defaultprice = arrayItem.productinfo.defaultprice;
18150
18150
  }
18151
18151
  if (sectionproperties.removedecimals == 'Without Decimals') {
18152
18152
  cardobj.defaultsaleprice = parseFloat(Number(arrayItem.productinfo.defaultsaleprice).toFixed(2));
18153
18153
  } else if (sectionproperties.removedecimals == 'Without Decimals and Separated With Comma') {
18154
- cardobj.defaultsaleprice = parseFloat(Number(arrayItem.productinfo.defaultsaleprice).toFixed(2));
18154
+ cardobj.defaultsaleprice = Math.floor(arrayItem.productinfo.defaultsaleprice).toLocaleString;
18155
18155
  } else {
18156
18156
  cardobj.defaultsaleprice = arrayItem.productinfo.defaultsaleprice;
18157
18157
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tabexseriescomponents",
3
- "version": "0.0.717",
3
+ "version": "0.0.718",
4
4
  "description": "your description",
5
5
  "main": "dist/index.cjs.js",
6
6
  "scripts": {