@atlaskit/tooltip 17.6.7 → 17.6.9
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 +13 -0
- package/dist/cjs/Tooltip.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/Tooltip.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/Tooltip.js +1 -1
- package/dist/esm/version.json +1 -1
- package/package.json +7 -5
- package/report.api.md +18 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/tooltip
|
|
2
2
|
|
|
3
|
+
## 17.6.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`6cb57eb428d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6cb57eb428d) - Update examples for Tooltip to use render props API to aid in eventual deprecation of wrapping children.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
|
|
10
|
+
## 17.6.8
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
3
16
|
## 17.6.7
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/cjs/Tooltip.js
CHANGED
package/dist/cjs/version.json
CHANGED
package/dist/es2019/Tooltip.js
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/Tooltip.js
CHANGED
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tooltip",
|
|
3
|
-
"version": "17.6.
|
|
3
|
+
"version": "17.6.9",
|
|
4
4
|
"description": "A tooltip is a floating, non-actionable label used to explain a user interface element or feature.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -32,13 +32,13 @@
|
|
|
32
32
|
"./utilities": "./src/utilities.ts"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@atlaskit/analytics-next": "^
|
|
35
|
+
"@atlaskit/analytics-next": "^9.0.0",
|
|
36
36
|
"@atlaskit/ds-lib": "^2.1.0",
|
|
37
37
|
"@atlaskit/motion": "^1.3.0",
|
|
38
38
|
"@atlaskit/popper": "^5.4.0",
|
|
39
39
|
"@atlaskit/portal": "^4.1.0",
|
|
40
40
|
"@atlaskit/theme": "^12.2.0",
|
|
41
|
-
"@atlaskit/tokens": "^
|
|
41
|
+
"@atlaskit/tokens": "^1.2.0",
|
|
42
42
|
"@babel/runtime": "^7.0.0",
|
|
43
43
|
"@emotion/react": "^11.7.1",
|
|
44
44
|
"bind-event-listener": "^2.1.1",
|
|
@@ -80,8 +80,10 @@
|
|
|
80
80
|
"dom-events": "use-bind-event-listener",
|
|
81
81
|
"ui-components": "lite-mode",
|
|
82
82
|
"analytics": "analytics-next",
|
|
83
|
-
"design-tokens":
|
|
84
|
-
|
|
83
|
+
"design-tokens": [
|
|
84
|
+
"color",
|
|
85
|
+
"spacing"
|
|
86
|
+
],
|
|
85
87
|
"deprecation": "no-deprecated-imports",
|
|
86
88
|
"styling": [
|
|
87
89
|
"emotion",
|
package/report.api.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
### Table of contents
|
|
9
9
|
|
|
10
10
|
- [Main Entry Types](#main-entry-types)
|
|
11
|
+
- [Peer Dependencies](#peer-dependencies)
|
|
11
12
|
|
|
12
13
|
### Main Entry Types
|
|
13
14
|
|
|
@@ -123,6 +124,8 @@ export interface TooltipProps {
|
|
|
123
124
|
|
|
124
125
|
// @public (undocumented)
|
|
125
126
|
interface TriggerProps {
|
|
127
|
+
// (undocumented)
|
|
128
|
+
'aria-describedby': string | undefined;
|
|
126
129
|
// (undocumented)
|
|
127
130
|
onBlur: (event: React.FocusEvent<HTMLElement>) => void;
|
|
128
131
|
// (undocumented)
|
|
@@ -132,6 +135,8 @@ interface TriggerProps {
|
|
|
132
135
|
// (undocumented)
|
|
133
136
|
onMouseDown: (event: React.MouseEvent<HTMLElement>) => void;
|
|
134
137
|
// (undocumented)
|
|
138
|
+
onMouseMove: ((event: React.MouseEvent<HTMLElement>) => void) | undefined;
|
|
139
|
+
// (undocumented)
|
|
135
140
|
onMouseOut: (event: React.MouseEvent<HTMLElement>) => void;
|
|
136
141
|
// (undocumented)
|
|
137
142
|
onMouseOver: (event: React.MouseEvent<HTMLElement>) => void;
|
|
@@ -143,3 +148,16 @@ interface TriggerProps {
|
|
|
143
148
|
```
|
|
144
149
|
|
|
145
150
|
<!--SECTION END: Main Entry Types-->
|
|
151
|
+
|
|
152
|
+
### Peer Dependencies
|
|
153
|
+
|
|
154
|
+
<!--SECTION START: Peer Dependencies-->
|
|
155
|
+
|
|
156
|
+
```json
|
|
157
|
+
{
|
|
158
|
+
"react": "^16.8.0",
|
|
159
|
+
"react-dom": "^16.8.0"
|
|
160
|
+
}
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
<!--SECTION END: Peer Dependencies-->
|