@atlaskit/user-picker 9.3.1 → 9.3.2
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 +6 -0
- package/dist/cjs/components/ExternalUserSourcesContainer.js +8 -4
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/components/ExternalUserSourcesContainer.js +4 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/components/ExternalUserSourcesContainer.js +8 -4
- package/dist/esm/version.json +1 -1
- package/package.json +3 -3
- package/report.api.md +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -29,10 +29,14 @@ var ExternalUserSourcesContainer = function ExternalUserSourcesContainer(_ref) {
|
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
return _react.default.Children.map(children, function (child) {
|
|
32
|
-
return
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
32
|
+
return (
|
|
33
|
+
/*#__PURE__*/
|
|
34
|
+
// @ts-expect-error
|
|
35
|
+
_react.default.cloneElement(child, {
|
|
36
|
+
sources: sources,
|
|
37
|
+
sourcesLoading: sourcesLoading
|
|
38
|
+
})
|
|
39
|
+
);
|
|
36
40
|
});
|
|
37
41
|
};
|
|
38
42
|
|
package/dist/cjs/version.json
CHANGED
|
@@ -18,7 +18,10 @@ export const ExternalUserSourcesContainer = ({
|
|
|
18
18
|
});
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
return React.Children.map(children, child =>
|
|
21
|
+
return React.Children.map(children, child =>
|
|
22
|
+
/*#__PURE__*/
|
|
23
|
+
// @ts-expect-error
|
|
24
|
+
React.cloneElement(child, {
|
|
22
25
|
sources,
|
|
23
26
|
sourcesLoading
|
|
24
27
|
}));
|
package/dist/es2019/version.json
CHANGED
|
@@ -18,9 +18,13 @@ export var ExternalUserSourcesContainer = function ExternalUserSourcesContainer(
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
return React.Children.map(children, function (child) {
|
|
21
|
-
return
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
21
|
+
return (
|
|
22
|
+
/*#__PURE__*/
|
|
23
|
+
// @ts-expect-error
|
|
24
|
+
React.cloneElement(child, {
|
|
25
|
+
sources: sources,
|
|
26
|
+
sourcesLoading: sourcesLoading
|
|
27
|
+
})
|
|
28
|
+
);
|
|
25
29
|
});
|
|
26
30
|
};
|
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/user-picker",
|
|
3
|
-
"version": "9.3.
|
|
3
|
+
"version": "9.3.2",
|
|
4
4
|
"description": "Fabric component for display a dropdown to select a user from",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@atlaskit/logo": "^13.8.0",
|
|
33
33
|
"@atlaskit/lozenge": "^11.0.0",
|
|
34
34
|
"@atlaskit/popper": "^5.0.0",
|
|
35
|
-
"@atlaskit/select": "^15.
|
|
35
|
+
"@atlaskit/select": "^15.6.0",
|
|
36
36
|
"@atlaskit/spinner": "^15.1.4",
|
|
37
37
|
"@atlaskit/theme": "^12.1.0",
|
|
38
38
|
"@atlaskit/tokens": "^0.10.0",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"faker": "^4.1.0",
|
|
74
74
|
"mock-apollo-client": "^0.1.0",
|
|
75
75
|
"react-intl-next": "npm:react-intl@^5.18.1",
|
|
76
|
-
"typescript": "4.
|
|
76
|
+
"typescript": "4.3.5"
|
|
77
77
|
},
|
|
78
78
|
"techstack": {
|
|
79
79
|
"@repo/internal": {
|
package/report.api.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
## API Report File for "@atlaskit/user-picker"
|
|
1
|
+
## API Report File for "@atlaskit/user-picker".
|
|
2
2
|
|
|
3
|
-
> Do not edit this file.
|
|
3
|
+
> Do not edit this file. This report is auto-generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
+
|
|
5
|
+
[Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
|
|
4
6
|
|
|
5
7
|
```ts
|
|
6
8
|
import { Placement } from '@atlaskit/popper';
|