@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 +6 -0
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/types.d.ts +1 -0
- package/package.json +1 -1
- package/report.api.md +17 -0
- package/tmp/api-report-tmp.d.ts +2 -0
package/CHANGELOG.md
CHANGED
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/version.json
CHANGED
package/dist/types/types.d.ts
CHANGED
|
@@ -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
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-->
|
package/tmp/api-report-tmp.d.ts
CHANGED
|
@@ -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[];
|