@atlaskit/avatar-group 10.1.4 → 10.1.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 +8 -0
- package/package.json +10 -2
- package/__perf__/default.tsx +0 -21
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/avatar-group
|
|
2
2
|
|
|
3
|
+
## 10.1.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#104081](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/104081)
|
|
8
|
+
[`9e80fcb611337`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9e80fcb611337) -
|
|
9
|
+
Update dev dependencies.
|
|
10
|
+
|
|
3
11
|
## 10.1.4
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/avatar-group",
|
|
3
|
-
"version": "10.1.
|
|
3
|
+
"version": "10.1.5",
|
|
4
4
|
"description": "An avatar group displays a number of avatars grouped together in a stack or grid.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@atlaskit/platform-feature-flags": "^0.3.0",
|
|
32
32
|
"@atlaskit/popup": "^1.30.0",
|
|
33
33
|
"@atlaskit/theme": "^14.0.0",
|
|
34
|
-
"@atlaskit/tokens": "^3.
|
|
34
|
+
"@atlaskit/tokens": "^3.2.0",
|
|
35
35
|
"@atlaskit/tooltip": "^19.0.0",
|
|
36
36
|
"@babel/runtime": "^7.0.0",
|
|
37
37
|
"@emotion/react": "^11.7.1",
|
|
@@ -45,6 +45,14 @@
|
|
|
45
45
|
"@af/integration-testing": "*",
|
|
46
46
|
"@af/visual-regression": "*",
|
|
47
47
|
"@atlaskit/analytics-next": "^10.2.0",
|
|
48
|
+
"@atlaskit/button": "^20.3.9",
|
|
49
|
+
"@atlaskit/docs": "*",
|
|
50
|
+
"@atlaskit/form": "^11.0.1",
|
|
51
|
+
"@atlaskit/icon": "^23.4.0",
|
|
52
|
+
"@atlaskit/link": "*",
|
|
53
|
+
"@atlaskit/modal-dialog": "^12.19.1",
|
|
54
|
+
"@atlaskit/primitives": "^13.3.7",
|
|
55
|
+
"@atlaskit/section-message": "*",
|
|
48
56
|
"@atlaskit/ssr": "*",
|
|
49
57
|
"@atlaskit/toggle": "^14.0.0",
|
|
50
58
|
"@atlaskit/visual-regression": "*",
|
package/__perf__/default.tsx
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
|
|
3
|
-
import AvatarGroup from '../src';
|
|
4
|
-
|
|
5
|
-
const data = [
|
|
6
|
-
{ email: 'chaki@me.com', name: 'Chaki Caronni' },
|
|
7
|
-
{ email: 'nanop@outlook.com', name: 'Nanop Rgiersig' },
|
|
8
|
-
];
|
|
9
|
-
|
|
10
|
-
export default () => {
|
|
11
|
-
return (
|
|
12
|
-
<AvatarGroup
|
|
13
|
-
data={data.map((d) => ({
|
|
14
|
-
email: d.email,
|
|
15
|
-
key: d.email,
|
|
16
|
-
name: d.name,
|
|
17
|
-
href: '#',
|
|
18
|
-
}))}
|
|
19
|
-
/>
|
|
20
|
-
);
|
|
21
|
-
};
|