react-tooltip 4.4.4 → 4.5.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/README.md +34 -33
- package/dist/index.es.js +11 -6
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +11 -6
- package/dist/index.js.map +1 -1
- package/dist/react-tooltip.d.ts +4 -0
- package/package.json +1 -1
package/dist/react-tooltip.d.ts
CHANGED
|
@@ -108,6 +108,10 @@ export interface TooltipProps {
|
|
|
108
108
|
clickable?: boolean;
|
|
109
109
|
// Aria role for the tooltip
|
|
110
110
|
role?: string;
|
|
111
|
+
// Padding attribute
|
|
112
|
+
padding?: string;
|
|
113
|
+
// Set internal style as optional
|
|
114
|
+
disableInternalStyle?: boolean;
|
|
111
115
|
}
|
|
112
116
|
|
|
113
117
|
// ReactTooltip component is the default export
|