@khanacademy/wonder-blocks-dropdown 3.0.3 → 3.0.5
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 +22 -0
- package/dist/components/__mocks__/dropdown-core-virtualized.js.flow +1 -2
- package/dist/components/action-item.js.flow +1 -2
- package/dist/components/action-menu-opener-core.js.flow +1 -2
- package/dist/components/action-menu.js.flow +1 -2
- package/dist/components/check.js.flow +1 -2
- package/dist/components/checkbox.js.flow +1 -2
- package/dist/components/dropdown-core-virtualized-item.js.flow +1 -2
- package/dist/components/dropdown-core-virtualized.js.flow +1 -2
- package/dist/components/dropdown-core.js.flow +1 -2
- package/dist/components/dropdown-opener.js.flow +1 -2
- package/dist/components/dropdown-popper.js.flow +1 -2
- package/dist/components/multi-select.js.flow +1 -2
- package/dist/components/option-item.js.flow +1 -2
- package/dist/components/select-opener.js.flow +1 -2
- package/dist/components/separator-item.js.flow +1 -2
- package/dist/components/single-select.js.flow +1 -2
- package/dist/index.js.flow +1 -2
- package/dist/util/constants.js.flow +1 -2
- package/dist/util/dropdown-menu-styles.js.flow +1 -2
- package/dist/util/helpers.js.flow +1 -2
- package/dist/util/types.js.flow +1 -2
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-dropdown
|
|
2
2
|
|
|
3
|
+
## 3.0.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @khanacademy/wonder-blocks-clickable@3.0.5
|
|
8
|
+
- @khanacademy/wonder-blocks-icon@2.0.5
|
|
9
|
+
- @khanacademy/wonder-blocks-layout@2.0.5
|
|
10
|
+
- @khanacademy/wonder-blocks-modal@4.0.5
|
|
11
|
+
- @khanacademy/wonder-blocks-search-field@2.0.5
|
|
12
|
+
- @khanacademy/wonder-blocks-typography@2.0.5
|
|
13
|
+
|
|
14
|
+
## 3.0.4
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- @khanacademy/wonder-blocks-clickable@3.0.4
|
|
19
|
+
- @khanacademy/wonder-blocks-icon@2.0.4
|
|
20
|
+
- @khanacademy/wonder-blocks-layout@2.0.4
|
|
21
|
+
- @khanacademy/wonder-blocks-modal@4.0.4
|
|
22
|
+
- @khanacademy/wonder-blocks-search-field@2.0.4
|
|
23
|
+
- @khanacademy/wonder-blocks-typography@2.0.4
|
|
24
|
+
|
|
3
25
|
## 3.0.3
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Flowtype definitions for
|
|
2
|
+
* Flowtype definitions for data
|
|
3
3
|
* Generated by Flowgen from a Typescript Definition
|
|
4
4
|
* Flowgen v1.21.0
|
|
5
5
|
* @flow
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
7
|
import * as React from "react";
|
|
9
8
|
import { VariableSizeList as List } from "react-window";
|
|
10
9
|
import type { DropdownItem } from "../../util/types";
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Flowtype definitions for
|
|
2
|
+
* Flowtype definitions for data
|
|
3
3
|
* Generated by Flowgen from a Typescript Definition
|
|
4
4
|
* Flowgen v1.21.0
|
|
5
5
|
* @flow
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
7
|
import * as React from "react";
|
|
9
8
|
import type { StyleType } from "@khanacademy/wonder-blocks-core";
|
|
10
9
|
declare type ActionProps = {|
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Flowtype definitions for
|
|
2
|
+
* Flowtype definitions for data
|
|
3
3
|
* Generated by Flowgen from a Typescript Definition
|
|
4
4
|
* Flowgen v1.21.0
|
|
5
5
|
* @flow
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
7
|
import * as React from "react";
|
|
9
8
|
import type { AriaProps } from "@khanacademy/wonder-blocks-core";
|
|
10
9
|
import type { ClickableState } from "@khanacademy/wonder-blocks-clickable";
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Flowtype definitions for
|
|
2
|
+
* Flowtype definitions for data
|
|
3
3
|
* Generated by Flowgen from a Typescript Definition
|
|
4
4
|
* Flowgen v1.21.0
|
|
5
5
|
* @flow
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
7
|
import * as React from "react";
|
|
9
8
|
import type { AriaProps, StyleType } from "@khanacademy/wonder-blocks-core";
|
|
10
9
|
import DropdownOpener from "./dropdown-opener";
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Flowtype definitions for
|
|
2
|
+
* Flowtype definitions for data
|
|
3
3
|
* Generated by Flowgen from a Typescript Definition
|
|
4
4
|
* Flowgen v1.21.0
|
|
5
5
|
* @flow
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
7
|
import * as React from "react";
|
|
9
8
|
import type { StyleType } from "@khanacademy/wonder-blocks-core";
|
|
10
9
|
import type { DropdownItem } from "../util/types";
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Flowtype definitions for
|
|
2
|
+
* Flowtype definitions for data
|
|
3
3
|
* Generated by Flowgen from a Typescript Definition
|
|
4
4
|
* Flowgen v1.21.0
|
|
5
5
|
* @flow
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
7
|
import * as React from "react";
|
|
9
8
|
import { VariableSizeList as List } from "react-window";
|
|
10
9
|
import type { DropdownItem } from "../util/types";
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Flowtype definitions for
|
|
2
|
+
* Flowtype definitions for data
|
|
3
3
|
* Generated by Flowgen from a Typescript Definition
|
|
4
4
|
* Flowgen v1.21.0
|
|
5
5
|
* @flow
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
7
|
import * as React from "react";
|
|
9
8
|
import type { StyleType } from "@khanacademy/wonder-blocks-core";
|
|
10
9
|
import type { DropdownItem } from "../util/types";
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Flowtype definitions for
|
|
2
|
+
* Flowtype definitions for data
|
|
3
3
|
* Generated by Flowgen from a Typescript Definition
|
|
4
4
|
* Flowgen v1.21.0
|
|
5
5
|
* @flow
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
7
|
import * as React from "react";
|
|
9
8
|
import type { AriaProps } from "@khanacademy/wonder-blocks-core";
|
|
10
9
|
import type {
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Flowtype definitions for
|
|
2
|
+
* Flowtype definitions for data
|
|
3
3
|
* Generated by Flowgen from a Typescript Definition
|
|
4
4
|
* Flowgen v1.21.0
|
|
5
5
|
* @flow
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
7
|
import * as React from "react";
|
|
9
8
|
import type { StyleType } from "@khanacademy/wonder-blocks-core";
|
|
10
9
|
declare type Props = {|
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Flowtype definitions for
|
|
2
|
+
* Flowtype definitions for data
|
|
3
3
|
* Generated by Flowgen from a Typescript Definition
|
|
4
4
|
* Flowgen v1.21.0
|
|
5
5
|
* @flow
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
7
|
import * as React from "react";
|
|
9
8
|
import type { AriaProps, StyleType } from "@khanacademy/wonder-blocks-core";
|
|
10
9
|
import DropdownOpener from "./dropdown-opener";
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Flowtype definitions for
|
|
2
|
+
* Flowtype definitions for data
|
|
3
3
|
* Generated by Flowgen from a Typescript Definition
|
|
4
4
|
* Flowgen v1.21.0
|
|
5
5
|
* @flow
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
7
|
import * as React from "react";
|
|
9
8
|
import type { AriaProps, StyleType } from "@khanacademy/wonder-blocks-core";
|
|
10
9
|
import Check from "./check";
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Flowtype definitions for
|
|
2
|
+
* Flowtype definitions for data
|
|
3
3
|
* Generated by Flowgen from a Typescript Definition
|
|
4
4
|
* Flowgen v1.21.0
|
|
5
5
|
* @flow
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
7
|
import * as React from "react";
|
|
9
8
|
import type { AriaProps } from "@khanacademy/wonder-blocks-core";
|
|
10
9
|
declare type SelectOpenerProps = {|
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Flowtype definitions for
|
|
2
|
+
* Flowtype definitions for data
|
|
3
3
|
* Generated by Flowgen from a Typescript Definition
|
|
4
4
|
* Flowgen v1.21.0
|
|
5
5
|
* @flow
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
7
|
import * as React from "react";
|
|
9
8
|
import type { StyleType } from "@khanacademy/wonder-blocks-core";
|
|
10
9
|
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Flowtype definitions for
|
|
2
|
+
* Flowtype definitions for data
|
|
3
3
|
* Generated by Flowgen from a Typescript Definition
|
|
4
4
|
* Flowgen v1.21.0
|
|
5
5
|
* @flow
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
7
|
import * as React from "react";
|
|
9
8
|
import type { AriaProps, StyleType } from "@khanacademy/wonder-blocks-core";
|
|
10
9
|
import DropdownOpener from "./dropdown-opener";
|
package/dist/index.js.flow
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Flowtype definitions for
|
|
2
|
+
* Flowtype definitions for data
|
|
3
3
|
* Generated by Flowgen from a Typescript Definition
|
|
4
4
|
* Flowgen v1.21.0
|
|
5
5
|
* @flow
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
7
|
import ActionItem from "./components/action-item";
|
|
9
8
|
import OptionItem from "./components/option-item";
|
|
10
9
|
import SeparatorItem from "./components/separator-item";
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Flowtype definitions for
|
|
2
|
+
* Flowtype definitions for data
|
|
3
3
|
* Generated by Flowgen from a Typescript Definition
|
|
4
4
|
* Flowgen v1.21.0
|
|
5
5
|
* @flow
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
7
|
import type { StyleType } from "@khanacademy/wonder-blocks-core";
|
|
9
8
|
import type { DropdownItem } from "./types";
|
|
10
9
|
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Flowtype definitions for
|
|
2
|
+
* Flowtype definitions for data
|
|
3
3
|
* Generated by Flowgen from a Typescript Definition
|
|
4
4
|
* Flowgen v1.21.0
|
|
5
5
|
* @flow
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
7
|
/**
|
|
9
8
|
* Checks if a given key is a valid ASCII value.
|
|
10
9
|
* @param {string} key The key that is being typed in.
|
package/dist/util/types.js.flow
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Flowtype definitions for
|
|
2
|
+
* Flowtype definitions for data
|
|
3
3
|
* Generated by Flowgen from a Typescript Definition
|
|
4
4
|
* Flowgen v1.21.0
|
|
5
5
|
* @flow
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
7
|
import * as React from "react";
|
|
9
8
|
import type { ClickableState } from "@khanacademy/wonder-blocks-clickable";
|
|
10
9
|
import ActionItem from "../components/action-item";
|
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.5",
|
|
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.5",
|
|
20
20
|
"@khanacademy/wonder-blocks-color": "^2.0.1",
|
|
21
21
|
"@khanacademy/wonder-blocks-core": "^5.0.3",
|
|
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.5",
|
|
23
|
+
"@khanacademy/wonder-blocks-layout": "^2.0.5",
|
|
24
|
+
"@khanacademy/wonder-blocks-modal": "^4.0.5",
|
|
25
|
+
"@khanacademy/wonder-blocks-search-field": "^2.0.5",
|
|
26
26
|
"@khanacademy/wonder-blocks-spacing": "^4.0.1",
|
|
27
27
|
"@khanacademy/wonder-blocks-timing": "^3.0.1",
|
|
28
|
-
"@khanacademy/wonder-blocks-typography": "^2.0.
|
|
28
|
+
"@khanacademy/wonder-blocks-typography": "^2.0.5"
|
|
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.5",
|
|
42
|
+
"wb-dev-build-settings": "^0.9.4"
|
|
43
43
|
}
|
|
44
44
|
}
|