fis-component 0.0.53 → 0.0.54

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/cjs/index.js CHANGED
@@ -71638,7 +71638,7 @@ FISTableCell.displayName = "FISTableCell";
71638
71638
  const SORT_ORDERS = {
71639
71639
  ASCEND: "ascend",
71640
71640
  DESCEND: "descend",
71641
- NONE: null,
71641
+ NONE: undefined,
71642
71642
  };
71643
71643
  const FISSorter = ({ columnKey, onSort, sortedInfo, UpIcon = LineArrowsUp, DownIcon = LineArrowsDown, }) => {
71644
71644
  const currentOrder = sortedInfo.columnKey === columnKey ? sortedInfo.order : SORT_ORDERS.NONE;