autoql-fe-utils 1.0.81 → 1.0.83

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.
@@ -13566,7 +13566,7 @@
13566
13566
  return capitalized;
13567
13567
  };
13568
13568
  var isNumber = (str) => {
13569
- return /^\d+$/.test(str);
13569
+ return /^-?\d+$/.test(str);
13570
13570
  };
13571
13571
  var getTitleCase = (str) => {
13572
13572
  if ((str == null ? void 0 : str.length) < 2) {
@@ -16677,7 +16677,7 @@
16677
16677
  };
16678
16678
  var formatDateType = (element, column, config = dataFormattingDefault) => {
16679
16679
  if (isNumber(element)) {
16680
- if ((element == null ? void 0 : element.length) <= 9) {
16680
+ if ((element == null ? void 0 : element.length) === 4) {
16681
16681
  return element;
16682
16682
  }
16683
16683
  return formatEpochDate(element, column, config);
@@ -18925,7 +18925,7 @@
18925
18925
  const column = columns[index];
18926
18926
  if (column.visible || column.is_visible) {
18927
18927
  const rawValue = row[index];
18928
- if (rawValue == void 0 || rawValue == null || rawValue == "") {
18928
+ if (rawValue === void 0 || rawValue === null || rawValue === "") {
18929
18929
  return;
18930
18930
  }
18931
18931
  let value = rawValue;