pam-grid 1.2.0 → 1.3.0

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.mjs CHANGED
@@ -1385,7 +1385,12 @@ var PamGrid = ({
1385
1385
  addNewRecord,
1386
1386
  advanceFilters,
1387
1387
  setColumnAdvanceFilter
1388
- } = grid ?? safeGridHandle;
1388
+ } = grid || safeGridHandle;
1389
+ useEffect5(() => {
1390
+ return () => {
1391
+ hideTooltip();
1392
+ };
1393
+ }, []);
1389
1394
  const onResizeMouseDown = (e, key, side = "right") => {
1390
1395
  e.preventDefault();
1391
1396
  const startX = e.clientX;