pace-table-lib 1.0.44 → 1.0.45

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.
@@ -8179,8 +8179,8 @@
8179
8179
  [VALUE_FORMAT_OBJ.CURRENCY_INR_SHORT]: { currency: "INR", locale: "en-IN" },
8180
8180
  [VALUE_FORMAT_OBJ.CURRENCY_GBP]: { currency: "GBP", locale: "en-GB" },
8181
8181
  [VALUE_FORMAT_OBJ.CURRENCY_GBP_SHORT]: { currency: "GBP", locale: "en-GB" },
8182
- [VALUE_FORMAT_OBJ.CURRENCY_EUR]: { currency: "EUR", locale: "de-DE" },
8183
- [VALUE_FORMAT_OBJ.CURRENCY_EUR_SHORT]: { currency: "EUR", locale: "de-DE" },
8182
+ [VALUE_FORMAT_OBJ.CURRENCY_EUR]: { currency: "EUR", locale: "en-US" },
8183
+ [VALUE_FORMAT_OBJ.CURRENCY_EUR_SHORT]: { currency: "EUR", locale: "en-US" },
8184
8184
  [VALUE_FORMAT_OBJ.CURRENCY_CAD]: { currency: "CAD", locale: "en-CA" },
8185
8185
  [VALUE_FORMAT_OBJ.CURRENCY_CAD_SHORT]: { currency: "CAD", locale: "en-CA" },
8186
8186
  [VALUE_FORMAT_OBJ.CURRENCY_CHF]: { currency: "CHF", locale: "de-CH" },
@@ -17509,10 +17509,10 @@
17509
17509
  fixedColCellW = sharedWidth;
17510
17510
  }
17511
17511
  return {
17512
- colCellHeight: Number(colCellH),
17513
- rowCellHeight: Number(rowCellH),
17514
- newNonFixedColCellWidth: Number(nonFixColCellW),
17515
- fixedColWidth: Number(fixedColCellW)
17512
+ colCellHeight: Number(Math.floor(colCellH)),
17513
+ rowCellHeight: Number(Math.floor(rowCellH)),
17514
+ newNonFixedColCellWidth: Number(Math.floor(nonFixColCellW)),
17515
+ fixedColWidth: Number(Math.floor(fixedColCellW))
17516
17516
  };
17517
17517
  }, [
17518
17518
  isFitTableOn,
@@ -17535,7 +17535,7 @@
17535
17535
  }
17536
17536
  }, 0);
17537
17537
  return () => clearTimeout(t);
17538
- }, [tableWidth, tableHeight, tableData, isFitTableOn, Table2]);
17538
+ }, [tableWidth, tableHeight, tableData, isFitTableOn, Table2, measureFormatConfigs]);
17539
17539
  const conditionalFormatsByType = React.useMemo(() => {
17540
17540
  const map = { value: [], "row header": [], "column header": [] };
17541
17541
  conditionalFormatArr?.forEach((format) => {