revdev-components 0.142.0 → 0.148.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.
@@ -8,7 +8,7 @@ interface ButtonContentProps extends Omit<AntdButtonProps, "icon" | "rightIcon">
8
8
  isPrimary?: boolean;
9
9
  }
10
10
  export interface ButtonProps extends ButtonContentProps {
11
- tooltip?: string;
11
+ tooltip?: React.ReactNode;
12
12
  tooltipPlacement?: TooltipPlacement;
13
13
  hoverOpenDelay?: number;
14
14
  }
package/build/index.js CHANGED
@@ -4831,7 +4831,7 @@ function useDidMount() {
4831
4831
  return mount;
4832
4832
  }
4833
4833
  function usePrevious(value) {
4834
- var ref = React.useRef();
4834
+ var ref = React.useRef(null);
4835
4835
  React.useEffect(function () {
4836
4836
  ref.current = value;
4837
4837
  }, [value]);
package/eslint.config.js CHANGED
@@ -11,6 +11,6 @@ module.exports = defineConfig([
11
11
  },
12
12
  },
13
13
  {
14
- ignores: [".cache", "node_modules", "**/*.svg"],
14
+ ignores: [".cache", "node_modules", "**/*.svg", ".next"],
15
15
  },
16
16
  ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev-components",
3
- "version": "0.142.0",
3
+ "version": "0.148.0",
4
4
  "main": "build/index.js",
5
5
  "module": "build/index.esm.js",
6
6
  "scripts": {