@khanacademy/wonder-blocks-popover 2.0.6 → 2.0.8
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,25 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-popover
|
|
2
2
|
|
|
3
|
+
## 2.0.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @khanacademy/wonder-blocks-icon@2.0.8
|
|
8
|
+
- @khanacademy/wonder-blocks-icon-button@4.0.8
|
|
9
|
+
- @khanacademy/wonder-blocks-modal@4.0.8
|
|
10
|
+
- @khanacademy/wonder-blocks-tooltip@2.0.8
|
|
11
|
+
- @khanacademy/wonder-blocks-typography@2.0.8
|
|
12
|
+
|
|
13
|
+
## 2.0.7
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- @khanacademy/wonder-blocks-icon@2.0.7
|
|
18
|
+
- @khanacademy/wonder-blocks-icon-button@4.0.7
|
|
19
|
+
- @khanacademy/wonder-blocks-modal@4.0.7
|
|
20
|
+
- @khanacademy/wonder-blocks-tooltip@2.0.7
|
|
21
|
+
- @khanacademy/wonder-blocks-typography@2.0.7
|
|
22
|
+
|
|
3
23
|
## 2.0.6
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
|
@@ -60,16 +60,16 @@ declare type Props = {|
|
|
|
60
60
|
*/
|
|
61
61
|
icon?:
|
|
62
62
|
| string
|
|
63
|
-
| React.Element<
|
|
64
|
-
| React.Element<
|
|
63
|
+
| React.Element<"img">
|
|
64
|
+
| React.Element<"svg">,
|
|
65
65
|
|
|
66
66
|
/**
|
|
67
67
|
* Decorate the popover with a full-bleed illustration. It cannot be used at
|
|
68
68
|
* the same time with icon.
|
|
69
69
|
*/
|
|
70
70
|
image?:
|
|
71
|
-
| React.Element<
|
|
72
|
-
| React.Element<
|
|
71
|
+
| React.Element<"img">
|
|
72
|
+
| React.Element<"svg">,
|
|
73
73
|
|
|
74
74
|
/**
|
|
75
75
|
* When true, changes the popover dialog background to blue; otherwise, the
|
|
@@ -20,8 +20,8 @@ declare type Props = {|
|
|
|
20
20
|
* The content to render inside the dialog.
|
|
21
21
|
*/
|
|
22
22
|
children:
|
|
23
|
-
| React.Element<
|
|
24
|
-
| React.Element<
|
|
23
|
+
| React.Element<typeof PopoverContent>
|
|
24
|
+
| React.Element<typeof PopoverContentCore>,
|
|
25
25
|
|
|
26
26
|
/**
|
|
27
27
|
* The unique identifier to give to the popover content.
|
|
@@ -10,8 +10,8 @@ import type { Placement } from "@khanacademy/wonder-blocks-tooltip";
|
|
|
10
10
|
import PopoverContent from "./popover-content";
|
|
11
11
|
import PopoverContentCore from "./popover-content-core";
|
|
12
12
|
declare type PopoverContents =
|
|
13
|
-
| React.Element<
|
|
14
|
-
| React.Element<
|
|
13
|
+
| React.Element<typeof PopoverContent>
|
|
14
|
+
| React.Element<typeof PopoverContentCore>;
|
|
15
15
|
declare type Props = {|
|
|
16
16
|
...AriaProps,
|
|
17
17
|
...{|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-popover",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.8",
|
|
4
4
|
"design": "v1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
"@babel/runtime": "^7.18.6",
|
|
19
19
|
"@khanacademy/wonder-blocks-color": "^2.0.1",
|
|
20
20
|
"@khanacademy/wonder-blocks-core": "^5.0.4",
|
|
21
|
-
"@khanacademy/wonder-blocks-icon": "^2.0.
|
|
22
|
-
"@khanacademy/wonder-blocks-icon-button": "^4.0.
|
|
23
|
-
"@khanacademy/wonder-blocks-modal": "^4.0.
|
|
21
|
+
"@khanacademy/wonder-blocks-icon": "^2.0.8",
|
|
22
|
+
"@khanacademy/wonder-blocks-icon-button": "^4.0.8",
|
|
23
|
+
"@khanacademy/wonder-blocks-modal": "^4.0.8",
|
|
24
24
|
"@khanacademy/wonder-blocks-spacing": "^4.0.1",
|
|
25
|
-
"@khanacademy/wonder-blocks-tooltip": "^2.0.
|
|
26
|
-
"@khanacademy/wonder-blocks-typography": "^2.0.
|
|
25
|
+
"@khanacademy/wonder-blocks-tooltip": "^2.0.8",
|
|
26
|
+
"@khanacademy/wonder-blocks-typography": "^2.0.8"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
29
|
"@popperjs/core": "^2.10.1",
|
|
@@ -33,6 +33,6 @@
|
|
|
33
33
|
"react-popper": "^2.0.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"wb-dev-build-settings": "^0.9.
|
|
36
|
+
"wb-dev-build-settings": "^0.9.7"
|
|
37
37
|
}
|
|
38
38
|
}
|