@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 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
@@ -32,7 +32,7 @@ var tooltipZIndex = _constants.layers.tooltip();
32
32
  var analyticsAttributes = {
33
33
  componentName: 'tooltip',
34
34
  packageName: "@atlaskit/tooltip",
35
- packageVersion: "17.6.7"
35
+ packageVersion: "17.6.9"
36
36
  };
37
37
 
38
38
  // Inverts motion direction
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/tooltip",
3
- "version": "17.6.7",
3
+ "version": "17.6.9",
4
4
  "sideEffects": false
5
5
  }
@@ -20,7 +20,7 @@ const tooltipZIndex = layers.tooltip();
20
20
  const analyticsAttributes = {
21
21
  componentName: 'tooltip',
22
22
  packageName: "@atlaskit/tooltip",
23
- packageVersion: "17.6.7"
23
+ packageVersion: "17.6.9"
24
24
  };
25
25
 
26
26
  // Inverts motion direction
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/tooltip",
3
- "version": "17.6.7",
3
+ "version": "17.6.9",
4
4
  "sideEffects": false
5
5
  }
@@ -24,7 +24,7 @@ var tooltipZIndex = layers.tooltip();
24
24
  var analyticsAttributes = {
25
25
  componentName: 'tooltip',
26
26
  packageName: "@atlaskit/tooltip",
27
- packageVersion: "17.6.7"
27
+ packageVersion: "17.6.9"
28
28
  };
29
29
 
30
30
  // Inverts motion direction
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/tooltip",
3
- "version": "17.6.7",
3
+ "version": "17.6.9",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tooltip",
3
- "version": "17.6.7",
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": "^8.2.0",
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": "^0.13.0",
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": "spacing",
84
- "theming": "tokens",
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-->