@atlaskit/avatar-group 9.2.0 → 9.2.1

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,11 @@
1
1
  # @atlaskit/avatar-group
2
2
 
3
+ ## 9.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`b0f6dd0bc35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b0f6dd0bc35) - Updated to use typography tokens. There is no expected behaviour or visual change.
8
+
3
9
  ## 9.2.0
4
10
 
5
11
  ### Minor Changes
@@ -57,8 +57,9 @@ var buttonStyles = (0, _react2.css)({
57
57
  '&&': {
58
58
  backgroundColor: "var(--ds-background-neutral, ".concat(_colors.N20, ")"),
59
59
  color: "var(--ds-text, ".concat(_colors.N500, ")"),
60
+ // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
60
61
  fontFamily: 'inherit',
61
- fontWeight: 500,
62
+ fontWeight: "var(--ds-font-weight-medium, 500)",
62
63
  '&:hover': {
63
64
  backgroundColor: "var(--ds-background-neutral-hovered, ".concat(_colors.N30, ")"),
64
65
  color: "var(--ds-text, ".concat(_colors.N500, ")")
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/avatar-group",
3
- "version": "9.2.0",
3
+ "version": "9.2.1",
4
4
  "sideEffects": false
5
5
  }
@@ -35,8 +35,9 @@ const buttonStyles = css({
35
35
  '&&': {
36
36
  backgroundColor: `var(--ds-background-neutral, ${N20})`,
37
37
  color: `var(--ds-text, ${N500})`,
38
+ // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
38
39
  fontFamily: 'inherit',
39
- fontWeight: 500,
40
+ fontWeight: "var(--ds-font-weight-medium, 500)",
40
41
  '&:hover': {
41
42
  backgroundColor: `var(--ds-background-neutral-hovered, ${N30})`,
42
43
  color: `var(--ds-text, ${N500})`
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/avatar-group",
3
- "version": "9.2.0",
3
+ "version": "9.2.1",
4
4
  "sideEffects": false
5
5
  }
@@ -37,8 +37,9 @@ var buttonStyles = css({
37
37
  '&&': {
38
38
  backgroundColor: "var(--ds-background-neutral, ".concat(N20, ")"),
39
39
  color: "var(--ds-text, ".concat(N500, ")"),
40
+ // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
40
41
  fontFamily: 'inherit',
41
- fontWeight: 500,
42
+ fontWeight: "var(--ds-font-weight-medium, 500)",
42
43
  '&:hover': {
43
44
  backgroundColor: "var(--ds-background-neutral-hovered, ".concat(N30, ")"),
44
45
  color: "var(--ds-text, ".concat(N500, ")")
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/avatar-group",
3
- "version": "9.2.0",
3
+ "version": "9.2.1",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/avatar-group",
3
- "version": "9.2.0",
3
+ "version": "9.2.1",
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/"
package/report.api.md CHANGED
@@ -8,6 +8,7 @@
8
8
  ### Table of contents
9
9
 
10
10
  - [Main Entry Types](#main-entry-types)
11
+ - [Peer Dependencies](#peer-dependencies)
11
12
 
12
13
  ### Main Entry Types
13
14
 
@@ -116,3 +117,15 @@ type onAvatarClickHandler = (
116
117
  ```
117
118
 
118
119
  <!--SECTION END: Main Entry Types-->
120
+
121
+ ### Peer Dependencies
122
+
123
+ <!--SECTION START: Peer Dependencies-->
124
+
125
+ ```json
126
+ {
127
+ "react": "^16.8.0"
128
+ }
129
+ ```
130
+
131
+ <!--SECTION END: Peer Dependencies-->