@atlaskit/avatar-group 12.3.2 → 12.3.3
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 -9
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/avatar-group
|
|
2
2
|
|
|
3
|
+
## 12.3.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
3
9
|
## 12.3.2
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -1180,7 +1186,6 @@
|
|
|
1180
1186
|
reduced bundlesize.
|
|
1181
1187
|
|
|
1182
1188
|
**Change summary:**
|
|
1183
|
-
|
|
1184
1189
|
- `name` is now a required property of the `data` attribute. This was previously not required
|
|
1185
1190
|
simply because we forwarded avatars props. Names should always be supplied so that avatars can
|
|
1186
1191
|
be differentiated in a meaningful way (although they are not required to be unique).
|
|
@@ -1188,7 +1193,6 @@
|
|
|
1188
1193
|
- AvatarGroup now uses `@emotion`
|
|
1189
1194
|
|
|
1190
1195
|
**Misc.**
|
|
1191
|
-
|
|
1192
1196
|
- Fixed broken margin styling bug with `stack` groups
|
|
1193
1197
|
- Replaced `dropdown-menu` with a lighter and more performant `popup` component
|
|
1194
1198
|
- Removed custom `dropdown-menu` styling
|
|
@@ -1358,7 +1362,6 @@
|
|
|
1358
1362
|
|
|
1359
1363
|
Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
|
|
1360
1364
|
[6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
|
|
1361
|
-
|
|
1362
1365
|
- @atlaskit/docs@8.3.2
|
|
1363
1366
|
- @atlaskit/visual-regression@0.1.9
|
|
1364
1367
|
- @atlaskit/avatar@17.1.7
|
|
@@ -1537,13 +1540,11 @@
|
|
|
1537
1540
|
## 4.0.1
|
|
1538
1541
|
|
|
1539
1542
|
- [patch][21854842b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/21854842b5):
|
|
1540
|
-
|
|
1541
1543
|
- Clean couple of TODO's that were already done
|
|
1542
1544
|
|
|
1543
1545
|
## 4.0.0
|
|
1544
1546
|
|
|
1545
1547
|
- [major][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
|
|
1546
|
-
|
|
1547
1548
|
- Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use
|
|
1548
1549
|
this package, please ensure you use at least this version of react and react-dom.
|
|
1549
1550
|
|
|
@@ -1579,7 +1580,6 @@
|
|
|
1579
1580
|
## 3.0.2
|
|
1580
1581
|
|
|
1581
1582
|
- [patch][ea173a3ee2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ea173a3ee2):
|
|
1582
|
-
|
|
1583
1583
|
- Internal changes only. Component is now SSR compatible. If server side rendered, Avatar Images
|
|
1584
1584
|
will begin to load immediately; before client bundle is ready. If this is undesired, `imageUrl`
|
|
1585
1585
|
can be passed in after component is mounted.
|
|
@@ -1600,7 +1600,6 @@
|
|
|
1600
1600
|
## 3.0.0
|
|
1601
1601
|
|
|
1602
1602
|
- [major][76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
|
|
1603
|
-
|
|
1604
1603
|
- Drop ES5 from all the flow modules
|
|
1605
1604
|
|
|
1606
1605
|
### Dropping CJS support in all @atlaskit packages
|
|
@@ -1645,13 +1644,11 @@
|
|
|
1645
1644
|
## 2.1.12
|
|
1646
1645
|
|
|
1647
1646
|
- [patch][3a9b559382](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3a9b559382):
|
|
1648
|
-
|
|
1649
1647
|
- Stopping href from being passed down to Avatar in DropdownMenu rendered in AvatarGroup
|
|
1650
1648
|
|
|
1651
1649
|
## 2.1.11
|
|
1652
1650
|
|
|
1653
1651
|
- [patch][ed05c5c5d9](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ed05c5c5d9):
|
|
1654
|
-
|
|
1655
1652
|
- Change border color of avatar in avatar group dropdown menu to transparent so that it does not
|
|
1656
1653
|
overlap with focus ring
|
|
1657
1654
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/avatar-group",
|
|
3
|
-
"version": "12.3.
|
|
3
|
+
"version": "12.3.3",
|
|
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,10 +31,10 @@
|
|
|
31
31
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
32
32
|
"@atlaskit/popup": "^4.4.0",
|
|
33
33
|
"@atlaskit/theme": "^21.0.0",
|
|
34
|
-
"@atlaskit/tokens": "^
|
|
34
|
+
"@atlaskit/tokens": "^7.0.0",
|
|
35
35
|
"@atlaskit/tooltip": "^20.5.0",
|
|
36
36
|
"@babel/runtime": "^7.0.0",
|
|
37
|
-
"@compiled/react": "^0.18.
|
|
37
|
+
"@compiled/react": "^0.18.6",
|
|
38
38
|
"bind-event-listener": "^3.0.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@af/visual-regression": "workspace:^",
|
|
47
47
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
48
48
|
"@atlaskit/button": "^23.5.0",
|
|
49
|
-
"@atlaskit/docs": "^11.
|
|
49
|
+
"@atlaskit/docs": "^11.2.0",
|
|
50
50
|
"@atlaskit/form": "^14.2.0",
|
|
51
51
|
"@atlaskit/icon": "^28.5.0",
|
|
52
52
|
"@atlaskit/link": "^3.2.0",
|