@atlaskit/user-picker 9.6.3 → 9.7.0

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,11 @@
1
1
  # @atlaskit/user-picker
2
2
 
3
+ ## 9.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`f1bb023364d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f1bb023364d) - Add optional field `hasProductAccess` to `ExternalUser`.
8
+
3
9
  ## 9.6.3
4
10
 
5
11
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/user-picker",
3
- "version": "9.6.3",
3
+ "version": "9.7.0",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/user-picker",
3
- "version": "9.6.3",
3
+ "version": "9.7.0",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/user-picker",
3
- "version": "9.6.3",
3
+ "version": "9.7.0",
4
4
  "sideEffects": false
5
5
  }
@@ -215,6 +215,7 @@ export interface ExternalUser extends User {
215
215
  externalUserType?: 'crossSite' | 'thirdParty';
216
216
  requiresSourceHydration?: boolean;
217
217
  sources: UserSource[];
218
+ hasProductAccess?: boolean;
218
219
  }
219
220
  export interface User extends OptionData {
220
221
  avatarUrl?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/user-picker",
3
- "version": "9.6.3",
3
+ "version": "9.7.0",
4
4
  "description": "Fabric component for display a dropdown to select a user from",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
package/report.api.md CHANGED
@@ -8,6 +8,7 @@
8
8
  ### Table of contents
9
9
 
10
10
  - [Main Entry Types](#main-entry-types)
11
+ - [Peer Dependencies](#peer-dependencies)
11
12
 
12
13
  ### Main Entry Types
13
14
 
@@ -97,6 +98,8 @@ export interface ExternalUser extends User {
97
98
  // (undocumented)
98
99
  externalUserType?: 'crossSite' | 'thirdParty';
99
100
  // (undocumented)
101
+ hasProductAccess?: boolean;
102
+ // (undocumented)
100
103
  requiresSourceHydration?: boolean;
101
104
  // (undocumented)
102
105
  sources: UserSource[];
@@ -558,3 +561,17 @@ export type Value = OptionData | OptionData[] | null | undefined;
558
561
  ```
559
562
 
560
563
  <!--SECTION END: Main Entry Types-->
564
+
565
+ ### Peer Dependencies
566
+
567
+ <!--SECTION START: Peer Dependencies-->
568
+
569
+ ```json
570
+ {
571
+ "react": "^16.8.0",
572
+ "react-dom": "^16.8.0",
573
+ "react-intl-next": "npm:react-intl@^5.18.1"
574
+ }
575
+ ```
576
+
577
+ <!--SECTION END: Peer Dependencies-->
@@ -77,6 +77,8 @@ export interface ExternalUser extends User {
77
77
  // (undocumented)
78
78
  externalUserType?: 'crossSite' | 'thirdParty';
79
79
  // (undocumented)
80
+ hasProductAccess?: boolean;
81
+ // (undocumented)
80
82
  requiresSourceHydration?: boolean;
81
83
  // (undocumented)
82
84
  sources: UserSource[];