@atlaskit/avatar-group 12.0.7 → 12.0.8
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
|
@@ -55,27 +55,23 @@ var AvatarGroupItem = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref)
|
|
|
55
55
|
tabIndex = _ref.tabIndex,
|
|
56
56
|
testId = _ref['data-testid'],
|
|
57
57
|
props = (0, _objectWithoutProperties2.default)(_ref, _excluded2);
|
|
58
|
-
return (
|
|
59
|
-
|
|
58
|
+
return /*#__PURE__*/_react.default.createElement("button", (0, _extends2.default)({
|
|
59
|
+
type: "button"
|
|
60
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop
|
|
61
|
+
,
|
|
62
|
+
className: className,
|
|
63
|
+
disabled: disabled,
|
|
64
|
+
draggable: draggable,
|
|
65
|
+
onClick: onClick
|
|
66
|
+
// eslint-disable-next-line @atlaskit/design-system/no-direct-use-of-web-platform-drag-and-drop
|
|
67
|
+
,
|
|
68
|
+
onDragStart: onDragStart,
|
|
69
|
+
onMouseDown: onMouseDown,
|
|
70
|
+
ref: ref,
|
|
71
|
+
tabIndex: tabIndex,
|
|
72
|
+
"data-testid": testId
|
|
60
73
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
61
|
-
|
|
62
|
-
type: "button"
|
|
63
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop
|
|
64
|
-
,
|
|
65
|
-
className: className,
|
|
66
|
-
disabled: disabled,
|
|
67
|
-
draggable: draggable,
|
|
68
|
-
onClick: onClick
|
|
69
|
-
// eslint-disable-next-line @atlaskit/design-system/no-direct-use-of-web-platform-drag-and-drop
|
|
70
|
-
,
|
|
71
|
-
onDragStart: onDragStart,
|
|
72
|
-
onMouseDown: onMouseDown,
|
|
73
|
-
ref: ref,
|
|
74
|
-
tabIndex: tabIndex,
|
|
75
|
-
"data-testid": testId
|
|
76
|
-
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
77
|
-
}, props), children)
|
|
78
|
-
);
|
|
74
|
+
}, props), children);
|
|
79
75
|
};
|
|
80
76
|
var AvatarIcon = /*#__PURE__*/_react.default.createElement(_avatar.default, (0, _extends2.default)({}, rest, {
|
|
81
77
|
analyticsContext: analyticsContext,
|
|
@@ -47,27 +47,23 @@ const AvatarGroupItem = /*#__PURE__*/forwardRef((props, ref) => {
|
|
|
47
47
|
'data-testid': testId,
|
|
48
48
|
...props
|
|
49
49
|
}) => {
|
|
50
|
-
return (
|
|
51
|
-
|
|
50
|
+
return /*#__PURE__*/React.createElement("button", _extends({
|
|
51
|
+
type: "button"
|
|
52
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop
|
|
53
|
+
,
|
|
54
|
+
className: className,
|
|
55
|
+
disabled: disabled,
|
|
56
|
+
draggable: draggable,
|
|
57
|
+
onClick: onClick
|
|
58
|
+
// eslint-disable-next-line @atlaskit/design-system/no-direct-use-of-web-platform-drag-and-drop
|
|
59
|
+
,
|
|
60
|
+
onDragStart: onDragStart,
|
|
61
|
+
onMouseDown: onMouseDown,
|
|
62
|
+
ref: ref,
|
|
63
|
+
tabIndex: tabIndex,
|
|
64
|
+
"data-testid": testId
|
|
52
65
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
53
|
-
|
|
54
|
-
type: "button"
|
|
55
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop
|
|
56
|
-
,
|
|
57
|
-
className: className,
|
|
58
|
-
disabled: disabled,
|
|
59
|
-
draggable: draggable,
|
|
60
|
-
onClick: onClick
|
|
61
|
-
// eslint-disable-next-line @atlaskit/design-system/no-direct-use-of-web-platform-drag-and-drop
|
|
62
|
-
,
|
|
63
|
-
onDragStart: onDragStart,
|
|
64
|
-
onMouseDown: onMouseDown,
|
|
65
|
-
ref: ref,
|
|
66
|
-
tabIndex: tabIndex,
|
|
67
|
-
"data-testid": testId
|
|
68
|
-
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
69
|
-
}, props), children)
|
|
70
|
-
);
|
|
66
|
+
}, props), children);
|
|
71
67
|
};
|
|
72
68
|
const AvatarIcon = /*#__PURE__*/React.createElement(Avatar, _extends({}, rest, {
|
|
73
69
|
analyticsContext: analyticsContext,
|
|
@@ -45,27 +45,23 @@ var AvatarGroupItem = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
45
45
|
tabIndex = _ref.tabIndex,
|
|
46
46
|
testId = _ref['data-testid'],
|
|
47
47
|
props = _objectWithoutProperties(_ref, _excluded2);
|
|
48
|
-
return (
|
|
49
|
-
|
|
48
|
+
return /*#__PURE__*/React.createElement("button", _extends({
|
|
49
|
+
type: "button"
|
|
50
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop
|
|
51
|
+
,
|
|
52
|
+
className: className,
|
|
53
|
+
disabled: disabled,
|
|
54
|
+
draggable: draggable,
|
|
55
|
+
onClick: onClick
|
|
56
|
+
// eslint-disable-next-line @atlaskit/design-system/no-direct-use-of-web-platform-drag-and-drop
|
|
57
|
+
,
|
|
58
|
+
onDragStart: onDragStart,
|
|
59
|
+
onMouseDown: onMouseDown,
|
|
60
|
+
ref: ref,
|
|
61
|
+
tabIndex: tabIndex,
|
|
62
|
+
"data-testid": testId
|
|
50
63
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
51
|
-
|
|
52
|
-
type: "button"
|
|
53
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop
|
|
54
|
-
,
|
|
55
|
-
className: className,
|
|
56
|
-
disabled: disabled,
|
|
57
|
-
draggable: draggable,
|
|
58
|
-
onClick: onClick
|
|
59
|
-
// eslint-disable-next-line @atlaskit/design-system/no-direct-use-of-web-platform-drag-and-drop
|
|
60
|
-
,
|
|
61
|
-
onDragStart: onDragStart,
|
|
62
|
-
onMouseDown: onMouseDown,
|
|
63
|
-
ref: ref,
|
|
64
|
-
tabIndex: tabIndex,
|
|
65
|
-
"data-testid": testId
|
|
66
|
-
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
67
|
-
}, props), children)
|
|
68
|
-
);
|
|
64
|
+
}, props), children);
|
|
69
65
|
};
|
|
70
66
|
var AvatarIcon = /*#__PURE__*/React.createElement(Avatar, _extends({}, rest, {
|
|
71
67
|
analyticsContext: analyticsContext,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/avatar-group",
|
|
3
|
-
"version": "12.0.
|
|
3
|
+
"version": "12.0.8",
|
|
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/"
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"@atlaskit/avatar": "^25.0.0",
|
|
29
29
|
"@atlaskit/css": "^0.10.0",
|
|
30
30
|
"@atlaskit/ds-lib": "^4.0.0",
|
|
31
|
-
"@atlaskit/menu": "^
|
|
31
|
+
"@atlaskit/menu": "^4.0.0",
|
|
32
32
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
33
|
-
"@atlaskit/popup": "^4.
|
|
33
|
+
"@atlaskit/popup": "^4.1.0",
|
|
34
34
|
"@atlaskit/theme": "^18.0.0",
|
|
35
|
-
"@atlaskit/tokens": "^4.
|
|
35
|
+
"@atlaskit/tokens": "^4.8.0",
|
|
36
36
|
"@atlaskit/tooltip": "^20.0.0",
|
|
37
37
|
"@babel/runtime": "^7.0.0",
|
|
38
38
|
"@compiled/react": "^0.18.3",
|
|
@@ -42,21 +42,21 @@
|
|
|
42
42
|
"react": "^18.2.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@af/accessibility-testing": "
|
|
46
|
-
"@af/integration-testing": "
|
|
47
|
-
"@af/visual-regression": "
|
|
45
|
+
"@af/accessibility-testing": "workspace:^",
|
|
46
|
+
"@af/integration-testing": "workspace:^",
|
|
47
|
+
"@af/visual-regression": "workspace:^",
|
|
48
48
|
"@atlaskit/analytics-next": "^11.0.0",
|
|
49
49
|
"@atlaskit/button": "^23.0.0",
|
|
50
50
|
"@atlaskit/docs": "^10.0.0",
|
|
51
51
|
"@atlaskit/form": "^12.0.0",
|
|
52
|
-
"@atlaskit/icon": "^25.
|
|
52
|
+
"@atlaskit/icon": "^25.6.0",
|
|
53
53
|
"@atlaskit/link": "^3.1.0",
|
|
54
54
|
"@atlaskit/modal-dialog": "^14.1.0",
|
|
55
|
-
"@atlaskit/primitives": "^14.
|
|
55
|
+
"@atlaskit/primitives": "^14.4.0",
|
|
56
56
|
"@atlaskit/section-message": "^8.2.0",
|
|
57
|
-
"@atlaskit/ssr": "
|
|
57
|
+
"@atlaskit/ssr": "workspace:^",
|
|
58
58
|
"@atlaskit/toggle": "^15.0.0",
|
|
59
|
-
"@atlaskit/visual-regression": "
|
|
59
|
+
"@atlaskit/visual-regression": "workspace:^",
|
|
60
60
|
"@atlassian/ssr-tests": "^0.2.0",
|
|
61
61
|
"@testing-library/react": "^13.4.0",
|
|
62
62
|
"@testing-library/user-event": "^14.4.3",
|