@atlaskit/avatar-group 10.1.3 → 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 CHANGED
@@ -1,5 +1,21 @@
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
+
11
+ ## 10.1.4
12
+
13
+ ### Patch Changes
14
+
15
+ - [#103999](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/103999)
16
+ [`9f62ecec4d422`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9f62ecec4d422) -
17
+ Update dependencies.
18
+
3
19
  ## 10.1.3
4
20
 
5
21
  ### Patch Changes
@@ -115,6 +115,7 @@ var MoreIndicator = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
115
115
  // eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
116
116
  ,
117
117
  style: {
118
+ // eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
118
119
  font: buttonSizes[size]
119
120
  },
120
121
  css: [buttonStyles, isActive && buttonActiveStyles]
@@ -100,6 +100,7 @@ const MoreIndicator = /*#__PURE__*/forwardRef(({
100
100
  // eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
101
101
  ,
102
102
  style: {
103
+ // eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
103
104
  font: buttonSizes[size]
104
105
  },
105
106
  css: [buttonStyles, isActive && buttonActiveStyles]
@@ -105,6 +105,7 @@ var MoreIndicator = /*#__PURE__*/forwardRef(function (_ref, ref) {
105
105
  // eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
106
106
  ,
107
107
  style: {
108
+ // eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
108
109
  font: buttonSizes[size]
109
110
  },
110
111
  css: [buttonStyles, isActive && buttonActiveStyles]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/avatar-group",
3
- "version": "10.1.3",
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.0.0",
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": "*",
@@ -53,8 +61,7 @@
53
61
  "@testing-library/user-event": "^14.4.3",
54
62
  "lodash": "^4.17.21",
55
63
  "react-dom": "^16.8.0",
56
- "typescript": "~5.4.2",
57
- "wait-for-expect": "^1.2.0"
64
+ "typescript": "~5.4.2"
58
65
  },
59
66
  "keywords": [
60
67
  "atlaskit",
@@ -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
- };