@khanacademy/wonder-blocks-dropdown 3.0.7 → 3.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 +11 -0
- package/dist/util/types.js.flow +2 -10
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-dropdown
|
|
2
2
|
|
|
3
|
+
## 3.0.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @khanacademy/wonder-blocks-clickable@3.0.8
|
|
8
|
+
- @khanacademy/wonder-blocks-icon@2.0.8
|
|
9
|
+
- @khanacademy/wonder-blocks-layout@2.0.8
|
|
10
|
+
- @khanacademy/wonder-blocks-modal@4.0.8
|
|
11
|
+
- @khanacademy/wonder-blocks-search-field@2.0.8
|
|
12
|
+
- @khanacademy/wonder-blocks-typography@2.0.8
|
|
13
|
+
|
|
3
14
|
## 3.0.7
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/dist/util/types.js.flow
CHANGED
|
@@ -11,17 +11,9 @@ import OptionItem from "../components/option-item";
|
|
|
11
11
|
import SeparatorItem from "../components/separator-item";
|
|
12
12
|
export type Item =
|
|
13
13
|
| false
|
|
14
|
-
| React.Element<
|
|
15
|
-
React.ElementProps<
|
|
16
|
-
typeof ActionItem | typeof OptionItem | typeof SeparatorItem
|
|
17
|
-
>
|
|
18
|
-
>;
|
|
14
|
+
| React.Element<typeof ActionItem | typeof OptionItem | typeof SeparatorItem>;
|
|
19
15
|
export type DropdownItem = {|
|
|
20
|
-
component: React.Element<
|
|
21
|
-
React.ElementProps<
|
|
22
|
-
typeof ActionItem | typeof OptionItem | typeof SeparatorItem
|
|
23
|
-
>
|
|
24
|
-
>,
|
|
16
|
+
component: React.Element<typeof ActionItem | typeof OptionItem | typeof SeparatorItem>,
|
|
25
17
|
focusable: boolean,
|
|
26
18
|
populatedProps: any,
|
|
27
19
|
onClick?: () => mixed,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-dropdown",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.8",
|
|
4
4
|
"design": "v1",
|
|
5
5
|
"description": "Dropdown variants for Wonder Blocks.",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -16,16 +16,16 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@babel/runtime": "^7.18.6",
|
|
19
|
-
"@khanacademy/wonder-blocks-clickable": "^3.0.
|
|
19
|
+
"@khanacademy/wonder-blocks-clickable": "^3.0.8",
|
|
20
20
|
"@khanacademy/wonder-blocks-color": "^2.0.1",
|
|
21
21
|
"@khanacademy/wonder-blocks-core": "^5.0.4",
|
|
22
|
-
"@khanacademy/wonder-blocks-icon": "^2.0.
|
|
23
|
-
"@khanacademy/wonder-blocks-layout": "^2.0.
|
|
24
|
-
"@khanacademy/wonder-blocks-modal": "^4.0.
|
|
25
|
-
"@khanacademy/wonder-blocks-search-field": "^2.0.
|
|
22
|
+
"@khanacademy/wonder-blocks-icon": "^2.0.8",
|
|
23
|
+
"@khanacademy/wonder-blocks-layout": "^2.0.8",
|
|
24
|
+
"@khanacademy/wonder-blocks-modal": "^4.0.8",
|
|
25
|
+
"@khanacademy/wonder-blocks-search-field": "^2.0.8",
|
|
26
26
|
"@khanacademy/wonder-blocks-spacing": "^4.0.1",
|
|
27
27
|
"@khanacademy/wonder-blocks-timing": "^3.0.2",
|
|
28
|
-
"@khanacademy/wonder-blocks-typography": "^2.0.
|
|
28
|
+
"@khanacademy/wonder-blocks-typography": "^2.0.8"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"@popperjs/core": "^2.10.1",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"react-window": "^1.8.5"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@khanacademy/wonder-blocks-button": "^4.0.
|
|
42
|
-
"wb-dev-build-settings": "^0.9.
|
|
41
|
+
"@khanacademy/wonder-blocks-button": "^4.0.8",
|
|
42
|
+
"wb-dev-build-settings": "^0.9.7"
|
|
43
43
|
}
|
|
44
44
|
}
|