@khanacademy/wonder-blocks-tooltip 1.4.9 → 2.0.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/CHANGELOG.md +16 -0
- package/dist/components/tooltip-anchor.js.flow +1 -1
- package/dist/components/tooltip-bubble.js.flow +1 -1
- package/dist/components/tooltip-content.js.flow +1 -1
- package/dist/components/tooltip-popper.js.flow +1 -1
- package/dist/components/tooltip-tail.js.flow +1 -1
- package/dist/components/tooltip.js.flow +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-tooltip
|
|
2
2
|
|
|
3
|
+
## 2.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 1ca4d7e3: Fix minor issue with generate Flow types (this is a major bump b/c I forgot to do one after doing the TS conversion)
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [1ca4d7e3]
|
|
12
|
+
- @khanacademy/wonder-blocks-color@2.0.0
|
|
13
|
+
- @khanacademy/wonder-blocks-core@5.0.0
|
|
14
|
+
- @khanacademy/wonder-blocks-layout@2.0.0
|
|
15
|
+
- @khanacademy/wonder-blocks-modal@4.0.0
|
|
16
|
+
- @khanacademy/wonder-blocks-spacing@4.0.0
|
|
17
|
+
- @khanacademy/wonder-blocks-typography@2.0.0
|
|
18
|
+
|
|
3
19
|
## 1.4.9
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -94,5 +94,5 @@ declare export default class TooltipAnchor
|
|
|
94
94
|
_handleKeyUp: (e: KeyboardEvent) => void;
|
|
95
95
|
_renderAnchorableChildren(): React.Element<any>;
|
|
96
96
|
_renderAccessibleChildren(ids: IIdentifierFactory): React.Node;
|
|
97
|
-
render(): React.Element
|
|
97
|
+
render(): React.Element<any>;
|
|
98
98
|
}
|
|
@@ -35,5 +35,5 @@ declare export default class TooltipPopper extends React.Component<Props> {
|
|
|
35
35
|
_bubbleRefTracker: RefTracker;
|
|
36
36
|
_tailRefTracker: RefTracker;
|
|
37
37
|
_renderPositionedContent(popperProps: PopperChildrenProps): React.Node;
|
|
38
|
-
render(): React.Element
|
|
38
|
+
render(): React.Element<any>;
|
|
39
39
|
}
|
|
@@ -155,5 +155,5 @@ declare export default class Tooltip extends React.Component<Props, State> {
|
|
|
155
155
|
_renderPopper(ids?: IIdentifierFactory): React.Node;
|
|
156
156
|
_getHost(): Element | null | void;
|
|
157
157
|
_renderTooltipAnchor(ids?: IIdentifierFactory): React.Node;
|
|
158
|
-
render(): React.Element
|
|
158
|
+
render(): React.Element<any>;
|
|
159
159
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-tooltip",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"design": "v1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -16,12 +16,12 @@
|
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@babel/runtime": "^7.18.6",
|
|
19
|
-
"@khanacademy/wonder-blocks-color": "^
|
|
20
|
-
"@khanacademy/wonder-blocks-core": "^
|
|
21
|
-
"@khanacademy/wonder-blocks-layout": "^
|
|
22
|
-
"@khanacademy/wonder-blocks-modal": "^
|
|
23
|
-
"@khanacademy/wonder-blocks-spacing": "^
|
|
24
|
-
"@khanacademy/wonder-blocks-typography": "^
|
|
19
|
+
"@khanacademy/wonder-blocks-color": "^2.0.0",
|
|
20
|
+
"@khanacademy/wonder-blocks-core": "^5.0.0",
|
|
21
|
+
"@khanacademy/wonder-blocks-layout": "^2.0.0",
|
|
22
|
+
"@khanacademy/wonder-blocks-modal": "^4.0.0",
|
|
23
|
+
"@khanacademy/wonder-blocks-spacing": "^4.0.0",
|
|
24
|
+
"@khanacademy/wonder-blocks-typography": "^2.0.0"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"@popperjs/core": "^2.10.1",
|
|
@@ -31,6 +31,6 @@
|
|
|
31
31
|
"react-popper": "^2.0.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"wb-dev-build-settings": "^0.
|
|
34
|
+
"wb-dev-build-settings": "^0.8.0"
|
|
35
35
|
}
|
|
36
36
|
}
|