You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 9, 2024. It is now read-only.
See the [Tippy.js docs](https://atomiks.github.io/tippyjs/) for the rest of the props you can supply.
56
+
## Native props
57
+
58
+
See the [Tippy.js docs](https://atomiks.github.io/tippyjs/#all-options)
59
+
60
+
## React-specific props
61
+
62
+
### `isEnabled?: boolean`
63
+
64
+
Prop to control the `tippy.enable()` / `tippy.disable()` instance methods. Use this when you want to temporarily disable a tippy from showing.
65
+
66
+
```jsx
67
+
classAppextendsComponent {
68
+
state = {
69
+
isEnabled:true
70
+
}
71
+
72
+
render() {
73
+
return (
74
+
<Tippy isEnabled={this.state.isEnabled}>
75
+
<button />
76
+
</Tippy>
77
+
)
78
+
}
79
+
}
80
+
```
81
+
82
+
### `isVisible?: boolean`
83
+
84
+
Prop to control the `tippy.show()` / `tippy.hide()` instance methods. Use this when you want to programmatically show or hide the tippy instead of relying on UI events.
85
+
86
+
⚠️ **It must be accompanied by a `"manual"` trigger prop.**
0 commit comments