@atlaskit/util-data-test 17.9.73 → 17.11.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 +30 -0
- package/dist/cjs/profilecard/get-mock-profilecard-client.js +1 -1
- package/dist/cjs/user-picker/user-picker-team-data.js +7 -0
- package/dist/es2019/profilecard/get-mock-profilecard-client.js +1 -1
- package/dist/es2019/user-picker/user-picker-team-data.js +7 -0
- package/dist/esm/profilecard/get-mock-profilecard-client.js +1 -1
- package/dist/esm/user-picker/user-picker-team-data.js +7 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @atlaskit/util-data-test
|
|
2
2
|
|
|
3
|
+
## 17.11.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 17.11.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#153669](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/153669)
|
|
14
|
+
[`5f8a2c39f1282`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5f8a2c39f1282) -
|
|
15
|
+
Fix links to go to home.a.c or team.a.c depending on the workspace type for profile card
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
21
|
+
## 17.10.0
|
|
22
|
+
|
|
23
|
+
### Minor Changes
|
|
24
|
+
|
|
25
|
+
- [#153007](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/153007)
|
|
26
|
+
[`1c28c3db19101`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1c28c3db19101) -
|
|
27
|
+
Show verified icon for teams in user picker
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- Updated dependencies
|
|
32
|
+
|
|
3
33
|
## 17.9.73
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|
|
@@ -149,7 +149,7 @@ function simpleMockProfilecardClient() {
|
|
|
149
149
|
});
|
|
150
150
|
},
|
|
151
151
|
getTeamCentralBaseUrl: function getTeamCentralBaseUrl() {
|
|
152
|
-
return 'teamCentralUrl';
|
|
152
|
+
return Promise.resolve('teamCentralUrl');
|
|
153
153
|
},
|
|
154
154
|
shouldShowGiveKudos: function shouldShowGiveKudos() {
|
|
155
155
|
return Promise.resolve(true);
|
|
@@ -23,4 +23,11 @@ var userPickerTeamData = exports.userPickerTeamData = [{
|
|
|
23
23
|
description: 'This team has a custom icon and byline which is not reliant on memberCount and includesYou props',
|
|
24
24
|
byline: 'Select team members',
|
|
25
25
|
lozenge: /*#__PURE__*/_react.default.createElement(_ChevronRight.default, null)
|
|
26
|
+
}, {
|
|
27
|
+
id: 'team-verified',
|
|
28
|
+
name: 'Verified Team',
|
|
29
|
+
type: 'team',
|
|
30
|
+
verified: true,
|
|
31
|
+
fixed: false,
|
|
32
|
+
description: 'This team has a custom icon and byline which is not reliant on memberCount and includesYou props'
|
|
26
33
|
}];
|
|
@@ -90,7 +90,7 @@ export function simpleMockProfilecardClient() {
|
|
|
90
90
|
reports: reportingLinesUsers.slice(-halfCount)
|
|
91
91
|
});
|
|
92
92
|
},
|
|
93
|
-
getTeamCentralBaseUrl: () => 'teamCentralUrl',
|
|
93
|
+
getTeamCentralBaseUrl: () => Promise.resolve('teamCentralUrl'),
|
|
94
94
|
shouldShowGiveKudos: () => Promise.resolve(true),
|
|
95
95
|
getRovoAgentProfile: (_Id, _analytics) => {
|
|
96
96
|
return Promise.reject({
|
|
@@ -16,4 +16,11 @@ export const userPickerTeamData = [{
|
|
|
16
16
|
description: 'This team has a custom icon and byline which is not reliant on memberCount and includesYou props',
|
|
17
17
|
byline: 'Select team members',
|
|
18
18
|
lozenge: /*#__PURE__*/React.createElement(ChevronRight, null)
|
|
19
|
+
}, {
|
|
20
|
+
id: 'team-verified',
|
|
21
|
+
name: 'Verified Team',
|
|
22
|
+
type: 'team',
|
|
23
|
+
verified: true,
|
|
24
|
+
fixed: false,
|
|
25
|
+
description: 'This team has a custom icon and byline which is not reliant on memberCount and includesYou props'
|
|
19
26
|
}];
|
|
@@ -141,7 +141,7 @@ export function simpleMockProfilecardClient() {
|
|
|
141
141
|
});
|
|
142
142
|
},
|
|
143
143
|
getTeamCentralBaseUrl: function getTeamCentralBaseUrl() {
|
|
144
|
-
return 'teamCentralUrl';
|
|
144
|
+
return Promise.resolve('teamCentralUrl');
|
|
145
145
|
},
|
|
146
146
|
shouldShowGiveKudos: function shouldShowGiveKudos() {
|
|
147
147
|
return Promise.resolve(true);
|
|
@@ -16,4 +16,11 @@ export var userPickerTeamData = [{
|
|
|
16
16
|
description: 'This team has a custom icon and byline which is not reliant on memberCount and includesYou props',
|
|
17
17
|
byline: 'Select team members',
|
|
18
18
|
lozenge: /*#__PURE__*/React.createElement(ChevronRight, null)
|
|
19
|
+
}, {
|
|
20
|
+
id: 'team-verified',
|
|
21
|
+
name: 'Verified Team',
|
|
22
|
+
type: 'team',
|
|
23
|
+
verified: true,
|
|
24
|
+
fixed: false,
|
|
25
|
+
description: 'This team has a custom icon and byline which is not reliant on memberCount and includesYou props'
|
|
19
26
|
}];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/util-data-test",
|
|
3
|
-
"version": "17.
|
|
3
|
+
"version": "17.11.1",
|
|
4
4
|
"description": "Shared test and story data",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -67,13 +67,13 @@
|
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"@atlaskit/analytics-next": "^10.1.0",
|
|
70
|
-
"@atlaskit/emoji": "67.8.
|
|
70
|
+
"@atlaskit/emoji": "67.8.8",
|
|
71
71
|
"@atlaskit/icon": "^22.22.0",
|
|
72
|
-
"@atlaskit/mention": "23.3.
|
|
73
|
-
"@atlaskit/profilecard": "^20.
|
|
74
|
-
"@atlaskit/theme": "^
|
|
72
|
+
"@atlaskit/mention": "23.3.3",
|
|
73
|
+
"@atlaskit/profilecard": "^20.6.0",
|
|
74
|
+
"@atlaskit/theme": "^14.0.0",
|
|
75
75
|
"@atlaskit/tokens": "^2.0.0",
|
|
76
|
-
"@atlaskit/user-picker": "10.
|
|
76
|
+
"@atlaskit/user-picker": "10.26.1",
|
|
77
77
|
"@atlaskit/util-service-support": "^6.2.0",
|
|
78
78
|
"@babel/runtime": "^7.0.0",
|
|
79
79
|
"@emotion/react": "^11.7.1",
|