@atlaskit/share 3.5.5 → 3.5.6

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,12 @@
1
1
  # @atlaskit/share
2
2
 
3
+ ## 3.5.6
4
+
5
+ ### Patch Changes
6
+
7
+ - [`faf391ab64a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/faf391ab64a) - Implementing new CustomOption which will allow for a custom avatar
8
+ - Updated dependencies
9
+
3
10
  ## 3.5.5
4
11
 
5
12
  ### Patch Changes
@@ -19,7 +19,7 @@ var buildAttributes = function buildAttributes() {
19
19
  var attributes = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
20
20
  return _objectSpread({
21
21
  packageName: "@atlaskit/share",
22
- packageVersion: "3.5.5"
22
+ packageVersion: "3.5.6"
23
23
  }, attributes);
24
24
  };
25
25
 
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "name": "@atlaskit/share",
3
- "version": "3.5.5"
3
+ "version": "3.5.6"
4
4
  }
@@ -2,7 +2,7 @@ import { isEmail, isTeam, isUser } from '@atlaskit/smart-user-picker';
2
2
 
3
3
  const buildAttributes = (attributes = {}) => ({
4
4
  packageName: "@atlaskit/share",
5
- packageVersion: "3.5.5",
5
+ packageVersion: "3.5.6",
6
6
  ...attributes
7
7
  });
8
8
 
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "name": "@atlaskit/share",
3
- "version": "3.5.5"
3
+ "version": "3.5.6"
4
4
  }
@@ -10,7 +10,7 @@ var buildAttributes = function buildAttributes() {
10
10
  var attributes = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
11
11
  return _objectSpread({
12
12
  packageName: "@atlaskit/share",
13
- packageVersion: "3.5.5"
13
+ packageVersion: "3.5.6"
14
14
  }, attributes);
15
15
  };
16
16
 
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "name": "@atlaskit/share",
3
- "version": "3.5.5"
3
+ "version": "3.5.6"
4
4
  }
@@ -1,5 +1,5 @@
1
1
  export declare type UserWithId = {
2
- type: 'user' | 'group' | 'team';
2
+ type: 'user' | 'group' | 'team' | 'custom';
3
3
  id: string;
4
4
  };
5
5
  export declare type UserWithEmail = {
@@ -1,5 +1,5 @@
1
1
  export declare type UserWithId = {
2
- type: 'user' | 'group' | 'team';
2
+ type: 'user' | 'group' | 'team' | 'custom';
3
3
  id: string;
4
4
  };
5
5
  export declare type UserWithEmail = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/share",
3
- "version": "3.5.5",
3
+ "version": "3.5.6",
4
4
  "description": "Fabric Share Element",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -53,7 +53,7 @@
53
53
  "@atlaskit/tokens": "^0.10.0",
54
54
  "@atlaskit/tooltip": "^17.6.0",
55
55
  "@atlaskit/ufo": "^0.1.0",
56
- "@atlaskit/user-picker": "^9.5.0",
56
+ "@atlaskit/user-picker": "^9.6.0",
57
57
  "@atlaskit/util-service-support": "^6.1.0",
58
58
  "@babel/runtime": "^7.0.0",
59
59
  "@emotion/react": "^11.7.1",
@@ -74,7 +74,7 @@
74
74
  "@atlaskit/section-message": "^6.3.0",
75
75
  "@atlaskit/select": "^15.7.0",
76
76
  "@atlaskit/toggle": "^12.5.0",
77
- "@atlaskit/util-data-test": "^17.5.0",
77
+ "@atlaskit/util-data-test": "^17.6.0",
78
78
  "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
79
79
  "enzyme": "^3.10.0",
80
80
  "enzyme-adapter-react-16": "^1.15.1",
package/report.api.md CHANGED
@@ -412,7 +412,7 @@ export type UserWithEmail = {
412
412
 
413
413
  // @public (undocumented)
414
414
  export type UserWithId = {
415
- type: 'group' | 'team' | 'user';
415
+ type: 'custom' | 'group' | 'team' | 'user';
416
416
  id: string;
417
417
  };
418
418
 
@@ -309,7 +309,7 @@ export type UserWithEmail = {
309
309
 
310
310
  // @public (undocumented)
311
311
  export type UserWithId = {
312
- type: 'group' | 'team' | 'user';
312
+ type: 'custom' | 'group' | 'team' | 'user';
313
313
  id: string;
314
314
  };
315
315