@jamsrui/tooltip 0.0.7 → 0.0.8

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.
@@ -9,8 +9,9 @@ import './styles.mjs';
9
9
  import 'tailwind-variants';
10
10
 
11
11
  declare const useTooltipConfig: () => TooltipConfig.Props;
12
- declare const TooltipConfig: (props: TooltipConfig.Props & {
12
+ declare const TooltipConfig: (props: Omit<Partial<TooltipConfig.Props>, "children"> & {
13
13
  merge?: boolean;
14
+ children: React.ReactNode;
14
15
  }) => react_jsx_runtime.JSX.Element;
15
16
  declare namespace TooltipConfig {
16
17
  interface Props extends Tooltip.Props, GlobalConfigProps<Tooltip.Props> {
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@jamsrui/tooltip",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "peerDependencies": {
5
5
  "react": ">=19"
6
6
  },
7
7
  "dependencies": {
8
8
  "@floating-ui/react": ">=0.27",
9
- "@jamsrui/hooks": "^0.0.7",
9
+ "@jamsrui/hooks": "^0.0.8",
10
10
  "@jamsrui/core": "^0.0.7",
11
- "@jamsrui/utils": "^0.0.7"
11
+ "@jamsrui/utils": "^0.0.8"
12
12
  },
13
13
  "exports": {
14
14
  ".": {