@atlaskit/avatar-group 9.1.2 → 9.1.4

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,17 @@
1
1
  # @atlaskit/avatar-group
2
2
 
3
+ ## 9.1.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 9.1.3
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 9.1.2
4
16
 
5
17
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/avatar-group",
3
- "version": "9.1.2",
3
+ "version": "9.1.4",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/avatar-group",
3
- "version": "9.1.2",
3
+ "version": "9.1.4",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/avatar-group",
3
- "version": "9.1.2",
3
+ "version": "9.1.4",
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.1.2",
3
+ "version": "9.1.4",
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/menu": "^1.4.0",
32
32
  "@atlaskit/popup": "^1.5.0",
33
33
  "@atlaskit/theme": "^12.2.0",
34
- "@atlaskit/tokens": "^0.11.0",
34
+ "@atlaskit/tokens": "^0.13.0",
35
35
  "@atlaskit/tooltip": "^17.6.0",
36
36
  "@babel/runtime": "^7.0.0",
37
37
  "@emotion/react": "^11.7.1"
@@ -41,11 +41,11 @@
41
41
  },
42
42
  "devDependencies": {
43
43
  "@atlaskit/analytics-next": "^8.2.0",
44
- "@atlaskit/button": "^16.4.0",
44
+ "@atlaskit/button": "^16.5.0",
45
45
  "@atlaskit/code": "^14.4.0",
46
46
  "@atlaskit/docs": "*",
47
47
  "@atlaskit/ds-lib": "^2.1.1",
48
- "@atlaskit/form": "^8.7.0",
48
+ "@atlaskit/form": "^8.8.0",
49
49
  "@atlaskit/icon": "^21.11.0",
50
50
  "@atlaskit/modal-dialog": "^12.4.0",
51
51
  "@atlaskit/section-message": "^6.3.0",
package/report.api.md CHANGED
@@ -1,12 +1,17 @@
1
+ <!-- API Report Version: 2.2 -->
2
+
1
3
  ## API Report File for "@atlaskit/avatar-group"
2
4
 
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
5
+ > Do not edit this file. This report is auto-generated using [API Extractor](https://api-extractor.com/).
6
+ > [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
7
+
8
+ ### Table of contents
4
9
 
5
- <!--
6
- Generated API Report version: 2.0
7
- -->
10
+ - [Main Entry Types](#main-entry-types)
8
11
 
9
- [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
12
+ ### Main Entry Types
13
+
14
+ <!--SECTION START: Main Entry Types-->
10
15
 
11
16
  ```ts
12
17
  import type { AnalyticsEvent } from '@atlaskit/analytics-next';
@@ -77,7 +82,7 @@ export interface AvatarGroupProps {
77
82
  appearance?: 'grid' | 'stack';
78
83
  avatar?: ElementType<AvatarProps>;
79
84
  borderColor?: string;
80
- boundariesElement?: 'viewport' | 'window' | 'scrollParent';
85
+ boundariesElement?: 'scrollParent' | 'viewport' | 'window';
81
86
  data: Array<AvatarProps>;
82
87
  isTooltipDisabled?: boolean;
83
88
  label?: string;
@@ -94,7 +99,7 @@ export interface AvatarGroupProps {
94
99
  export type AvatarProps = AvatarPropTypes & {
95
100
  name: string;
96
101
  enableTooltip?: boolean;
97
- key?: string | number;
102
+ key?: number | string;
98
103
  };
99
104
 
100
105
  // @public (undocumented)
@@ -106,3 +111,5 @@ type onAvatarClickHandler = (
106
111
 
107
112
  // (No @packageDocumentation comment for this package)
108
113
  ```
114
+
115
+ <!--SECTION END: Main Entry Types-->