@atlaskit/react-select 3.8.4 → 3.8.6
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,19 @@
|
|
|
1
1
|
# @atlaskit/react-select
|
|
2
2
|
|
|
3
|
+
## 3.8.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`e02c11e7be73c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e02c11e7be73c) -
|
|
8
|
+
types made more explicit
|
|
9
|
+
|
|
10
|
+
## 3.8.5
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- [`2c386d1fc1477`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2c386d1fc1477) -
|
|
15
|
+
ts-ignore added as a workaround for help-center local consumption
|
|
16
|
+
|
|
3
17
|
## 3.8.4
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -17,6 +17,8 @@ var AsyncCreatableSelect = /*#__PURE__*/(0, _react.forwardRef)(function (props,
|
|
|
17
17
|
var stateManagerProps = (0, _useAsync.default)(props);
|
|
18
18
|
var creatableProps = (0, _useStateManager.default)(stateManagerProps);
|
|
19
19
|
var selectProps = (0, _useCreatable.default)(creatableProps);
|
|
20
|
+
|
|
21
|
+
// @ts-ignore - TS2322: Complex generic type causing issues for help-center local consumption with TS 5.9.2
|
|
20
22
|
return /*#__PURE__*/_react.default.createElement(_select.default, (0, _extends2.default)({
|
|
21
23
|
ref: ref
|
|
22
24
|
}, selectProps));
|
|
@@ -8,6 +8,8 @@ const AsyncCreatableSelect = /*#__PURE__*/forwardRef((props, ref) => {
|
|
|
8
8
|
const stateManagerProps = useAsync(props);
|
|
9
9
|
const creatableProps = useStateManager(stateManagerProps);
|
|
10
10
|
const selectProps = useCreatable(creatableProps);
|
|
11
|
+
|
|
12
|
+
// @ts-ignore - TS2322: Complex generic type causing issues for help-center local consumption with TS 5.9.2
|
|
11
13
|
return /*#__PURE__*/React.createElement(Select, _extends({
|
|
12
14
|
ref: ref
|
|
13
15
|
}, selectProps));
|
|
@@ -8,6 +8,8 @@ var AsyncCreatableSelect = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
8
8
|
var stateManagerProps = useAsync(props);
|
|
9
9
|
var creatableProps = useStateManager(stateManagerProps);
|
|
10
10
|
var selectProps = useCreatable(creatableProps);
|
|
11
|
+
|
|
12
|
+
// @ts-ignore - TS2322: Complex generic type causing issues for help-center local consumption with TS 5.9.2
|
|
11
13
|
return /*#__PURE__*/React.createElement(Select, _extends({
|
|
12
14
|
ref: ref
|
|
13
15
|
}, selectProps));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/react-select",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.6",
|
|
4
4
|
"description": "A forked version of react-select to only be used in atlaskit/select",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@atlaskit/ds-lib": "^5.1.0",
|
|
24
24
|
"@atlaskit/icon": "^28.5.0",
|
|
25
|
-
"@atlaskit/layering": "^3.
|
|
25
|
+
"@atlaskit/layering": "^3.2.0",
|
|
26
26
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
27
27
|
"@atlaskit/primitives": "^16.0.0",
|
|
28
28
|
"@atlaskit/spinner": "^19.0.0",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@atlaskit/checkbox": "^17.1.0",
|
|
42
42
|
"@atlaskit/form": "^14.2.0",
|
|
43
|
-
"@atlassian/feature-flags-test-utils": "^0.
|
|
43
|
+
"@atlassian/feature-flags-test-utils": "^1.0.0",
|
|
44
44
|
"@testing-library/react": "^13.4.0",
|
|
45
45
|
"@testing-library/user-event": "^14.4.3",
|
|
46
46
|
"jest-in-case": "^1.0.2"
|