autoql-fe-utils 1.0.73 → 1.0.74

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.
@@ -16673,6 +16673,9 @@
16673
16673
  };
16674
16674
  var formatDateType = (element, column, config = dataFormattingDefault) => {
16675
16675
  if (isNumber(element)) {
16676
+ if ((element == null ? void 0 : element.length) <= 9) {
16677
+ return element;
16678
+ }
16676
16679
  return formatEpochDate(element, column, config);
16677
16680
  }
16678
16681
  return formatISODateWithPrecision(element, column, config);