@atlaskit/avatar 25.2.0 → 25.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 +8 -0
- package/dist/cjs/avatar.js +1 -1
- package/dist/es2019/avatar.js +1 -1
- package/dist/esm/avatar.js +1 -1
- package/dist/types/avatar-content.d.ts +1 -1
- package/dist/types/avatar-item.d.ts +1 -1
- package/dist/types/avatar.d.ts +1 -1
- package/dist/types-ts4.5/avatar-content.d.ts +1 -1
- package/dist/types-ts4.5/avatar-item.d.ts +1 -1
- package/dist/types-ts4.5/avatar.d.ts +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/avatar
|
|
2
2
|
|
|
3
|
+
## 25.2.1
|
|
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
|
## 25.2.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
package/dist/cjs/avatar.js
CHANGED
|
@@ -24,7 +24,7 @@ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r
|
|
|
24
24
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
25
25
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
26
26
|
var packageName = "@atlaskit/avatar";
|
|
27
|
-
var packageVersion = "
|
|
27
|
+
var packageVersion = "25.2.0";
|
|
28
28
|
var containerStyles = null;
|
|
29
29
|
|
|
30
30
|
// eslint-disable-next-line @repo/internal/react/consistent-types-definitions
|
package/dist/es2019/avatar.js
CHANGED
|
@@ -12,7 +12,7 @@ import { PresenceWrapper } from './presence';
|
|
|
12
12
|
import { StatusWrapper } from './status';
|
|
13
13
|
import { getCustomElement } from './utilities';
|
|
14
14
|
const packageName = "@atlaskit/avatar";
|
|
15
|
-
const packageVersion = "
|
|
15
|
+
const packageVersion = "25.2.0";
|
|
16
16
|
const containerStyles = null;
|
|
17
17
|
|
|
18
18
|
// eslint-disable-next-line @repo/internal/react/consistent-types-definitions
|
package/dist/esm/avatar.js
CHANGED
|
@@ -15,7 +15,7 @@ import { PresenceWrapper } from './presence';
|
|
|
15
15
|
import { StatusWrapper } from './status';
|
|
16
16
|
import { getCustomElement } from './utilities';
|
|
17
17
|
var packageName = "@atlaskit/avatar";
|
|
18
|
-
var packageVersion = "
|
|
18
|
+
var packageVersion = "25.2.0";
|
|
19
19
|
var containerStyles = null;
|
|
20
20
|
|
|
21
21
|
// eslint-disable-next-line @repo/internal/react/consistent-types-definitions
|
|
@@ -17,5 +17,5 @@ type AvatarContentProps = {
|
|
|
17
17
|
* - [Code](https://atlassian.design/components/avatar/code)
|
|
18
18
|
* - [Usage](https://atlassian.design/components/avatar/usage)
|
|
19
19
|
*/
|
|
20
|
-
export declare const AvatarContent:
|
|
20
|
+
export declare const AvatarContent: React.ForwardRefExoticComponent<React.PropsWithoutRef<AvatarContentProps> & React.RefAttributes<HTMLElement>>;
|
|
21
21
|
export {};
|
|
@@ -60,5 +60,5 @@ export interface AvatarItemProps {
|
|
|
60
60
|
* - [Examples](https://atlassian.design/components/avatar/avatar-item/examples)
|
|
61
61
|
* - [Code](https://atlassian.design/components/avatar/avatar-item/code)
|
|
62
62
|
*/
|
|
63
|
-
declare const AvatarItem:
|
|
63
|
+
declare const AvatarItem: React.ForwardRefExoticComponent<React.PropsWithoutRef<AvatarItemProps> & React.RefAttributes<HTMLElement>>;
|
|
64
64
|
export default AvatarItem;
|
package/dist/types/avatar.d.ts
CHANGED
|
@@ -108,5 +108,5 @@ export interface AvatarPropTypes {
|
|
|
108
108
|
* - [Code](https://atlassian.design/components/avatar/code)
|
|
109
109
|
* - [Usage](https://atlassian.design/components/avatar/usage)
|
|
110
110
|
*/
|
|
111
|
-
declare const Avatar:
|
|
111
|
+
declare const Avatar: React.ForwardRefExoticComponent<React.PropsWithoutRef<AvatarPropTypes> & React.RefAttributes<HTMLElement>>;
|
|
112
112
|
export default Avatar;
|
|
@@ -17,5 +17,5 @@ type AvatarContentProps = {
|
|
|
17
17
|
* - [Code](https://atlassian.design/components/avatar/code)
|
|
18
18
|
* - [Usage](https://atlassian.design/components/avatar/usage)
|
|
19
19
|
*/
|
|
20
|
-
export declare const AvatarContent:
|
|
20
|
+
export declare const AvatarContent: React.ForwardRefExoticComponent<React.PropsWithoutRef<AvatarContentProps> & React.RefAttributes<HTMLElement>>;
|
|
21
21
|
export {};
|
|
@@ -60,5 +60,5 @@ export interface AvatarItemProps {
|
|
|
60
60
|
* - [Examples](https://atlassian.design/components/avatar/avatar-item/examples)
|
|
61
61
|
* - [Code](https://atlassian.design/components/avatar/avatar-item/code)
|
|
62
62
|
*/
|
|
63
|
-
declare const AvatarItem:
|
|
63
|
+
declare const AvatarItem: React.ForwardRefExoticComponent<React.PropsWithoutRef<AvatarItemProps> & React.RefAttributes<HTMLElement>>;
|
|
64
64
|
export default AvatarItem;
|
|
@@ -108,5 +108,5 @@ export interface AvatarPropTypes {
|
|
|
108
108
|
* - [Code](https://atlassian.design/components/avatar/code)
|
|
109
109
|
* - [Usage](https://atlassian.design/components/avatar/usage)
|
|
110
110
|
*/
|
|
111
|
-
declare const Avatar:
|
|
111
|
+
declare const Avatar: React.ForwardRefExoticComponent<React.PropsWithoutRef<AvatarPropTypes> & React.RefAttributes<HTMLElement>>;
|
|
112
112
|
export default Avatar;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/avatar",
|
|
3
|
-
"version": "25.2.
|
|
3
|
+
"version": "25.2.1",
|
|
4
4
|
"description": "An avatar is a visual representation of a user or entity.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
41
41
|
"@atlaskit/primitives": "^14.15.0",
|
|
42
42
|
"@atlaskit/theme": "^21.0.0",
|
|
43
|
-
"@atlaskit/tokens": "^6.
|
|
43
|
+
"@atlaskit/tokens": "^6.4.0",
|
|
44
44
|
"@babel/runtime": "^7.0.0",
|
|
45
45
|
"@compiled/react": "^0.18.3"
|
|
46
46
|
},
|
|
@@ -54,13 +54,13 @@
|
|
|
54
54
|
"@atlaskit/button": "^23.4.0",
|
|
55
55
|
"@atlaskit/code": "^17.2.0",
|
|
56
56
|
"@atlaskit/docs": "^11.1.0",
|
|
57
|
-
"@atlaskit/form": "^14.
|
|
57
|
+
"@atlaskit/form": "^14.2.0",
|
|
58
58
|
"@atlaskit/heading": "^5.2.0",
|
|
59
59
|
"@atlaskit/link": "^3.2.0",
|
|
60
60
|
"@atlaskit/range": "^9.2.0",
|
|
61
61
|
"@atlaskit/section-message": "^8.7.0",
|
|
62
62
|
"@atlaskit/textfield": "^8.0.0",
|
|
63
|
-
"@atlaskit/tooltip": "^20.
|
|
63
|
+
"@atlaskit/tooltip": "^20.5.0",
|
|
64
64
|
"@atlassian/feature-flags-test-utils": "^0.3.0",
|
|
65
65
|
"@atlassian/ssr-tests": "^0.3.0",
|
|
66
66
|
"@testing-library/react": "^13.4.0",
|