@atlaskit/tooltip 20.5.0 → 20.5.1
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/tooltip
|
|
2
2
|
|
|
3
|
+
## 20.5.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`39e543109ec09`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/39e543109ec09) -
|
|
8
|
+
add type info to forwardRef components
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 20.5.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -5,5 +5,5 @@ export interface TooltipContainerProps extends TooltipPrimitiveProps {
|
|
|
5
5
|
* Used as the default tooltip container component for the exported `Tooltip` component.
|
|
6
6
|
* Adds some styles to the tooltip primitive.
|
|
7
7
|
*/
|
|
8
|
-
declare const TooltipContainer:
|
|
8
|
+
declare const TooltipContainer: React.ForwardRefExoticComponent<React.PropsWithoutRef<TooltipContainerProps> & React.RefAttributes<HTMLDivElement>>;
|
|
9
9
|
export default TooltipContainer;
|
|
@@ -20,5 +20,5 @@ export interface TooltipPrimitiveProps {
|
|
|
20
20
|
/**
|
|
21
21
|
* The lower level component for rendering a tooltip.
|
|
22
22
|
*/
|
|
23
|
-
declare const TooltipPrimitive:
|
|
23
|
+
declare const TooltipPrimitive: React.ForwardRefExoticComponent<React.PropsWithoutRef<TooltipPrimitiveProps> & React.RefAttributes<HTMLDivElement>>;
|
|
24
24
|
export default TooltipPrimitive;
|
|
@@ -5,5 +5,5 @@ export interface TooltipContainerProps extends TooltipPrimitiveProps {
|
|
|
5
5
|
* Used as the default tooltip container component for the exported `Tooltip` component.
|
|
6
6
|
* Adds some styles to the tooltip primitive.
|
|
7
7
|
*/
|
|
8
|
-
declare const TooltipContainer:
|
|
8
|
+
declare const TooltipContainer: React.ForwardRefExoticComponent<React.PropsWithoutRef<TooltipContainerProps> & React.RefAttributes<HTMLDivElement>>;
|
|
9
9
|
export default TooltipContainer;
|
|
@@ -20,5 +20,5 @@ export interface TooltipPrimitiveProps {
|
|
|
20
20
|
/**
|
|
21
21
|
* The lower level component for rendering a tooltip.
|
|
22
22
|
*/
|
|
23
|
-
declare const TooltipPrimitive:
|
|
23
|
+
declare const TooltipPrimitive: React.ForwardRefExoticComponent<React.PropsWithoutRef<TooltipPrimitiveProps> & React.RefAttributes<HTMLDivElement>>;
|
|
24
24
|
export default TooltipPrimitive;
|
package/package.json
CHANGED