@atlaskit/avatar-group 12.2.9 → 12.2.10
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/dist/cjs/components/grid.js +1 -1
- package/dist/cjs/components/more-indicator.js +1 -1
- package/dist/cjs/components/stack.js +1 -1
- package/dist/es2019/components/grid.js +1 -1
- package/dist/es2019/components/more-indicator.js +1 -1
- package/dist/es2019/components/stack.js +1 -1
- package/dist/esm/components/grid.js +1 -1
- package/dist/esm/components/more-indicator.js +1 -1
- package/dist/esm/components/stack.js +1 -1
- package/dist/types/components/avatar-group-item.d.ts +1 -1
- package/dist/types/components/more-indicator.d.ts +1 -1
- package/dist/types-ts4.5/components/avatar-group-item.d.ts +1 -1
- package/dist/types-ts4.5/components/more-indicator.d.ts +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/avatar-group
|
|
2
2
|
|
|
3
|
+
## 12.2.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`39e543109ec09`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/39e543109ec09) -
|
|
8
|
+
add type info to forwardRef components
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 12.2.9
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* more-indicator.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* more-indicator.tsx generated by @compiled/babel-plugin v0.38.1 */
|
|
2
2
|
import _extends from "@babel/runtime/helpers/extends";
|
|
3
3
|
import "./more-indicator.compiled.css";
|
|
4
4
|
import * as React from 'react';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* more-indicator.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* more-indicator.tsx generated by @compiled/babel-plugin v0.38.1 */
|
|
2
2
|
import _extends from "@babel/runtime/helpers/extends";
|
|
3
3
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
4
4
|
import "./more-indicator.compiled.css";
|
|
@@ -8,5 +8,5 @@ export interface AvatarGroupItemProps {
|
|
|
8
8
|
onAvatarClick?: onAvatarClickHandler;
|
|
9
9
|
testId?: string;
|
|
10
10
|
}
|
|
11
|
-
declare const AvatarGroupItem: React.ForwardRefExoticComponent<AvatarGroupItemProps & React.RefAttributes<HTMLElement>>;
|
|
11
|
+
declare const AvatarGroupItem: React.ForwardRefExoticComponent<React.PropsWithoutRef<AvatarGroupItemProps> & React.RefAttributes<HTMLElement>>;
|
|
12
12
|
export default AvatarGroupItem;
|
|
@@ -14,5 +14,5 @@ export interface MoreIndicatorProps {
|
|
|
14
14
|
borderColor?: string;
|
|
15
15
|
testId?: string;
|
|
16
16
|
}
|
|
17
|
-
declare const MoreIndicator:
|
|
17
|
+
declare const MoreIndicator: React.ForwardRefExoticComponent<React.PropsWithoutRef<MoreIndicatorProps> & React.RefAttributes<HTMLButtonElement>>;
|
|
18
18
|
export default MoreIndicator;
|
|
@@ -8,5 +8,5 @@ export interface AvatarGroupItemProps {
|
|
|
8
8
|
onAvatarClick?: onAvatarClickHandler;
|
|
9
9
|
testId?: string;
|
|
10
10
|
}
|
|
11
|
-
declare const AvatarGroupItem: React.ForwardRefExoticComponent<AvatarGroupItemProps & React.RefAttributes<HTMLElement>>;
|
|
11
|
+
declare const AvatarGroupItem: React.ForwardRefExoticComponent<React.PropsWithoutRef<AvatarGroupItemProps> & React.RefAttributes<HTMLElement>>;
|
|
12
12
|
export default AvatarGroupItem;
|
|
@@ -14,5 +14,5 @@ export interface MoreIndicatorProps {
|
|
|
14
14
|
borderColor?: string;
|
|
15
15
|
testId?: string;
|
|
16
16
|
}
|
|
17
|
-
declare const MoreIndicator:
|
|
17
|
+
declare const MoreIndicator: React.ForwardRefExoticComponent<React.PropsWithoutRef<MoreIndicatorProps> & React.RefAttributes<HTMLButtonElement>>;
|
|
18
18
|
export default MoreIndicator;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/avatar-group",
|
|
3
|
-
"version": "12.2.
|
|
3
|
+
"version": "12.2.10",
|
|
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/"
|
|
@@ -24,15 +24,15 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@atlaskit/avatar": "^25.
|
|
27
|
+
"@atlaskit/avatar": "^25.2.0",
|
|
28
28
|
"@atlaskit/css": "^0.14.0",
|
|
29
|
-
"@atlaskit/ds-lib": "^5.
|
|
29
|
+
"@atlaskit/ds-lib": "^5.1.0",
|
|
30
30
|
"@atlaskit/menu": "^8.4.0",
|
|
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": "^6.
|
|
35
|
-
"@atlaskit/tooltip": "^20.
|
|
34
|
+
"@atlaskit/tokens": "^6.4.0",
|
|
35
|
+
"@atlaskit/tooltip": "^20.5.0",
|
|
36
36
|
"@babel/runtime": "^7.0.0",
|
|
37
37
|
"@compiled/react": "^0.18.3",
|
|
38
38
|
"bind-event-listener": "^3.0.0"
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
48
48
|
"@atlaskit/button": "^23.4.0",
|
|
49
49
|
"@atlaskit/docs": "^11.1.0",
|
|
50
|
-
"@atlaskit/form": "^
|
|
51
|
-
"@atlaskit/icon": "^28.
|
|
50
|
+
"@atlaskit/form": "^14.2.0",
|
|
51
|
+
"@atlaskit/icon": "^28.3.0",
|
|
52
52
|
"@atlaskit/link": "^3.2.0",
|
|
53
|
-
"@atlaskit/modal-dialog": "^14.
|
|
54
|
-
"@atlaskit/primitives": "^14.
|
|
53
|
+
"@atlaskit/modal-dialog": "^14.4.0",
|
|
54
|
+
"@atlaskit/primitives": "^14.15.0",
|
|
55
55
|
"@atlaskit/section-message": "^8.7.0",
|
|
56
56
|
"@atlaskit/ssr": "workspace:^",
|
|
57
57
|
"@atlaskit/toggle": "^15.1.0",
|