@atlaskit/profilecard 19.13.0 → 19.14.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 +1134 -1121
- package/afm-cc/tsconfig.json +3 -0
- package/dist/cjs/client/ProfileCardClient.js +7 -0
- package/dist/cjs/client/getTeamFromAGG.js +1 -1
- package/dist/cjs/components/Team/TeamProfileCardTrigger.js +9 -3
- package/dist/cjs/components/User/ProfileCardDetails.js +1 -1
- package/dist/cjs/components/User/ProfileCardTrigger.js +6 -2
- package/dist/cjs/styled/Card.js +69 -24
- package/dist/cjs/styled/Error.js +13 -0
- package/dist/cjs/styled/ReportingLines.js +12 -0
- package/dist/cjs/styled/TeamCard.js +34 -2
- package/dist/cjs/util/analytics.js +1 -1
- package/dist/es2019/client/ProfileCardClient.js +7 -0
- package/dist/es2019/client/getTeamFromAGG.js +1 -1
- package/dist/es2019/components/Team/TeamProfileCardTrigger.js +9 -3
- package/dist/es2019/components/User/ProfileCardDetails.js +1 -1
- package/dist/es2019/components/User/ProfileCardTrigger.js +6 -2
- package/dist/es2019/styled/Card.js +229 -186
- package/dist/es2019/styled/Error.js +14 -0
- package/dist/es2019/styled/ReportingLines.js +13 -0
- package/dist/es2019/styled/TeamCard.js +41 -8
- package/dist/es2019/util/analytics.js +1 -1
- package/dist/esm/client/ProfileCardClient.js +7 -0
- package/dist/esm/client/getTeamFromAGG.js +1 -1
- package/dist/esm/components/Team/TeamProfileCardTrigger.js +9 -3
- package/dist/esm/components/User/ProfileCardDetails.js +1 -1
- package/dist/esm/components/User/ProfileCardTrigger.js +6 -2
- package/dist/esm/styled/Card.js +69 -24
- package/dist/esm/styled/Error.js +14 -0
- package/dist/esm/styled/ReportingLines.js +13 -0
- package/dist/esm/styled/TeamCard.js +35 -2
- package/dist/esm/util/analytics.js +1 -1
- package/dist/types/client/ProfileCardClient.d.ts +2 -2
- package/dist/types/client/TeamCentralCardClient.d.ts +1 -1
- package/dist/types/client/TeamProfileCardClient.d.ts +1 -1
- package/dist/types/client/UserProfileCardClient.d.ts +2 -2
- package/dist/types/client/errorUtils.d.ts +1 -1
- package/dist/types/components/Error/ErrorMessage.d.ts +2 -2
- package/dist/types/components/Team/TeamForbiddenErrorState.d.ts +1 -1
- package/dist/types/components/Team/TeamLoadingState.d.ts +1 -1
- package/dist/types/components/Team/TeamProfileCardTrigger.d.ts +2 -2
- package/dist/types/components/User/OverflowProfileCardButtons.d.ts +1 -1
- package/dist/types/components/User/ProfileCard.d.ts +1 -1
- package/dist/types/components/User/ProfileCardDetails.d.ts +1 -1
- package/dist/types/components/User/ProfileCardResourced.d.ts +2 -2
- package/dist/types/components/User/ProfileCardTrigger.d.ts +1 -1
- package/dist/types/components/User/ProfileCardTriggerNext.d.ts +1 -1
- package/dist/types/components/User/ReportingLinesDetails.d.ts +1 -1
- package/dist/types/components/User/UserLoadingState.d.ts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/internal/filterActions.d.ts +1 -1
- package/dist/types/internal/getLabelMessage.d.ts +1 -1
- package/dist/types/internal/relative-date.d.ts +1 -1
- package/dist/types/mocks/mock-team-client.d.ts +1 -1
- package/dist/types/mocks/reporting-lines-data.d.ts +1 -1
- package/dist/types/mocks/simple-mock-clients.d.ts +1 -1
- package/dist/types/mocks/team-data.d.ts +1 -1
- package/dist/types/types.d.ts +95 -89
- package/dist/types/util/analytics.d.ts +2 -2
- package/dist/types/util/click.d.ts +1 -1
- package/dist/types/util/withOuterListeners.d.ts +1 -1
- package/dist/types-ts4.5/client/ProfileCardClient.d.ts +2 -2
- package/dist/types-ts4.5/client/TeamCentralCardClient.d.ts +1 -1
- package/dist/types-ts4.5/client/TeamProfileCardClient.d.ts +1 -1
- package/dist/types-ts4.5/client/UserProfileCardClient.d.ts +2 -2
- package/dist/types-ts4.5/client/errorUtils.d.ts +1 -1
- package/dist/types-ts4.5/components/Error/ErrorMessage.d.ts +2 -2
- package/dist/types-ts4.5/components/Team/TeamForbiddenErrorState.d.ts +1 -1
- package/dist/types-ts4.5/components/Team/TeamLoadingState.d.ts +1 -1
- package/dist/types-ts4.5/components/Team/TeamProfileCardTrigger.d.ts +2 -2
- package/dist/types-ts4.5/components/User/OverflowProfileCardButtons.d.ts +1 -1
- package/dist/types-ts4.5/components/User/ProfileCard.d.ts +1 -1
- package/dist/types-ts4.5/components/User/ProfileCardDetails.d.ts +1 -1
- package/dist/types-ts4.5/components/User/ProfileCardResourced.d.ts +2 -2
- package/dist/types-ts4.5/components/User/ProfileCardTrigger.d.ts +1 -1
- package/dist/types-ts4.5/components/User/ProfileCardTriggerNext.d.ts +1 -1
- package/dist/types-ts4.5/components/User/ReportingLinesDetails.d.ts +1 -1
- package/dist/types-ts4.5/components/User/UserLoadingState.d.ts +1 -1
- package/dist/types-ts4.5/index.d.ts +1 -1
- package/dist/types-ts4.5/internal/filterActions.d.ts +1 -1
- package/dist/types-ts4.5/internal/getLabelMessage.d.ts +1 -1
- package/dist/types-ts4.5/internal/relative-date.d.ts +1 -1
- package/dist/types-ts4.5/mocks/mock-team-client.d.ts +1 -1
- package/dist/types-ts4.5/mocks/reporting-lines-data.d.ts +1 -1
- package/dist/types-ts4.5/mocks/simple-mock-clients.d.ts +1 -1
- package/dist/types-ts4.5/mocks/team-data.d.ts +1 -1
- package/dist/types-ts4.5/types.d.ts +95 -89
- package/dist/types-ts4.5/util/analytics.d.ts +2 -2
- package/dist/types-ts4.5/util/click.d.ts +1 -1
- package/dist/types-ts4.5/util/withOuterListeners.d.ts +1 -1
- package/docs/0-intro.tsx +13 -18
- package/docs/1-profilecard-trigger.tsx +13 -19
- package/docs/2-team-profilecard.tsx +26 -32
- package/package.json +14 -12
- package/report.api.md +457 -496
package/CHANGELOG.md
CHANGED
|
@@ -1,2312 +1,2325 @@
|
|
|
1
1
|
# @atlaskit/profilecard
|
|
2
2
|
|
|
3
|
+
## 19.14.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#110767](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/110767)
|
|
8
|
+
[`c61ae33311e2e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c61ae33311e2e) -
|
|
9
|
+
PTC-9295 adopt isFedramp, and disable tc client if fedramp
|
|
10
|
+
|
|
11
|
+
## 19.14.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [#102379](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/102379)
|
|
16
|
+
[`d8643ec13c0c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d8643ec13c0c) -
|
|
17
|
+
Added displayConfig prop, it has showKudos to control whether to show kudos.
|
|
18
|
+
|
|
3
19
|
## 19.13.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
|
6
22
|
|
|
7
|
-
-
|
|
8
|
-
|
|
9
|
-
|
|
23
|
+
- [#99727](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/99727)
|
|
24
|
+
[`80b09c8a9a96`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/80b09c8a9a96) -
|
|
25
|
+
hot-109153 Revert the changes PR#98596
|
|
10
26
|
|
|
11
27
|
## 19.12.0
|
|
12
28
|
|
|
13
29
|
### Minor Changes
|
|
14
30
|
|
|
15
|
-
-
|
|
16
|
-
|
|
17
|
-
|
|
31
|
+
- [#98596](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/98596)
|
|
32
|
+
[`73481a25ddad`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/73481a25ddad) -
|
|
33
|
+
ECA11Y-189 Fix profile card reading order
|
|
18
34
|
|
|
19
35
|
### Patch Changes
|
|
20
36
|
|
|
21
|
-
-
|
|
37
|
+
- Updated dependencies
|
|
22
38
|
|
|
23
39
|
## 19.11.8
|
|
24
40
|
|
|
25
41
|
### Patch Changes
|
|
26
42
|
|
|
27
|
-
-
|
|
28
|
-
|
|
29
|
-
|
|
43
|
+
- [#90449](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/90449)
|
|
44
|
+
[`16cfcaa2c2dd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/16cfcaa2c2dd) -
|
|
45
|
+
Clean up trigger FF
|
|
30
46
|
|
|
31
47
|
## 19.11.7
|
|
32
48
|
|
|
33
49
|
### Patch Changes
|
|
34
50
|
|
|
35
|
-
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
51
|
+
- [#94338](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94338)
|
|
52
|
+
[`4da2886fcb36`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4da2886fcb36) -
|
|
53
|
+
JCA11Y-1390 Fix Non-modal dialog programmatically identified issue, add role and aria-labelledby
|
|
54
|
+
to profilecard wrapper
|
|
39
55
|
|
|
40
56
|
## 19.11.6
|
|
41
57
|
|
|
42
58
|
### Patch Changes
|
|
43
59
|
|
|
44
|
-
-
|
|
45
|
-
|
|
46
|
-
|
|
60
|
+
- [#92007](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92007)
|
|
61
|
+
[`85525725cb0d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/85525725cb0d) -
|
|
62
|
+
Migrated to the new button component
|
|
47
63
|
|
|
48
64
|
## 19.11.5
|
|
49
65
|
|
|
50
66
|
### Patch Changes
|
|
51
67
|
|
|
52
|
-
-
|
|
53
|
-
|
|
54
|
-
|
|
68
|
+
- [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
|
|
69
|
+
[`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
|
|
70
|
+
Upgrade Typescript from `4.9.5` to `5.4.2`
|
|
55
71
|
|
|
56
72
|
## 19.11.4
|
|
57
73
|
|
|
58
74
|
### Patch Changes
|
|
59
75
|
|
|
60
|
-
-
|
|
61
|
-
|
|
62
|
-
|
|
76
|
+
- [#77847](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/77847)
|
|
77
|
+
[`7caee7ccfcc8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7caee7ccfcc8) -
|
|
78
|
+
updating these packages with the latest team-central dependencies
|
|
63
79
|
|
|
64
80
|
## 19.11.3
|
|
65
81
|
|
|
66
82
|
### Patch Changes
|
|
67
83
|
|
|
68
|
-
-
|
|
69
|
-
|
|
70
|
-
|
|
84
|
+
- [#74684](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/74684)
|
|
85
|
+
[`077c9034fc89`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/077c9034fc89) -
|
|
86
|
+
Pass fullName as ariaLabel to ProfileCardTrigger props'
|
|
71
87
|
|
|
72
88
|
## 19.11.2
|
|
73
89
|
|
|
74
90
|
### Patch Changes
|
|
75
91
|
|
|
76
|
-
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
-
|
|
92
|
+
- [#74811](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/74811)
|
|
93
|
+
[`c30aee2e855c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c30aee2e855c) -
|
|
94
|
+
PTC-8751 enforce space token usage in profilecard
|
|
95
|
+
- Updated dependencies
|
|
80
96
|
|
|
81
97
|
## 19.11.1
|
|
82
98
|
|
|
83
99
|
### Patch Changes
|
|
84
100
|
|
|
85
|
-
-
|
|
86
|
-
|
|
87
|
-
|
|
101
|
+
- [#73706](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/73706)
|
|
102
|
+
[`3a5408573683`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3a5408573683) -
|
|
103
|
+
Fix bug causing profilecard to disappear early in some circumstances
|
|
88
104
|
|
|
89
105
|
## 19.11.0
|
|
90
106
|
|
|
91
107
|
### Minor Changes
|
|
92
108
|
|
|
93
|
-
-
|
|
94
|
-
|
|
95
|
-
|
|
109
|
+
- [#72021](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72021)
|
|
110
|
+
[`bfb147303ac8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bfb147303ac8) -
|
|
111
|
+
Pass fullName props to ProfileCardTrigger, and update aria-label message
|
|
96
112
|
|
|
97
113
|
### Patch Changes
|
|
98
114
|
|
|
99
|
-
-
|
|
115
|
+
- Updated dependencies
|
|
100
116
|
|
|
101
117
|
## 19.10.0
|
|
102
118
|
|
|
103
119
|
### Minor Changes
|
|
104
120
|
|
|
105
|
-
-
|
|
106
|
-
|
|
107
|
-
|
|
121
|
+
- [#71508](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/71508)
|
|
122
|
+
[`e6125d2215ef`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e6125d2215ef) -
|
|
123
|
+
Added accountType prop
|
|
108
124
|
|
|
109
125
|
## 19.9.0
|
|
110
126
|
|
|
111
127
|
### Minor Changes
|
|
112
128
|
|
|
113
|
-
-
|
|
114
|
-
|
|
115
|
-
|
|
129
|
+
- [#70817](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70817)
|
|
130
|
+
[`bc59c17947b6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bc59c17947b6) -
|
|
131
|
+
Add focus to view profile button when Profile card display
|
|
116
132
|
|
|
117
133
|
### Patch Changes
|
|
118
134
|
|
|
119
|
-
-
|
|
135
|
+
- Updated dependencies
|
|
120
136
|
|
|
121
137
|
## 19.8.0
|
|
122
138
|
|
|
123
139
|
### Minor Changes
|
|
124
140
|
|
|
125
|
-
-
|
|
126
|
-
|
|
127
|
-
|
|
141
|
+
- [#68345](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68345)
|
|
142
|
+
[`c769c4488d20`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c769c4488d20) -
|
|
143
|
+
Add aria label to trigger & add ProfilecardTriggerNext
|
|
128
144
|
|
|
129
145
|
### Patch Changes
|
|
130
146
|
|
|
131
|
-
-
|
|
147
|
+
- Updated dependencies
|
|
132
148
|
|
|
133
149
|
## 19.7.15
|
|
134
150
|
|
|
135
151
|
### Patch Changes
|
|
136
152
|
|
|
137
|
-
-
|
|
138
|
-
|
|
139
|
-
|
|
153
|
+
- [#67206](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67206)
|
|
154
|
+
[`277421c217ae`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/277421c217ae) -
|
|
155
|
+
PTC-8511 ENGHEALTH-5595 fix deprecated token
|
|
140
156
|
|
|
141
157
|
## 19.7.14
|
|
142
158
|
|
|
143
159
|
### Patch Changes
|
|
144
160
|
|
|
145
|
-
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
-
|
|
161
|
+
- [#66217](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66217)
|
|
162
|
+
[`60bb0cdab810`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/60bb0cdab810) -
|
|
163
|
+
Without providing button attribute in the hover state, it won't trigger by keyboard. That's why,
|
|
164
|
+
we are providing button behavior as default to profilecard component.
|
|
165
|
+
- Updated dependencies
|
|
150
166
|
|
|
151
167
|
## 19.7.13
|
|
152
168
|
|
|
153
169
|
### Patch Changes
|
|
154
170
|
|
|
155
|
-
-
|
|
156
|
-
|
|
157
|
-
|
|
171
|
+
- [#64872](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64872)
|
|
172
|
+
[`146b7db2c017`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/146b7db2c017) -
|
|
173
|
+
No changes, as far as I know
|
|
158
174
|
|
|
159
175
|
## 19.7.12
|
|
160
176
|
|
|
161
177
|
### Patch Changes
|
|
162
178
|
|
|
163
|
-
-
|
|
164
|
-
|
|
165
|
-
|
|
179
|
+
- [#65031](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/65031)
|
|
180
|
+
[`a00094111b5a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a00094111b5a) -
|
|
181
|
+
ED-21609 Update adf-schema to 35.3.0
|
|
166
182
|
|
|
167
183
|
## 19.7.11
|
|
168
184
|
|
|
169
185
|
### Patch Changes
|
|
170
186
|
|
|
171
|
-
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
-
|
|
187
|
+
- [#64821](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64821)
|
|
188
|
+
[`64e3db3a22e4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/64e3db3a22e4) -
|
|
189
|
+
Remove SST feature flag
|
|
190
|
+
- Updated dependencies
|
|
175
191
|
|
|
176
192
|
## 19.7.10
|
|
177
193
|
|
|
178
194
|
### Patch Changes
|
|
179
195
|
|
|
180
|
-
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
196
|
+
- [#63681](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63681)
|
|
197
|
+
[`0a62538b713e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0a62538b713e) -
|
|
198
|
+
role attribute updated for profile card. Previously we are not providing any role attribute for
|
|
199
|
+
hover state. Now, we are providing dialog as role since it will open popup and show user's detail
|
|
200
|
+
in popup. Also atlaskit component that we used for openning popup is providing popup aria
|
|
201
|
+
attributes so just providing dialog is enough to pass a11y checks.
|
|
186
202
|
|
|
187
203
|
## 19.7.9
|
|
188
204
|
|
|
189
205
|
### Patch Changes
|
|
190
206
|
|
|
191
|
-
-
|
|
192
|
-
|
|
193
|
-
|
|
207
|
+
- [#62980](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/62980)
|
|
208
|
+
[`d85be9b35a7b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d85be9b35a7b) -
|
|
209
|
+
[ux] PTC-8115 add tooltip to the team name in team profile card
|
|
194
210
|
|
|
195
211
|
## 19.7.8
|
|
196
212
|
|
|
197
213
|
### Patch Changes
|
|
198
214
|
|
|
199
|
-
-
|
|
215
|
+
- Updated dependencies
|
|
200
216
|
|
|
201
217
|
## 19.7.7
|
|
202
218
|
|
|
203
219
|
### Patch Changes
|
|
204
220
|
|
|
205
|
-
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
221
|
+
- [#57499](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/57499)
|
|
222
|
+
[`d66fad636c89`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d66fad636c89) -
|
|
223
|
+
Remove legacy theming logic (e.g. themed(), AtlaskitThemeProvider, etc) from platform packages.
|
|
224
|
+
Theming is available via the new design token-based system.
|
|
209
225
|
|
|
210
226
|
## 19.7.6
|
|
211
227
|
|
|
212
228
|
### Patch Changes
|
|
213
229
|
|
|
214
|
-
-
|
|
215
|
-
|
|
216
|
-
|
|
230
|
+
- [#43874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43874)
|
|
231
|
+
[`71d228970ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/71d228970ef) - Enrol
|
|
232
|
+
packages to push model in JFE
|
|
217
233
|
|
|
218
234
|
## 19.7.5
|
|
219
235
|
|
|
220
236
|
### Patch Changes
|
|
221
237
|
|
|
222
|
-
-
|
|
238
|
+
- Updated dependencies
|
|
223
239
|
|
|
224
240
|
## 19.7.4
|
|
225
241
|
|
|
226
242
|
### Patch Changes
|
|
227
243
|
|
|
228
|
-
-
|
|
244
|
+
- Updated dependencies
|
|
229
245
|
|
|
230
246
|
## 19.7.3
|
|
231
247
|
|
|
232
248
|
### Patch Changes
|
|
233
249
|
|
|
234
|
-
-
|
|
235
|
-
|
|
236
|
-
|
|
250
|
+
- [#42285](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42285)
|
|
251
|
+
[`e9af0f05581`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e9af0f05581) - [ux]
|
|
252
|
+
PTC-8007 remove on focus handler to fix a11y issue for screen reader users
|
|
237
253
|
|
|
238
254
|
## 19.7.2
|
|
239
255
|
|
|
240
256
|
### Patch Changes
|
|
241
257
|
|
|
242
|
-
-
|
|
243
|
-
|
|
244
|
-
|
|
258
|
+
- [#41882](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41882)
|
|
259
|
+
[`54e68dcc7da`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54e68dcc7da) - Pass
|
|
260
|
+
en-US as default locale
|
|
245
261
|
|
|
246
262
|
## 19.7.1
|
|
247
263
|
|
|
248
264
|
### Patch Changes
|
|
249
265
|
|
|
250
|
-
-
|
|
251
|
-
|
|
252
|
-
|
|
266
|
+
- [#41768](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41768)
|
|
267
|
+
[`fe2e31821db`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe2e31821db) - Dont
|
|
268
|
+
fail SLO on IdentityUserNotFoundError
|
|
253
269
|
|
|
254
270
|
## 19.7.0
|
|
255
271
|
|
|
256
272
|
### Minor Changes
|
|
257
273
|
|
|
258
|
-
-
|
|
259
|
-
|
|
260
|
-
|
|
274
|
+
- [#41507](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41507)
|
|
275
|
+
[`211ff35c18f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/211ff35c18f) - Handling
|
|
276
|
+
of Jira custom client wrapping profile errors
|
|
261
277
|
|
|
262
278
|
## 19.6.1
|
|
263
279
|
|
|
264
280
|
### Patch Changes
|
|
265
281
|
|
|
266
|
-
-
|
|
282
|
+
- Updated dependencies
|
|
267
283
|
|
|
268
284
|
## 19.6.0
|
|
269
285
|
|
|
270
286
|
### Minor Changes
|
|
271
287
|
|
|
272
|
-
-
|
|
273
|
-
|
|
274
|
-
|
|
288
|
+
- [#41158](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41158)
|
|
289
|
+
[`573b0c53f09`](https://bitbucket.org/atlassian/atlassian-frontend/commits/573b0c53f09) - [ux]
|
|
290
|
+
Replaced h5 to h3
|
|
275
291
|
|
|
276
292
|
## 19.5.14
|
|
277
293
|
|
|
278
294
|
### Patch Changes
|
|
279
295
|
|
|
280
|
-
-
|
|
281
|
-
|
|
282
|
-
|
|
296
|
+
- [#41283](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41283)
|
|
297
|
+
[`4eb4f881efa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4eb4f881efa) - fix
|
|
298
|
+
strict typescript errors
|
|
283
299
|
|
|
284
300
|
## 19.5.13
|
|
285
301
|
|
|
286
302
|
### Patch Changes
|
|
287
303
|
|
|
288
|
-
-
|
|
289
|
-
|
|
290
|
-
|
|
304
|
+
- [#41140](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41140)
|
|
305
|
+
[`e54969bc4d1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e54969bc4d1) - PTC-7540
|
|
306
|
+
as a PIR, add unit tests for graphql queries
|
|
291
307
|
|
|
292
308
|
## 19.5.12
|
|
293
309
|
|
|
294
310
|
### Patch Changes
|
|
295
311
|
|
|
296
|
-
-
|
|
297
|
-
|
|
298
|
-
|
|
312
|
+
- [#41012](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41012)
|
|
313
|
+
[`99707f3ab56`](https://bitbucket.org/atlassian/atlassian-frontend/commits/99707f3ab56) - Fix
|
|
314
|
+
destructing Directory error
|
|
299
315
|
|
|
300
316
|
## 19.5.11
|
|
301
317
|
|
|
302
318
|
### Patch Changes
|
|
303
319
|
|
|
304
|
-
-
|
|
305
|
-
|
|
306
|
-
|
|
320
|
+
- [#40822](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40822)
|
|
321
|
+
[`179ee5ba573`](https://bitbucket.org/atlassian/atlassian-frontend/commits/179ee5ba573) - Better
|
|
322
|
+
handling of errors
|
|
307
323
|
|
|
308
324
|
## 19.5.10
|
|
309
325
|
|
|
310
326
|
### Patch Changes
|
|
311
327
|
|
|
312
|
-
-
|
|
313
|
-
|
|
314
|
-
|
|
328
|
+
- [#39787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39787)
|
|
329
|
+
[`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) - Internal
|
|
330
|
+
changes to use space tokens. There is no expected visual or behaviour change.
|
|
315
331
|
|
|
316
332
|
## 19.5.9
|
|
317
333
|
|
|
318
334
|
### Patch Changes
|
|
319
335
|
|
|
320
|
-
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
-
|
|
324
|
-
|
|
325
|
-
|
|
336
|
+
- [#39562](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39562)
|
|
337
|
+
[`c18f1580f12`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c18f1580f12) - [ux]
|
|
338
|
+
[ECA11Y-33] Remove unncessary prefix from mention icons aria-label attribute
|
|
339
|
+
- [#39559](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39559)
|
|
340
|
+
[`e9c9a4ea79f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e9c9a4ea79f) - [ux]
|
|
341
|
+
[ECA11Y-34] Replaced profile name span element with h2 tag
|
|
326
342
|
|
|
327
343
|
## 19.5.8
|
|
328
344
|
|
|
329
345
|
### Patch Changes
|
|
330
346
|
|
|
331
|
-
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
-
|
|
347
|
+
- [#38162](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38162)
|
|
348
|
+
[`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete
|
|
349
|
+
version.json
|
|
350
|
+
- Updated dependencies
|
|
335
351
|
|
|
336
352
|
## 19.5.7
|
|
337
353
|
|
|
338
354
|
### Patch Changes
|
|
339
355
|
|
|
340
|
-
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
-
|
|
356
|
+
- [#37372](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37372)
|
|
357
|
+
[`834a98bdc7b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/834a98bdc7b) -
|
|
358
|
+
[ECA11Y-13] Make focus ring visible for 'Give kudos' button
|
|
359
|
+
- Updated dependencies
|
|
344
360
|
|
|
345
361
|
## 19.5.6
|
|
346
362
|
|
|
347
363
|
### Patch Changes
|
|
348
364
|
|
|
349
|
-
-
|
|
350
|
-
|
|
351
|
-
|
|
365
|
+
- [#38551](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38551)
|
|
366
|
+
[`3ef90d5fc2f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3ef90d5fc2f) - Cleanup
|
|
367
|
+
the references to version.json
|
|
352
368
|
|
|
353
369
|
## 19.5.5
|
|
354
370
|
|
|
355
371
|
### Patch Changes
|
|
356
372
|
|
|
357
|
-
-
|
|
358
|
-
|
|
359
|
-
|
|
373
|
+
- [#37925](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37925)
|
|
374
|
+
[`f01deb5e6ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f01deb5e6ab) - Use
|
|
375
|
+
injected env vars instead of version.json
|
|
360
376
|
|
|
361
377
|
## 19.5.4
|
|
362
378
|
|
|
363
379
|
### Patch Changes
|
|
364
380
|
|
|
365
|
-
-
|
|
366
|
-
|
|
367
|
-
|
|
381
|
+
- [#38237](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38237)
|
|
382
|
+
[`cc13658d9b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cc13658d9b4) - Fix for
|
|
383
|
+
incorrect GraphQL query variable in team card
|
|
368
384
|
|
|
369
385
|
## 19.5.3
|
|
370
386
|
|
|
371
387
|
### Patch Changes
|
|
372
388
|
|
|
373
|
-
-
|
|
389
|
+
- Updated dependencies
|
|
374
390
|
|
|
375
391
|
## 19.5.2
|
|
376
392
|
|
|
377
393
|
### Patch Changes
|
|
378
394
|
|
|
379
|
-
-
|
|
380
|
-
|
|
381
|
-
|
|
395
|
+
- [#36576](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36576)
|
|
396
|
+
[`0c6a7acba8d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0c6a7acba8d) - Resolved
|
|
397
|
+
an issue with the team profile card query having invalid formatting
|
|
382
398
|
|
|
383
399
|
## 19.5.1
|
|
384
400
|
|
|
385
401
|
### Patch Changes
|
|
386
402
|
|
|
387
|
-
-
|
|
388
|
-
|
|
389
|
-
|
|
403
|
+
- [#35908](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35908)
|
|
404
|
+
[`5259a126fa1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5259a126fa1) - Replace
|
|
405
|
+
calls to pf-directory `Team` and `TeamMembership` with AGG `teamV2` in Directory app.
|
|
390
406
|
|
|
391
407
|
## 19.5.0
|
|
392
408
|
|
|
393
409
|
### Minor Changes
|
|
394
410
|
|
|
395
|
-
-
|
|
396
|
-
|
|
397
|
-
|
|
411
|
+
- [#35776](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35776)
|
|
412
|
+
[`5a5c412a944`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5a5c412a944) - Site
|
|
413
|
+
scoped changes for TeamProfileCard - behind FF platform.teams.site-scoped.m1
|
|
398
414
|
|
|
399
415
|
## 19.4.2
|
|
400
416
|
|
|
401
417
|
### Patch Changes
|
|
402
418
|
|
|
403
|
-
-
|
|
404
|
-
|
|
405
|
-
|
|
419
|
+
- [#34443](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34443)
|
|
420
|
+
[`61cb5313358`](https://bitbucket.org/atlassian/atlassian-frontend/commits/61cb5313358) - Removing
|
|
421
|
+
unused dependencies and dev dependencies
|
|
406
422
|
|
|
407
423
|
## 19.4.1
|
|
408
424
|
|
|
409
425
|
### Patch Changes
|
|
410
426
|
|
|
411
|
-
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
427
|
+
- [#34118](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34118)
|
|
428
|
+
[`2eb438477ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2eb438477ab) - Internal
|
|
429
|
+
change to enforce token usage for spacing properties. There is no expected visual or behaviour
|
|
430
|
+
change.
|
|
415
431
|
|
|
416
432
|
## 19.4.0
|
|
417
433
|
|
|
418
434
|
### Minor Changes
|
|
419
435
|
|
|
420
|
-
-
|
|
421
|
-
|
|
422
|
-
|
|
436
|
+
- [#34206](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34206)
|
|
437
|
+
[`17fe8f92030`](https://bitbucket.org/atlassian/atlassian-frontend/commits/17fe8f92030) -
|
|
438
|
+
Correctly export i18n messages from profilecard!
|
|
423
439
|
|
|
424
440
|
## 19.3.2
|
|
425
441
|
|
|
426
442
|
### Patch Changes
|
|
427
443
|
|
|
428
|
-
-
|
|
429
|
-
|
|
430
|
-
|
|
444
|
+
- [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
|
|
445
|
+
[`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
|
|
446
|
+
legacy types are published for TS 4.5-4.8
|
|
431
447
|
|
|
432
448
|
## 19.3.1
|
|
433
449
|
|
|
434
450
|
### Patch Changes
|
|
435
451
|
|
|
436
|
-
-
|
|
437
|
-
|
|
438
|
-
|
|
452
|
+
- [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
|
|
453
|
+
[`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade
|
|
454
|
+
Typescript from `4.5.5` to `4.9.5`
|
|
439
455
|
|
|
440
456
|
## 19.3.0
|
|
441
457
|
|
|
442
458
|
### Minor Changes
|
|
443
459
|
|
|
444
|
-
-
|
|
445
|
-
|
|
446
|
-
|
|
460
|
+
- [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
|
|
461
|
+
[`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
|
|
462
|
+
minor dependency bump
|
|
447
463
|
|
|
448
464
|
### Patch Changes
|
|
449
465
|
|
|
450
|
-
-
|
|
466
|
+
- Updated dependencies
|
|
451
467
|
|
|
452
468
|
## 19.2.2
|
|
453
469
|
|
|
454
470
|
### Patch Changes
|
|
455
471
|
|
|
456
|
-
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
behaviour change.
|
|
472
|
+
- [#32030](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32030)
|
|
473
|
+
[`c3d16d3164f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c3d16d3164f) - Migrated
|
|
474
|
+
use of `gridSize` to space tokens where possible. There is no expected visual or behaviour change.
|
|
460
475
|
|
|
461
476
|
## 19.2.1
|
|
462
477
|
|
|
463
478
|
### Patch Changes
|
|
464
479
|
|
|
465
|
-
-
|
|
466
|
-
|
|
467
|
-
|
|
480
|
+
- [#31560](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31560)
|
|
481
|
+
[`052672d7eca`](https://bitbucket.org/atlassian/atlassian-frontend/commits/052672d7eca) - Added
|
|
482
|
+
errorSource to analytics events, added tests for fail events
|
|
468
483
|
|
|
469
484
|
## 19.2.0
|
|
470
485
|
|
|
471
486
|
### Minor Changes
|
|
472
487
|
|
|
473
|
-
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
488
|
+
- [#31233](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31233)
|
|
489
|
+
[`2af6359970f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2af6359970f) - [ux]
|
|
490
|
+
This change (related to TSLA-521) adds an onFocus handler for the profile card trigger that
|
|
491
|
+
performs the same behavior as onHover. The change also adds an onBlur handler.
|
|
477
492
|
|
|
478
493
|
## 19.1.1
|
|
479
494
|
|
|
480
495
|
### Patch Changes
|
|
481
496
|
|
|
482
|
-
-
|
|
483
|
-
|
|
484
|
-
|
|
497
|
+
- [#31423](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31423)
|
|
498
|
+
[`f80d2e43a41`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f80d2e43a41) - Added
|
|
499
|
+
traceId, errorSource and errorMessage to analytic events
|
|
485
500
|
|
|
486
501
|
## 19.1.0
|
|
487
502
|
|
|
488
503
|
### Minor Changes
|
|
489
504
|
|
|
490
|
-
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
505
|
+
- [#31160](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31160)
|
|
506
|
+
[`13af6ca0e48`](https://bitbucket.org/atlassian/atlassian-frontend/commits/13af6ca0e48) - [ux]
|
|
507
|
+
TSLA-521 docs(changeset): [ux] This change (TSLA-521) adds keyboard support for the profile card
|
|
508
|
+
component by adding tabindex, an onKeyPress handler, and setting role="button" when the card is
|
|
509
|
+
trigged by click. This change also adds unit tests for the profile card trigger as well as
|
|
510
|
+
notifcations.
|
|
496
511
|
|
|
497
512
|
## 19.0.0
|
|
498
513
|
|
|
499
514
|
### Major Changes
|
|
500
515
|
|
|
501
|
-
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
516
|
+
- [#31230](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31230)
|
|
517
|
+
[`6e57454a13a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e57454a13a) -
|
|
518
|
+
makeRequestViaGateway removed from TeamProfileClient, instead use makeRequest. teamsUseV2 removed
|
|
519
|
+
from ProfileCardClient, it will now always use V3.
|
|
505
520
|
|
|
506
521
|
## 18.4.0
|
|
507
522
|
|
|
508
523
|
### Minor Changes
|
|
509
524
|
|
|
510
|
-
-
|
|
511
|
-
|
|
512
|
-
|
|
525
|
+
- [#30903](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30903)
|
|
526
|
+
[`312e4be46d2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/312e4be46d2) - Always
|
|
527
|
+
call AGG for team data'
|
|
513
528
|
|
|
514
529
|
## 18.3.0
|
|
515
530
|
|
|
516
531
|
### Minor Changes
|
|
517
532
|
|
|
518
|
-
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
533
|
+
- [#30439](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30439)
|
|
534
|
+
[`9cbd4a1766b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9cbd4a1766b) - [ux]
|
|
535
|
+
Added an error state for team profile card that is displayed when the user lack of access to the
|
|
536
|
+
team
|
|
522
537
|
|
|
523
538
|
## 18.2.4
|
|
524
539
|
|
|
525
540
|
### Patch Changes
|
|
526
541
|
|
|
527
|
-
-
|
|
542
|
+
- Updated dependencies
|
|
528
543
|
|
|
529
544
|
## 18.2.3
|
|
530
545
|
|
|
531
546
|
### Patch Changes
|
|
532
547
|
|
|
533
|
-
-
|
|
548
|
+
- Updated dependencies
|
|
534
549
|
|
|
535
550
|
## 18.2.2
|
|
536
551
|
|
|
537
552
|
### Patch Changes
|
|
538
553
|
|
|
539
|
-
-
|
|
540
|
-
|
|
541
|
-
|
|
554
|
+
- [#29080](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29080)
|
|
555
|
+
[`7d2488dcbcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7d2488dcbcf) - Upgrade
|
|
556
|
+
lru-fast@0.2.2 to lru_map
|
|
542
557
|
|
|
543
558
|
## 18.2.1
|
|
544
559
|
|
|
545
560
|
### Patch Changes
|
|
546
561
|
|
|
547
|
-
-
|
|
548
|
-
|
|
549
|
-
|
|
562
|
+
- [#29094](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29094)
|
|
563
|
+
[`20f162117fb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/20f162117fb) - Remove
|
|
564
|
+
usaged of themed for light and dark theme
|
|
550
565
|
|
|
551
566
|
## 18.2.0
|
|
552
567
|
|
|
553
568
|
### Minor Changes
|
|
554
569
|
|
|
555
|
-
-
|
|
556
|
-
|
|
557
|
-
|
|
570
|
+
- [#28622](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28622)
|
|
571
|
+
[`da891855ee9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/da891855ee9) - Remove
|
|
572
|
+
Atlas give kudos M2 feature flag check
|
|
558
573
|
|
|
559
574
|
## 18.1.3
|
|
560
575
|
|
|
561
576
|
### Patch Changes
|
|
562
577
|
|
|
563
|
-
-
|
|
564
|
-
|
|
565
|
-
|
|
578
|
+
- [#28723](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28723)
|
|
579
|
+
[`5e697be0410`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e697be0410) - [ux] Fix
|
|
580
|
+
team header image bug
|
|
566
581
|
|
|
567
582
|
## 18.1.2
|
|
568
583
|
|
|
569
584
|
### Patch Changes
|
|
570
585
|
|
|
571
|
-
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
586
|
+
- [#28324](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28324)
|
|
587
|
+
[`6455cf006b3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6455cf006b3) - Builds
|
|
588
|
+
for this package now pass through a tokens babel plugin, removing runtime invocations of the
|
|
589
|
+
tokens() function and improving performance.
|
|
575
590
|
|
|
576
591
|
## 18.1.1
|
|
577
592
|
|
|
578
593
|
### Patch Changes
|
|
579
594
|
|
|
580
|
-
-
|
|
581
|
-
|
|
582
|
-
|
|
595
|
+
- [#28352](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28352)
|
|
596
|
+
[`60b1c9b0f05`](https://bitbucket.org/atlassian/atlassian-frontend/commits/60b1c9b0f05) - Upgrade
|
|
597
|
+
profilecard to the latest major version of emotion
|
|
583
598
|
|
|
584
599
|
## 18.1.0
|
|
585
600
|
|
|
586
601
|
### Minor Changes
|
|
587
602
|
|
|
588
|
-
-
|
|
589
|
-
|
|
590
|
-
|
|
603
|
+
- [#28343](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28343)
|
|
604
|
+
[`227230d34f2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/227230d34f2) - Allow
|
|
605
|
+
option to force team profilecard to use pf-directory
|
|
591
606
|
|
|
592
607
|
## 18.0.2
|
|
593
608
|
|
|
594
609
|
### Patch Changes
|
|
595
610
|
|
|
596
|
-
-
|
|
611
|
+
- Updated dependencies
|
|
597
612
|
|
|
598
613
|
## 18.0.1
|
|
599
614
|
|
|
600
615
|
### Patch Changes
|
|
601
616
|
|
|
602
|
-
-
|
|
617
|
+
- Updated dependencies
|
|
603
618
|
|
|
604
619
|
## 18.0.0
|
|
605
620
|
|
|
606
621
|
### Major Changes
|
|
607
622
|
|
|
608
|
-
-
|
|
609
|
-
|
|
610
|
-
|
|
623
|
+
- [#27453](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27453)
|
|
624
|
+
[`d1789629297`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d1789629297) - Switch
|
|
625
|
+
from styled-components to emotion for CSS
|
|
611
626
|
|
|
612
627
|
## 17.3.1
|
|
613
628
|
|
|
614
629
|
### Patch Changes
|
|
615
630
|
|
|
616
|
-
-
|
|
631
|
+
- Updated dependencies
|
|
617
632
|
|
|
618
633
|
## 17.3.0
|
|
619
634
|
|
|
620
635
|
### Minor Changes
|
|
621
636
|
|
|
622
|
-
-
|
|
623
|
-
|
|
624
|
-
|
|
637
|
+
- [#27395](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27395)
|
|
638
|
+
[`b2ef0c20138`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b2ef0c20138) - [ux]
|
|
639
|
+
Don't shift focus when triggering user or team profilecard via hover
|
|
625
640
|
|
|
626
641
|
## 17.2.7
|
|
627
642
|
|
|
628
643
|
### Patch Changes
|
|
629
644
|
|
|
630
|
-
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
645
|
+
- [#27626](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27626)
|
|
646
|
+
[`7bb86e9484c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7bb86e9484c) -
|
|
647
|
+
Transform errors from AGG and ignore 403(TEAMS_FORBIDDEN) and 410(TEAMS_TEAM_DELETED) errors for
|
|
648
|
+
SLO failure
|
|
634
649
|
|
|
635
650
|
## 17.2.6
|
|
636
651
|
|
|
637
652
|
### Patch Changes
|
|
638
653
|
|
|
639
|
-
-
|
|
654
|
+
- Updated dependencies
|
|
640
655
|
|
|
641
656
|
## 17.2.5
|
|
642
657
|
|
|
643
658
|
### Patch Changes
|
|
644
659
|
|
|
645
|
-
-
|
|
646
|
-
|
|
647
|
-
|
|
660
|
+
- [#26483](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26483)
|
|
661
|
+
[`dbd0fa0aa5e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dbd0fa0aa5e) - Handle
|
|
662
|
+
both new and legacy Team ARIs
|
|
648
663
|
|
|
649
664
|
## 17.2.4
|
|
650
665
|
|
|
651
666
|
### Patch Changes
|
|
652
667
|
|
|
653
|
-
-
|
|
654
|
-
|
|
655
|
-
|
|
668
|
+
- [#26481](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26481)
|
|
669
|
+
[`250ad85dd78`](https://bitbucket.org/atlassian/atlassian-frontend/commits/250ad85dd78) - [ux]
|
|
670
|
+
Removed ButtonGroup from team profile card to fix the layout of action buttons
|
|
656
671
|
|
|
657
672
|
## 17.2.3
|
|
658
673
|
|
|
659
674
|
### Patch Changes
|
|
660
675
|
|
|
661
|
-
-
|
|
676
|
+
- Updated dependencies
|
|
662
677
|
|
|
663
678
|
## 17.2.2
|
|
664
679
|
|
|
665
680
|
### Patch Changes
|
|
666
681
|
|
|
667
|
-
-
|
|
668
|
-
|
|
669
|
-
|
|
682
|
+
- [#23053](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23053)
|
|
683
|
+
[`285ad326001`](https://bitbucket.org/atlassian/atlassian-frontend/commits/285ad326001) -
|
|
684
|
+
no-issue: Translations update
|
|
670
685
|
|
|
671
686
|
## 17.2.1
|
|
672
687
|
|
|
673
688
|
### Patch Changes
|
|
674
689
|
|
|
675
|
-
-
|
|
676
|
-
|
|
677
|
-
|
|
690
|
+
- [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874)
|
|
691
|
+
[`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade
|
|
692
|
+
Typescript from `4.3.5` to `4.5.5`
|
|
678
693
|
|
|
679
694
|
## 17.2.0
|
|
680
695
|
|
|
681
696
|
### Minor Changes
|
|
682
697
|
|
|
683
|
-
-
|
|
684
|
-
|
|
685
|
-
|
|
698
|
+
- [#25271](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25271)
|
|
699
|
+
[`7f54d783d6e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f54d783d6e) - Add mock
|
|
700
|
+
for team central client workspace check
|
|
686
701
|
|
|
687
702
|
## 17.1.1
|
|
688
703
|
|
|
689
704
|
### Patch Changes
|
|
690
705
|
|
|
691
|
-
-
|
|
706
|
+
- Updated dependencies
|
|
692
707
|
|
|
693
708
|
## 17.1.0
|
|
694
709
|
|
|
695
710
|
### Minor Changes
|
|
696
711
|
|
|
697
|
-
-
|
|
698
|
-
|
|
699
|
-
|
|
712
|
+
- [#24175](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24175)
|
|
713
|
+
[`aa321e66c2a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa321e66c2a) - Add
|
|
714
|
+
cloudid as optional client prop and add workspace check for Atlas functionality
|
|
700
715
|
|
|
701
716
|
## 17.0.0
|
|
702
717
|
|
|
703
718
|
### Major Changes
|
|
704
719
|
|
|
705
|
-
-
|
|
706
|
-
|
|
707
|
-
|
|
720
|
+
- [#23125](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23125)
|
|
721
|
+
[`fae495c5956`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fae495c5956) -
|
|
722
|
+
Deprecated the analytics prop and start emitting GASv3 analytics
|
|
708
723
|
|
|
709
724
|
## 16.12.1
|
|
710
725
|
|
|
711
726
|
### Patch Changes
|
|
712
727
|
|
|
713
|
-
-
|
|
714
|
-
|
|
715
|
-
|
|
728
|
+
- [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492)
|
|
729
|
+
[`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade
|
|
730
|
+
Typescript from `4.2.4` to `4.3.5`.
|
|
716
731
|
|
|
717
732
|
## 16.12.0
|
|
718
733
|
|
|
719
734
|
### Minor Changes
|
|
720
735
|
|
|
721
|
-
-
|
|
722
|
-
|
|
723
|
-
|
|
736
|
+
- [#23898](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23898)
|
|
737
|
+
[`12835d685b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12835d685b4) - [ux]
|
|
738
|
+
Only show give kudos button on active profiles
|
|
724
739
|
|
|
725
740
|
## 16.11.0
|
|
726
741
|
|
|
727
742
|
### Minor Changes
|
|
728
743
|
|
|
729
|
-
-
|
|
730
|
-
|
|
731
|
-
|
|
744
|
+
- [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381)
|
|
745
|
+
[`01d80d395bc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/01d80d395bc) - pass
|
|
746
|
+
event to onOpenChange consistently
|
|
732
747
|
|
|
733
748
|
### Patch Changes
|
|
734
749
|
|
|
735
|
-
-
|
|
750
|
+
- Updated dependencies
|
|
736
751
|
|
|
737
752
|
## 16.10.1
|
|
738
753
|
|
|
739
754
|
### Patch Changes
|
|
740
755
|
|
|
741
|
-
-
|
|
756
|
+
- Updated dependencies
|
|
742
757
|
|
|
743
758
|
## 16.10.0
|
|
744
759
|
|
|
745
760
|
### Minor Changes
|
|
746
761
|
|
|
747
|
-
-
|
|
748
|
-
|
|
749
|
-
|
|
762
|
+
- [#23074](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23074)
|
|
763
|
+
[`e5fbc101e73`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e5fbc101e73) - Remove
|
|
764
|
+
analytics prop from give kudos component
|
|
750
765
|
|
|
751
766
|
### Patch Changes
|
|
752
767
|
|
|
753
|
-
-
|
|
768
|
+
- Updated dependencies
|
|
754
769
|
|
|
755
770
|
## 16.9.1
|
|
756
771
|
|
|
757
772
|
### Patch Changes
|
|
758
773
|
|
|
759
|
-
-
|
|
774
|
+
- Updated dependencies
|
|
760
775
|
|
|
761
776
|
## 16.9.0
|
|
762
777
|
|
|
763
778
|
### Minor Changes
|
|
764
779
|
|
|
765
|
-
-
|
|
766
|
-
|
|
767
|
-
|
|
780
|
+
- [#22749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22749)
|
|
781
|
+
[`1f16cd80413`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f16cd80413) - [ux] Add
|
|
782
|
+
give kudos to Team profile card.
|
|
768
783
|
|
|
769
784
|
## 16.8.0
|
|
770
785
|
|
|
771
786
|
### Minor Changes
|
|
772
787
|
|
|
773
|
-
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
788
|
+
- [#22618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22618)
|
|
789
|
+
[`319c46e77de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/319c46e77de) - [ux]
|
|
790
|
+
Adding a button background animation when the give kudos button on the profile card is hovered
|
|
791
|
+
over
|
|
777
792
|
|
|
778
793
|
## 16.7.0
|
|
779
794
|
|
|
780
795
|
### Minor Changes
|
|
781
796
|
|
|
782
|
-
-
|
|
783
|
-
|
|
784
|
-
|
|
797
|
+
- [#22588](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22588)
|
|
798
|
+
[`4e9fbfb9e85`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e9fbfb9e85) - [ux]
|
|
799
|
+
Adding meatballs overflow menu when the profile card has more than two action buttons
|
|
785
800
|
|
|
786
801
|
## 16.6.1
|
|
787
802
|
|
|
788
803
|
### Patch Changes
|
|
789
804
|
|
|
790
|
-
-
|
|
791
|
-
|
|
792
|
-
|
|
805
|
+
- [#22624](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22624)
|
|
806
|
+
[`cf03bdf6b7e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf03bdf6b7e) - Made
|
|
807
|
+
feature flag check extra context optional.
|
|
793
808
|
|
|
794
809
|
## 16.6.0
|
|
795
810
|
|
|
796
811
|
### Minor Changes
|
|
797
812
|
|
|
798
|
-
-
|
|
799
|
-
|
|
800
|
-
|
|
813
|
+
- [#22152](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22152)
|
|
814
|
+
[`7c691c8e8a9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7c691c8e8a9) - [ux]
|
|
815
|
+
Launch the give kudos flow via a drawer from the profile-card.
|
|
801
816
|
|
|
802
817
|
## 16.5.0
|
|
803
818
|
|
|
804
819
|
### Minor Changes
|
|
805
820
|
|
|
806
|
-
-
|
|
807
|
-
|
|
808
|
-
|
|
821
|
+
- [#21848](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21848)
|
|
822
|
+
[`31ca93c69a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/31ca93c69a3) - [ux]
|
|
823
|
+
Adding give kudos button to the profile card
|
|
809
824
|
|
|
810
825
|
## 16.4.8
|
|
811
826
|
|
|
812
827
|
### Patch Changes
|
|
813
828
|
|
|
814
|
-
-
|
|
829
|
+
- Updated dependencies
|
|
815
830
|
|
|
816
831
|
## 16.4.7
|
|
817
832
|
|
|
818
833
|
### Patch Changes
|
|
819
834
|
|
|
820
|
-
-
|
|
835
|
+
- Updated dependencies
|
|
821
836
|
|
|
822
837
|
## 16.4.6
|
|
823
838
|
|
|
824
839
|
### Patch Changes
|
|
825
840
|
|
|
826
|
-
-
|
|
827
|
-
|
|
828
|
-
|
|
841
|
+
- [#21462](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21462)
|
|
842
|
+
[`386249e4be4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/386249e4be4) - [ux] Fix
|
|
843
|
+
hide handler when the profile card is triggered via click
|
|
829
844
|
|
|
830
845
|
## 16.4.5
|
|
831
846
|
|
|
832
847
|
### Patch Changes
|
|
833
848
|
|
|
834
|
-
-
|
|
835
|
-
|
|
836
|
-
|
|
849
|
+
- [#20787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20787)
|
|
850
|
+
[`18ab5ef3325`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18ab5ef3325) - Filter
|
|
851
|
+
out certain types of failures for team profilecard data fetch
|
|
837
852
|
|
|
838
853
|
## 16.4.4
|
|
839
854
|
|
|
840
855
|
### Patch Changes
|
|
841
856
|
|
|
842
|
-
-
|
|
843
|
-
|
|
844
|
-
|
|
857
|
+
- [#21005](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21005)
|
|
858
|
+
[`b876346271a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b876346271a) - Ensure
|
|
859
|
+
that component wrapping a ProfileCardTrigger is not clicked when clicking the trigger
|
|
845
860
|
|
|
846
861
|
## 16.4.3
|
|
847
862
|
|
|
848
863
|
### Patch Changes
|
|
849
864
|
|
|
850
|
-
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
-
|
|
865
|
+
- [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650)
|
|
866
|
+
[`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade
|
|
867
|
+
to TypeScript 4.2.4
|
|
868
|
+
- Updated dependencies
|
|
854
869
|
|
|
855
870
|
## 16.4.2
|
|
856
871
|
|
|
857
872
|
### Patch Changes
|
|
858
873
|
|
|
859
|
-
-
|
|
874
|
+
- Updated dependencies
|
|
860
875
|
|
|
861
876
|
## 16.4.1
|
|
862
877
|
|
|
863
878
|
### Patch Changes
|
|
864
879
|
|
|
865
|
-
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
-
|
|
880
|
+
- [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618)
|
|
881
|
+
[`ac9343c3ed4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac9343c3ed4) - Replaces
|
|
882
|
+
usage of deprecated design tokens. No visual or functional changes
|
|
883
|
+
- Updated dependencies
|
|
869
884
|
|
|
870
885
|
## 16.4.0
|
|
871
886
|
|
|
872
887
|
### Minor Changes
|
|
873
888
|
|
|
874
|
-
-
|
|
875
|
-
|
|
876
|
-
|
|
889
|
+
- [#19693](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19693)
|
|
890
|
+
[`4c94bc2d6c4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4c94bc2d6c4) - Update
|
|
891
|
+
profilecard to use analytics from teams common
|
|
877
892
|
|
|
878
893
|
## 16.3.1
|
|
879
894
|
|
|
880
895
|
### Patch Changes
|
|
881
896
|
|
|
882
|
-
-
|
|
897
|
+
- Updated dependencies
|
|
883
898
|
|
|
884
899
|
## 16.3.0
|
|
885
900
|
|
|
886
901
|
### Minor Changes
|
|
887
902
|
|
|
888
|
-
-
|
|
889
|
-
|
|
890
|
-
|
|
903
|
+
- [#17604](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17604)
|
|
904
|
+
[`ce207d8ea47`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ce207d8ea47) - Add
|
|
905
|
+
option to query teams with AGG
|
|
891
906
|
|
|
892
907
|
## 16.2.3
|
|
893
908
|
|
|
894
909
|
### Patch Changes
|
|
895
910
|
|
|
896
|
-
-
|
|
897
|
-
|
|
898
|
-
|
|
911
|
+
- [#18109](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18109)
|
|
912
|
+
[`4d4d5d66cb8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4d4d5d66cb8) - Use
|
|
913
|
+
entrypoints to import profilecard components
|
|
899
914
|
|
|
900
915
|
## 16.2.2
|
|
901
916
|
|
|
902
917
|
### Patch Changes
|
|
903
918
|
|
|
904
|
-
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
-
|
|
919
|
+
- [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752)
|
|
920
|
+
[`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - The
|
|
921
|
+
no-unsafe-design-token-usage eslint rule now respects the new token naming conventions when
|
|
922
|
+
auto-fixing by correctly formatting token ids.
|
|
923
|
+
- Updated dependencies
|
|
909
924
|
|
|
910
925
|
## 16.2.1
|
|
911
926
|
|
|
912
927
|
### Patch Changes
|
|
913
928
|
|
|
914
|
-
-
|
|
929
|
+
- Updated dependencies
|
|
915
930
|
|
|
916
931
|
## 16.2.0
|
|
917
932
|
|
|
918
933
|
### Minor Changes
|
|
919
934
|
|
|
920
|
-
-
|
|
921
|
-
|
|
922
|
-
|
|
935
|
+
- [#17840](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17840)
|
|
936
|
+
[`4039320b130`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4039320b130) - Support
|
|
937
|
+
lazy loading in the ProfileCardTrigger component
|
|
923
938
|
|
|
924
939
|
## 16.1.0
|
|
925
940
|
|
|
926
941
|
### Minor Changes
|
|
927
942
|
|
|
928
|
-
-
|
|
929
|
-
|
|
930
|
-
|
|
943
|
+
- [#17298](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17298)
|
|
944
|
+
[`a5c73ccaa58`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5c73ccaa58) - Added
|
|
945
|
+
manager and direct reports section to profile hover card"
|
|
931
946
|
|
|
932
947
|
## 16.0.2
|
|
933
948
|
|
|
934
949
|
### Patch Changes
|
|
935
950
|
|
|
936
|
-
-
|
|
937
|
-
|
|
938
|
-
|
|
951
|
+
- [#17475](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17475)
|
|
952
|
+
[`c55c736ecea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c55c736ecea) - Patch
|
|
953
|
+
VULN AFP-3486 AFP-3487 AFP-3488 AFP-3489
|
|
939
954
|
|
|
940
955
|
## 16.0.1
|
|
941
956
|
|
|
942
957
|
### Patch Changes
|
|
943
958
|
|
|
944
|
-
-
|
|
945
|
-
|
|
946
|
-
|
|
959
|
+
- [#16812](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16812)
|
|
960
|
+
[`82099b76445`](https://bitbucket.org/atlassian/atlassian-frontend/commits/82099b76445) - Add
|
|
961
|
+
optional `testId` prop to `ProfileCardTrigger` to ease testing
|
|
947
962
|
|
|
948
963
|
## 16.0.0
|
|
949
964
|
|
|
950
965
|
### Major Changes
|
|
951
966
|
|
|
952
|
-
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
967
|
+
- [#14810](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14810)
|
|
968
|
+
[`47f58da5946`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47f58da5946) -
|
|
969
|
+
ED-13322, ED-13324, ED-13326, ED-13323, ED-13204: Upgrade and support react-intl@^5.18.1 including
|
|
970
|
+
breaking API changes, types and tests in atlassian-frontend packages
|
|
971
|
+
|
|
972
|
+
What changed: Upgraded our react-intl support from ^2.6.0 to ^5.18.1. This means editor packages
|
|
973
|
+
now rely on consumers installing ^5.18.1, otherwise editor usage of react-intl will mismatch with
|
|
974
|
+
actual installed react-intl APIs. Why change was made: As part of a coordinated upgrade effort
|
|
975
|
+
across AF packages, as react-intl v2 is quite dated. How consumer should update their code: Ensure
|
|
976
|
+
react-intl ^5.18.1 is installed in consuming applications.
|
|
977
|
+
|
|
978
|
+
Upgrade guide: To consume atlassian-frontend packages that use react-intl5 setup a second provider
|
|
979
|
+
for the new version, using an npm alias
|
|
980
|
+
|
|
981
|
+
```js
|
|
982
|
+
"react-intl": "^2.6.0",
|
|
983
|
+
"react-intl-next": "npm:react-intl@^5.18.1",
|
|
984
|
+
```
|
|
985
|
+
|
|
986
|
+
```js
|
|
987
|
+
import { IntlProvider } from 'react-intl';
|
|
988
|
+
import { IntlProvider as IntlNextProvider } from 'react-intl-next';
|
|
989
|
+
|
|
990
|
+
return (
|
|
991
|
+
<IntlProvider
|
|
992
|
+
key={locale}
|
|
993
|
+
data-test-language={locale}
|
|
994
|
+
locale={locale}
|
|
995
|
+
defaultLocale={DEFAULT_LOCALE}
|
|
996
|
+
messages={messages}
|
|
997
|
+
>
|
|
998
|
+
<IntlNextProvider
|
|
999
|
+
key={locale}
|
|
1000
|
+
data-test-language={locale}
|
|
1001
|
+
locale={locale}
|
|
1002
|
+
defaultLocale={DEFAULT_LOCALE}
|
|
1003
|
+
messages={messages}
|
|
1004
|
+
>
|
|
1005
|
+
{children}
|
|
1006
|
+
</IntlNextProvider>
|
|
1007
|
+
</IntlProvider>
|
|
1008
|
+
);
|
|
1009
|
+
```
|
|
995
1010
|
|
|
996
1011
|
## 15.8.2
|
|
997
1012
|
|
|
998
1013
|
### Patch Changes
|
|
999
1014
|
|
|
1000
|
-
-
|
|
1015
|
+
- Updated dependencies
|
|
1001
1016
|
|
|
1002
1017
|
## 15.8.1
|
|
1003
1018
|
|
|
1004
1019
|
### Patch Changes
|
|
1005
1020
|
|
|
1006
|
-
-
|
|
1021
|
+
- Updated dependencies
|
|
1007
1022
|
|
|
1008
1023
|
## 15.8.0
|
|
1009
1024
|
|
|
1010
1025
|
### Minor Changes
|
|
1011
1026
|
|
|
1012
|
-
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1027
|
+
- [#15859](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15859)
|
|
1028
|
+
[`1b9bc1e4b9a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1b9bc1e4b9a) - [ux]
|
|
1029
|
+
Instrumented profilecard with the new theming package, `@atlaskit/tokens`.
|
|
1015
1030
|
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1031
|
+
New tokens will be visible only in applications configured to use the new Tokens API (currently in
|
|
1032
|
+
alpha). These changes are intended to be interoperable with the legacy theme implementation.
|
|
1033
|
+
Legacy dark mode users should expect no visual or breaking changes.
|
|
1019
1034
|
|
|
1020
1035
|
## 15.7.1
|
|
1021
1036
|
|
|
1022
1037
|
### Patch Changes
|
|
1023
1038
|
|
|
1024
|
-
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1039
|
+
- [#15267](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15267)
|
|
1040
|
+
[`d04cae5d45c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d04cae5d45c) - Expose
|
|
1041
|
+
some mock helpers
|
|
1027
1042
|
|
|
1028
1043
|
## 15.7.0
|
|
1029
1044
|
|
|
1030
1045
|
### Minor Changes
|
|
1031
1046
|
|
|
1032
|
-
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1047
|
+
- [#15165](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15165)
|
|
1048
|
+
[`322786b0386`](https://bitbucket.org/atlassian/atlassian-frontend/commits/322786b0386) - Export
|
|
1049
|
+
team profile card content to outside so we can use it to build legacy profile card in Jira FE
|
|
1035
1050
|
|
|
1036
1051
|
## 15.6.2
|
|
1037
1052
|
|
|
1038
1053
|
### Patch Changes
|
|
1039
1054
|
|
|
1040
|
-
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
-
|
|
1055
|
+
- [#14319](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14319)
|
|
1056
|
+
[`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) - Internal
|
|
1057
|
+
changes to remove `@atlaskit/theme/math` usage.
|
|
1058
|
+
- Updated dependencies
|
|
1044
1059
|
|
|
1045
1060
|
## 15.6.1
|
|
1046
1061
|
|
|
1047
1062
|
### Patch Changes
|
|
1048
1063
|
|
|
1049
|
-
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1064
|
+
- [#14411](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14411)
|
|
1065
|
+
[`301bf1b9e08`](https://bitbucket.org/atlassian/atlassian-frontend/commits/301bf1b9e08) - Bring
|
|
1066
|
+
`withOuterListeners` HOC back so that Jira can continue use it
|
|
1052
1067
|
|
|
1053
1068
|
## 15.6.0
|
|
1054
1069
|
|
|
1055
1070
|
### Minor Changes
|
|
1056
1071
|
|
|
1057
|
-
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1072
|
+
- [#13464](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13464)
|
|
1073
|
+
[`d07a1ced0bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d07a1ced0bd) - Pass
|
|
1074
|
+
orgId on to service when querying team
|
|
1060
1075
|
|
|
1061
1076
|
## 15.5.12
|
|
1062
1077
|
|
|
1063
1078
|
### Patch Changes
|
|
1064
1079
|
|
|
1065
|
-
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
-
|
|
1069
|
-
|
|
1070
|
-
-
|
|
1071
|
-
|
|
1080
|
+
- [#13136](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13136)
|
|
1081
|
+
[`524b20aff9a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/524b20aff9a) - Update
|
|
1082
|
+
package.jsons to remove unused dependencies. Also excludes tests from some build tsconfigs
|
|
1083
|
+
- [`3c0349f272a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c0349f272a) - Update
|
|
1084
|
+
package.jsons to remove unused dependencies. Also excludes tests from some build tsconfigs
|
|
1085
|
+
- [`591d34f966f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/591d34f966f) - Update
|
|
1086
|
+
package.jsons to remove unused dependencies. Also excludes tests from some build tsconfigs
|
|
1072
1087
|
|
|
1073
1088
|
## 15.5.11
|
|
1074
1089
|
|
|
1075
1090
|
### Patch Changes
|
|
1076
1091
|
|
|
1077
|
-
-
|
|
1092
|
+
- Updated dependencies
|
|
1078
1093
|
|
|
1079
1094
|
## 15.5.10
|
|
1080
1095
|
|
|
1081
1096
|
### Patch Changes
|
|
1082
1097
|
|
|
1083
|
-
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1098
|
+
- [#9328](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9328)
|
|
1099
|
+
[`414b6216adf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/414b6216adf) - Upgrade
|
|
1100
|
+
date-fns to ^2.17
|
|
1086
1101
|
|
|
1087
1102
|
## 15.5.9
|
|
1088
1103
|
|
|
1089
1104
|
### Patch Changes
|
|
1090
1105
|
|
|
1091
|
-
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1106
|
+
- [#11951](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11951)
|
|
1107
|
+
[`d57d071183e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d57d071183e) - Fix a
|
|
1108
|
+
bug - should re-render ProfileCard when "resourceClient" prop is changed
|
|
1094
1109
|
|
|
1095
1110
|
## 15.5.8
|
|
1096
1111
|
|
|
1097
1112
|
### Patch Changes
|
|
1098
1113
|
|
|
1099
|
-
-
|
|
1114
|
+
- Updated dependencies
|
|
1100
1115
|
|
|
1101
1116
|
## 15.5.7
|
|
1102
1117
|
|
|
1103
1118
|
### Patch Changes
|
|
1104
1119
|
|
|
1105
|
-
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1120
|
+
- [#10514](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10514)
|
|
1121
|
+
[`8b87ba0c18c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8b87ba0c18c) - Fix the
|
|
1122
|
+
behavior of command click and shift click on links
|
|
1108
1123
|
|
|
1109
1124
|
## 15.5.6
|
|
1110
1125
|
|
|
1111
1126
|
### Patch Changes
|
|
1112
1127
|
|
|
1113
|
-
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1128
|
+
- [#10136](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10136)
|
|
1129
|
+
[`f8cf7c90c94`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f8cf7c90c94) - Added
|
|
1130
|
+
error attributes to analytics after failures so we can track issue causes
|
|
1116
1131
|
|
|
1117
1132
|
## 15.5.5
|
|
1118
1133
|
|
|
1119
1134
|
### Patch Changes
|
|
1120
1135
|
|
|
1121
|
-
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1136
|
+
- [#9558](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9558)
|
|
1137
|
+
[`f5c41936feb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f5c41936feb) - Fix the
|
|
1138
|
+
props to allow better customization of links on avatars in team profilecards.
|
|
1124
1139
|
|
|
1125
1140
|
## 15.5.4
|
|
1126
1141
|
|
|
1127
1142
|
### Patch Changes
|
|
1128
1143
|
|
|
1129
|
-
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1144
|
+
- [#9460](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9460)
|
|
1145
|
+
[`9f19d3e89fe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f19d3e89fe) -
|
|
1146
|
+
CONFDEV-73945: Added optional customLozenges property to ProfileCardClientData so Typescript will
|
|
1147
|
+
allow custom UserProfileClients to add custom lozenges to the ProfileCard
|
|
1133
1148
|
|
|
1134
1149
|
## 15.5.3
|
|
1135
1150
|
|
|
1136
1151
|
### Patch Changes
|
|
1137
1152
|
|
|
1138
|
-
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1153
|
+
- [#9307](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9307)
|
|
1154
|
+
[`e7d0d61bfc0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7d0d61bfc0) - Fixed
|
|
1155
|
+
analytics issues in Team Profilecard avatars and added key to User Profilecard lozenges
|
|
1141
1156
|
|
|
1142
1157
|
## 15.5.2
|
|
1143
1158
|
|
|
1144
1159
|
### Patch Changes
|
|
1145
1160
|
|
|
1146
|
-
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1161
|
+
- [#9299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9299)
|
|
1162
|
+
[`471e2431a7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/471e2431a7c) -
|
|
1163
|
+
Downgrade back to date-fns 1.30.1 We discovered big bundle size increases associated with the
|
|
1164
|
+
date-fns upgrade. We're reverting the upgarde to investigate
|
|
1150
1165
|
|
|
1151
1166
|
## 15.5.1
|
|
1152
1167
|
|
|
1153
1168
|
### Patch Changes
|
|
1154
1169
|
|
|
1155
|
-
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1170
|
+
- [#8291](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8291)
|
|
1171
|
+
[`70f0701c2e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70f0701c2e6) - Upgrade
|
|
1172
|
+
date-fns to 2.17
|
|
1158
1173
|
|
|
1159
1174
|
## 15.5.0
|
|
1160
1175
|
|
|
1161
1176
|
### Minor Changes
|
|
1162
1177
|
|
|
1163
|
-
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1178
|
+
- [#9165](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9165)
|
|
1179
|
+
[`54f4ce55485`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54f4ce55485) - Changed
|
|
1180
|
+
ProfileCard's customLozenges' 'text' prop type to accept a ReactNode to allow internationalized
|
|
1181
|
+
<FormattedMessage> elements in addition to string
|
|
1167
1182
|
|
|
1168
1183
|
## 15.4.0
|
|
1169
1184
|
|
|
1170
1185
|
### Minor Changes
|
|
1171
1186
|
|
|
1172
|
-
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1187
|
+
- [#8973](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8973)
|
|
1188
|
+
[`e76cdc56e39`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e76cdc56e39) - Made
|
|
1189
|
+
cloudId optional, to increase usability in site-less contexts like new products.
|
|
1175
1190
|
|
|
1176
1191
|
## 15.3.1
|
|
1177
1192
|
|
|
1178
1193
|
### Patch Changes
|
|
1179
1194
|
|
|
1180
|
-
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1195
|
+
- [#9010](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9010)
|
|
1196
|
+
[`620ddc14690`](https://bitbucket.org/atlassian/atlassian-frontend/commits/620ddc14690) - [ux]
|
|
1197
|
+
Correct styling on Profile Card triggers
|
|
1183
1198
|
|
|
1184
1199
|
## 15.3.0
|
|
1185
1200
|
|
|
1186
1201
|
### Minor Changes
|
|
1187
1202
|
|
|
1188
|
-
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1203
|
+
- [#8759](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8759)
|
|
1204
|
+
[`5e7fbaa154f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e7fbaa154f) - [ux]
|
|
1205
|
+
Added an optional prop to the Profilecard component for displaying custom lozenges
|
|
1191
1206
|
|
|
1192
1207
|
## 15.2.0
|
|
1193
1208
|
|
|
1194
1209
|
### Minor Changes
|
|
1195
1210
|
|
|
1196
|
-
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1211
|
+
- [#8844](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8844)
|
|
1212
|
+
[`61544638935`](https://bitbucket.org/atlassian/atlassian-frontend/commits/61544638935) - Added
|
|
1213
|
+
analytics to the Team profile card
|
|
1199
1214
|
|
|
1200
1215
|
## 15.1.3
|
|
1201
1216
|
|
|
1202
1217
|
### Patch Changes
|
|
1203
1218
|
|
|
1204
|
-
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1219
|
+
- [#8566](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8566)
|
|
1220
|
+
[`11f5b0da43e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/11f5b0da43e) - [ux] Fix
|
|
1221
|
+
zIndex for profile card and team profile card
|
|
1207
1222
|
|
|
1208
1223
|
## 15.1.2
|
|
1209
1224
|
|
|
1210
1225
|
### Patch Changes
|
|
1211
1226
|
|
|
1212
|
-
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1227
|
+
- [#8383](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8383)
|
|
1228
|
+
[`e104d184c58`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e104d184c58) - [ux]
|
|
1229
|
+
Enabled translations for team profile card messages
|
|
1215
1230
|
|
|
1216
1231
|
## 15.1.1
|
|
1217
1232
|
|
|
1218
1233
|
### Patch Changes
|
|
1219
1234
|
|
|
1220
|
-
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1235
|
+
- [#8354](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8354)
|
|
1236
|
+
[`771af9a49ed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/771af9a49ed) - [ux]
|
|
1237
|
+
Enable propagating onClick handlers to the Avatar Group
|
|
1223
1238
|
|
|
1224
1239
|
## 15.1.0
|
|
1225
1240
|
|
|
1226
1241
|
### Minor Changes
|
|
1227
1242
|
|
|
1228
|
-
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1243
|
+
- [#8289](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8289)
|
|
1244
|
+
[`d30beab4f1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d30beab4f1e) -
|
|
1245
|
+
Introduce lazy loading for the team profile card
|
|
1231
1246
|
|
|
1232
1247
|
## 15.0.2
|
|
1233
1248
|
|
|
1234
1249
|
### Patch Changes
|
|
1235
1250
|
|
|
1236
|
-
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1251
|
+
- [#8305](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8305)
|
|
1252
|
+
[`1d2da620745`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1d2da620745) - [ux]
|
|
1253
|
+
Default to showing shadow around user profile cards
|
|
1239
1254
|
|
|
1240
1255
|
## 15.0.1
|
|
1241
1256
|
|
|
1242
1257
|
### Patch Changes
|
|
1243
1258
|
|
|
1244
|
-
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1259
|
+
- [#8295](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8295)
|
|
1260
|
+
[`1e5d7f613f5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1e5d7f613f5) - [ux]
|
|
1261
|
+
Position the header image on team profile cards correctly
|
|
1247
1262
|
|
|
1248
1263
|
## 15.0.0
|
|
1249
1264
|
|
|
1250
1265
|
### Major Changes
|
|
1251
1266
|
|
|
1252
|
-
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1267
|
+
- [#8235](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8235)
|
|
1268
|
+
[`6d6aa2b4928`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6d6aa2b4928) -
|
|
1269
|
+
Introduced entrypoints to the profilecard package.
|
|
1255
1270
|
|
|
1256
1271
|
## 14.3.1
|
|
1257
1272
|
|
|
1258
1273
|
### Patch Changes
|
|
1259
1274
|
|
|
1260
|
-
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1275
|
+
- [#8082](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8082)
|
|
1276
|
+
[`537b933d68f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/537b933d68f) - [ux]
|
|
1277
|
+
Simplified the CSS being used and added improved testing
|
|
1263
1278
|
|
|
1264
1279
|
## 14.3.0
|
|
1265
1280
|
|
|
1266
1281
|
### Minor Changes
|
|
1267
1282
|
|
|
1268
|
-
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1283
|
+
- [#7762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7762)
|
|
1284
|
+
[`7ddbf962bd9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ddbf962bd9) - [ux]
|
|
1285
|
+
Updated and added new translations
|
|
1271
1286
|
|
|
1272
1287
|
## 14.2.0
|
|
1273
1288
|
|
|
1274
1289
|
### Minor Changes
|
|
1275
1290
|
|
|
1276
|
-
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1291
|
+
- [#7829](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7829)
|
|
1292
|
+
[`78a52b31f84`](https://bitbucket.org/atlassian/atlassian-frontend/commits/78a52b31f84) - [ux]
|
|
1293
|
+
Added triggerLinkType prop to allow customisation of the link that wraps the trigger.
|
|
1279
1294
|
|
|
1280
1295
|
## 14.1.0
|
|
1281
1296
|
|
|
1282
1297
|
### Minor Changes
|
|
1283
1298
|
|
|
1284
|
-
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1299
|
+
- [#7637](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7637)
|
|
1300
|
+
[`8263a7a153`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8263a7a153) - [ux]
|
|
1301
|
+
Update the user profile card trigger to use @atlaskit/popup for the popup behaviour, and
|
|
1302
|
+
remove/simplify unneeded code.
|
|
1288
1303
|
|
|
1289
1304
|
## 14.0.2
|
|
1290
1305
|
|
|
1291
1306
|
### Patch Changes
|
|
1292
1307
|
|
|
1293
|
-
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1308
|
+
- [#7625](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7625)
|
|
1309
|
+
[`9e021e9873`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e021e9873) - Added
|
|
1310
|
+
customisation to the new Team Profilecard examples.
|
|
1296
1311
|
|
|
1297
1312
|
## 14.0.1
|
|
1298
1313
|
|
|
1299
1314
|
### Patch Changes
|
|
1300
1315
|
|
|
1301
|
-
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1316
|
+
- [#7600](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7600)
|
|
1317
|
+
[`d2582c8e90`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2582c8e90) - Export the
|
|
1318
|
+
TeamProfileCardTrigger
|
|
1304
1319
|
|
|
1305
1320
|
## 14.0.0
|
|
1306
1321
|
|
|
1307
1322
|
### Major Changes
|
|
1308
1323
|
|
|
1309
|
-
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1324
|
+
- [#7320](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7320)
|
|
1325
|
+
[`bc57b32d3a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc57b32d3a) - [ux]
|
|
1326
|
+
WARNING: This major release exists for testing purposes only. Avoid using this version as it
|
|
1327
|
+
contains some duplicated dependencies that will be improved in future when the next release is
|
|
1328
|
+
ready for use.
|
|
1314
1329
|
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1330
|
+
Introduced a new profile card type: the Team profile card. To support this new type, some changes
|
|
1331
|
+
have been made to the profile client structure to allow code reuse for managing both team and user
|
|
1332
|
+
profile card data collection.
|
|
1318
1333
|
|
|
1319
1334
|
## 13.0.7
|
|
1320
1335
|
|
|
1321
1336
|
### Patch Changes
|
|
1322
1337
|
|
|
1323
|
-
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1338
|
+
- [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497)
|
|
1339
|
+
[`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export
|
|
1340
|
+
types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules
|
|
1341
|
+
compiler option. This requires version 3.8 of Typescript, read more about how we handle Typescript
|
|
1342
|
+
versions here: https://atlaskit.atlassian.com/get-started Also add `typescript` to
|
|
1343
|
+
`devDependencies` to denote version that the package was built with.
|
|
1329
1344
|
|
|
1330
1345
|
## 13.0.6
|
|
1331
1346
|
|
|
1332
1347
|
### Patch Changes
|
|
1333
1348
|
|
|
1334
|
-
-
|
|
1349
|
+
- Updated dependencies
|
|
1335
1350
|
|
|
1336
1351
|
## 13.0.5
|
|
1337
1352
|
|
|
1338
1353
|
### Patch Changes
|
|
1339
1354
|
|
|
1340
|
-
-
|
|
1355
|
+
- Updated dependencies
|
|
1341
1356
|
|
|
1342
1357
|
## 13.0.4
|
|
1343
1358
|
|
|
1344
1359
|
### Patch Changes
|
|
1345
1360
|
|
|
1346
|
-
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1361
|
+
- [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885)
|
|
1362
|
+
[`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded
|
|
1363
|
+
to TypeScript 3.9.6 and tslib to 2.0.0
|
|
1349
1364
|
|
|
1350
|
-
|
|
1351
|
-
|
|
1365
|
+
Since tslib is a dependency for all our packages we recommend that products also follow this tslib
|
|
1366
|
+
upgrade to prevent duplicates of tslib being bundled.
|
|
1352
1367
|
|
|
1353
1368
|
## 13.0.3
|
|
1354
1369
|
|
|
1355
1370
|
### Patch Changes
|
|
1356
1371
|
|
|
1357
|
-
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
-
|
|
1372
|
+
- [#3823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3823)
|
|
1373
|
+
[`6262f382de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6262f382de) - Use the
|
|
1374
|
+
'lodash' package instead of single-function 'lodash.\*' packages
|
|
1375
|
+
- Updated dependencies
|
|
1361
1376
|
|
|
1362
1377
|
## 13.0.2
|
|
1363
1378
|
|
|
1364
1379
|
### Patch Changes
|
|
1365
1380
|
|
|
1366
|
-
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1381
|
+
- [#3369](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3369)
|
|
1382
|
+
[`d03bff2147`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d03bff2147) - updated
|
|
1383
|
+
translations
|
|
1369
1384
|
|
|
1370
1385
|
## 13.0.1
|
|
1371
1386
|
|
|
1372
1387
|
### Patch Changes
|
|
1373
1388
|
|
|
1374
|
-
-
|
|
1389
|
+
- Updated dependencies
|
|
1375
1390
|
|
|
1376
1391
|
## 13.0.0
|
|
1377
1392
|
|
|
1378
1393
|
### Major Changes
|
|
1379
1394
|
|
|
1380
|
-
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1395
|
+
- [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335)
|
|
1396
|
+
[`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially
|
|
1397
|
+
dropping IE11 support, from this version onwards there are no warranties of the package working in
|
|
1398
|
+
IE11. For more information see:
|
|
1399
|
+
https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
|
|
1385
1400
|
|
|
1386
1401
|
### Patch Changes
|
|
1387
1402
|
|
|
1388
|
-
-
|
|
1403
|
+
- Updated dependencies
|
|
1389
1404
|
|
|
1390
1405
|
## 12.4.4
|
|
1391
1406
|
|
|
1392
1407
|
### Patch Changes
|
|
1393
1408
|
|
|
1394
|
-
-
|
|
1409
|
+
- Updated dependencies
|
|
1395
1410
|
|
|
1396
1411
|
## 12.4.3
|
|
1397
1412
|
|
|
1398
1413
|
### Patch Changes
|
|
1399
1414
|
|
|
1400
|
-
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1415
|
+
- [#2576](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2576)
|
|
1416
|
+
[`fc83c36503`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fc83c36503) - Update
|
|
1417
|
+
translation files via Traduki build
|
|
1403
1418
|
|
|
1404
1419
|
## 12.4.2
|
|
1405
1420
|
|
|
1406
1421
|
### Patch Changes
|
|
1407
1422
|
|
|
1408
|
-
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1423
|
+
- [#2891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2891)
|
|
1424
|
+
[`39faba6e98`](https://bitbucket.org/atlassian/atlassian-frontend/commits/39faba6e98) - Update all
|
|
1425
|
+
the theme imports to something tree-shakable
|
|
1411
1426
|
|
|
1412
1427
|
## 12.4.1
|
|
1413
1428
|
|
|
1414
1429
|
### Patch Changes
|
|
1415
1430
|
|
|
1416
|
-
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
-
|
|
1420
|
-
|
|
1421
|
-
-
|
|
1431
|
+
- [#2137](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2137)
|
|
1432
|
+
[`54d82b49f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54d82b49f0) - Remove
|
|
1433
|
+
unused dependencies
|
|
1434
|
+
- [`baaad91b65`](https://bitbucket.org/atlassian/atlassian-frontend/commits/baaad91b65) - Updated to
|
|
1435
|
+
use the latest and more performant version of `@atlaskit/avatar`
|
|
1436
|
+
- Updated dependencies
|
|
1422
1437
|
|
|
1423
1438
|
## 12.4.0
|
|
1424
1439
|
|
|
1425
1440
|
### Minor Changes
|
|
1426
1441
|
|
|
1427
|
-
-
|
|
1442
|
+
- [minor][e981669ba5](https://bitbucket.org/atlassian/atlassian-frontend/commits/e981669ba5):
|
|
1428
1443
|
|
|
1429
|
-
|
|
1430
|
-
|
|
1444
|
+
Adds a new prop to actions: link. The link provided will be used to provide basic web link
|
|
1445
|
+
functionality to the button (eg. URL preview, open link in new tab, etc.).
|
|
1431
1446
|
|
|
1432
1447
|
### Patch Changes
|
|
1433
1448
|
|
|
1434
|
-
-
|
|
1449
|
+
- [patch][9957801602](https://bitbucket.org/atlassian/atlassian-frontend/commits/9957801602):
|
|
1435
1450
|
|
|
1436
|
-
|
|
1437
|
-
|
|
1451
|
+
clear all timeout callbacks- Updated dependencies
|
|
1452
|
+
[66dcced7a0](https://bitbucket.org/atlassian/atlassian-frontend/commits/66dcced7a0):
|
|
1438
1453
|
|
|
1439
|
-
-
|
|
1440
|
-
|
|
1441
|
-
-
|
|
1442
|
-
|
|
1443
|
-
-
|
|
1444
|
-
|
|
1445
|
-
-
|
|
1446
|
-
|
|
1447
|
-
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1454
|
+
- Updated dependencies
|
|
1455
|
+
[fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
|
|
1456
|
+
- Updated dependencies
|
|
1457
|
+
[0732eedea7](https://bitbucket.org/atlassian/atlassian-frontend/commits/0732eedea7):
|
|
1458
|
+
- Updated dependencies
|
|
1459
|
+
[fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
|
|
1460
|
+
- Updated dependencies
|
|
1461
|
+
[eea5e9bd8c](https://bitbucket.org/atlassian/atlassian-frontend/commits/eea5e9bd8c):
|
|
1462
|
+
- Updated dependencies
|
|
1463
|
+
[fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
|
|
1464
|
+
- @atlaskit/docs@8.4.0
|
|
1465
|
+
- @atlaskit/icon@20.1.0
|
|
1466
|
+
- @atlaskit/util-data-test@13.1.2
|
|
1467
|
+
- @atlaskit/avatar@17.1.9
|
|
1468
|
+
- @atlaskit/button@13.3.9
|
|
1469
|
+
- @atlaskit/dynamic-table@13.7.2
|
|
1470
|
+
- @atlaskit/lozenge@9.1.6
|
|
1471
|
+
- @atlaskit/spinner@12.1.6
|
|
1457
1472
|
|
|
1458
1473
|
## 12.3.8
|
|
1459
1474
|
|
|
1460
1475
|
### Patch Changes
|
|
1461
1476
|
|
|
1462
|
-
-
|
|
1477
|
+
- [patch][c913bb88f4](https://bitbucket.org/atlassian/atlassian-frontend/commits/c913bb88f4):
|
|
1463
1478
|
|
|
1464
|
-
|
|
1479
|
+
quickfix to kill stale timeouts
|
|
1465
1480
|
|
|
1466
1481
|
## 12.3.7
|
|
1467
1482
|
|
|
1468
1483
|
### Patch Changes
|
|
1469
1484
|
|
|
1470
|
-
-
|
|
1485
|
+
- [patch][6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
|
|
1471
1486
|
|
|
1472
|
-
|
|
1473
|
-
|
|
1487
|
+
Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
|
|
1488
|
+
[6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
|
|
1474
1489
|
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1490
|
+
- @atlaskit/docs@8.3.2
|
|
1491
|
+
- @atlaskit/avatar@17.1.7
|
|
1492
|
+
- @atlaskit/button@13.3.7
|
|
1493
|
+
- @atlaskit/dynamic-table@13.6.2
|
|
1494
|
+
- @atlaskit/icon@20.0.1
|
|
1495
|
+
- @atlaskit/layer@8.0.1
|
|
1496
|
+
- @atlaskit/lozenge@9.1.4
|
|
1497
|
+
- @atlaskit/popper@3.1.11
|
|
1498
|
+
- @atlaskit/portal@3.1.6
|
|
1499
|
+
- @atlaskit/spinner@12.1.4
|
|
1500
|
+
- @atlaskit/theme@9.5.1
|
|
1501
|
+
- @atlaskit/util-data-test@13.1.1
|
|
1487
1502
|
|
|
1488
1503
|
## 12.3.6
|
|
1489
1504
|
|
|
1490
1505
|
### Patch Changes
|
|
1491
1506
|
|
|
1492
|
-
-
|
|
1493
|
-
|
|
1494
|
-
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1507
|
+
- Updated dependencies
|
|
1508
|
+
[c0102a3ea2](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0102a3ea2):
|
|
1509
|
+
- Updated dependencies
|
|
1510
|
+
[b9dc265bc9](https://bitbucket.org/atlassian/atlassian-frontend/commits/b9dc265bc9):
|
|
1511
|
+
- @atlaskit/icon@20.0.0
|
|
1512
|
+
- @atlaskit/layer@8.0.0
|
|
1513
|
+
- @atlaskit/avatar@17.1.6
|
|
1514
|
+
- @atlaskit/docs@8.3.1
|
|
1515
|
+
- @atlaskit/button@13.3.6
|
|
1516
|
+
- @atlaskit/portal@3.1.5
|
|
1502
1517
|
|
|
1503
1518
|
## 12.3.5
|
|
1504
1519
|
|
|
1505
1520
|
### Patch Changes
|
|
1506
1521
|
|
|
1507
|
-
-
|
|
1522
|
+
- [patch][f9c291923c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f9c291923c):
|
|
1508
1523
|
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1524
|
+
Corrects the type exports for typography, colors, elevation and layers. If you were doing any
|
|
1525
|
+
dynamic code it may break you. Refer to the
|
|
1526
|
+
[upgrade guide](/packages/core/theme/docs/upgrade-guide) for help upgrading.- Updated dependencies
|
|
1527
|
+
[c1d4898af5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c1d4898af5):
|
|
1513
1528
|
|
|
1514
|
-
-
|
|
1515
|
-
|
|
1516
|
-
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1529
|
+
- Updated dependencies
|
|
1530
|
+
[3c0f6feee5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3c0f6feee5):
|
|
1531
|
+
- Updated dependencies
|
|
1532
|
+
[f9c291923c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f9c291923c):
|
|
1533
|
+
- @atlaskit/icon@19.0.11
|
|
1534
|
+
- @atlaskit/theme@9.3.0
|
|
1535
|
+
- @atlaskit/portal@3.1.3
|
|
1521
1536
|
|
|
1522
1537
|
## 12.3.4
|
|
1523
1538
|
|
|
1524
1539
|
### Patch Changes
|
|
1525
1540
|
|
|
1526
|
-
-
|
|
1541
|
+
- [patch][d222c2b987](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d222c2b987):
|
|
1527
1542
|
|
|
1528
|
-
|
|
1529
|
-
|
|
1543
|
+
Theme has been converted to Typescript. Typescript consumers will now get static type safety. Flow
|
|
1544
|
+
types are no longer provided.
|
|
1530
1545
|
|
|
1531
|
-
|
|
1546
|
+
### Breaking
|
|
1532
1547
|
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1548
|
+
** getTokens props changes ** When defining the value function passed into a ThemeProvider, the
|
|
1549
|
+
getTokens parameter cannot be called without props; if no props are provided an empty object `{}`
|
|
1550
|
+
must be passed in:
|
|
1536
1551
|
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1552
|
+
```javascript
|
|
1553
|
+
<CustomTheme.Provider
|
|
1554
|
+
value={t => ({ ...t(), backgroundColor: '#333'})}
|
|
1555
|
+
>
|
|
1556
|
+
```
|
|
1542
1557
|
|
|
1543
|
-
|
|
1558
|
+
becomes:
|
|
1544
1559
|
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1560
|
+
```javascript
|
|
1561
|
+
<CustomTheme.Provider
|
|
1562
|
+
value={t => ({ ...t({}), backgroundColor: '#333'})}
|
|
1563
|
+
>
|
|
1564
|
+
```
|
|
1550
1565
|
|
|
1551
|
-
|
|
1552
|
-
|
|
1566
|
+
** Color palette changes ** Color palettes have been moved into their own file. Users will need to
|
|
1567
|
+
update imports from this:
|
|
1553
1568
|
|
|
1554
|
-
|
|
1555
|
-
|
|
1569
|
+
```javascript
|
|
1570
|
+
import { colors } from '@atlaskit/theme';
|
|
1556
1571
|
|
|
1557
|
-
|
|
1558
|
-
|
|
1572
|
+
colors.colorPalette('8');
|
|
1573
|
+
```
|
|
1559
1574
|
|
|
1560
|
-
|
|
1575
|
+
to this:
|
|
1561
1576
|
|
|
1562
|
-
|
|
1563
|
-
|
|
1577
|
+
```javascript
|
|
1578
|
+
import { colorPalette } from '@atlaskit/theme';
|
|
1564
1579
|
|
|
1565
|
-
|
|
1566
|
-
|
|
1580
|
+
colorPalette.colorPalette('8');
|
|
1581
|
+
```
|
|
1567
1582
|
|
|
1568
|
-
|
|
1583
|
+
or for multi entry-point users:
|
|
1569
1584
|
|
|
1570
|
-
|
|
1571
|
-
|
|
1585
|
+
```javascript
|
|
1586
|
+
import * as colors from '@atlaskit/theme/colors';
|
|
1572
1587
|
|
|
1573
|
-
|
|
1574
|
-
|
|
1588
|
+
colors.colorPalette('8');
|
|
1589
|
+
```
|
|
1575
1590
|
|
|
1576
|
-
|
|
1591
|
+
to this:
|
|
1577
1592
|
|
|
1578
|
-
|
|
1579
|
-
|
|
1593
|
+
```javascript
|
|
1594
|
+
import * as colorPalettes from '@atlaskit/theme/color-palette';
|
|
1580
1595
|
|
|
1581
|
-
|
|
1582
|
-
|
|
1596
|
+
colorPalettes.colorPalette('8');
|
|
1597
|
+
```
|
|
1583
1598
|
|
|
1584
1599
|
## 12.3.3
|
|
1585
1600
|
|
|
1586
|
-
-
|
|
1587
|
-
|
|
1588
|
-
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1601
|
+
- Updated dependencies
|
|
1602
|
+
[bd94b1d552](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bd94b1d552):
|
|
1603
|
+
- Updated dependencies
|
|
1604
|
+
[ae4f336a3a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ae4f336a3a):
|
|
1605
|
+
- @atlaskit/util-data-test@13.0.0
|
|
1606
|
+
- @atlaskit/i18n-tools@0.6.0
|
|
1592
1607
|
|
|
1593
1608
|
## 12.3.2
|
|
1594
1609
|
|
|
1595
1610
|
### Patch Changes
|
|
1596
1611
|
|
|
1597
|
-
-
|
|
1612
|
+
- [patch][f86839ca4e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f86839ca4e):
|
|
1598
1613
|
|
|
1599
|
-
|
|
1614
|
+
@atlaskit/portal had an issue in IE11 and this is fixed in 3.1.2
|
|
1600
1615
|
|
|
1601
1616
|
## 12.3.1
|
|
1602
1617
|
|
|
1603
1618
|
### Patch Changes
|
|
1604
1619
|
|
|
1605
|
-
-
|
|
1620
|
+
- [patch][35d2229b2a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/35d2229b2a):
|
|
1606
1621
|
|
|
1607
|
-
|
|
1622
|
+
Adding missing license to packages and update to Copyright 2019 Atlassian Pty Ltd.
|
|
1608
1623
|
|
|
1609
1624
|
## 12.3.0
|
|
1610
1625
|
|
|
1611
1626
|
### Minor Changes
|
|
1612
1627
|
|
|
1613
|
-
-
|
|
1628
|
+
- [minor][84bedb23c4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/84bedb23c4):
|
|
1614
1629
|
|
|
1615
|
-
|
|
1630
|
+
Export profile-cards withOuterListeners wrapper
|
|
1616
1631
|
|
|
1617
1632
|
## 12.2.0
|
|
1618
1633
|
|
|
1619
1634
|
### Minor Changes
|
|
1620
1635
|
|
|
1621
|
-
-
|
|
1636
|
+
- [minor][8a3c534ec6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8a3c534ec6):
|
|
1622
1637
|
|
|
1623
|
-
|
|
1638
|
+
Export show and hide delay times of profile card trigger
|
|
1624
1639
|
|
|
1625
1640
|
## 12.1.0
|
|
1626
1641
|
|
|
1627
1642
|
### Minor Changes
|
|
1628
1643
|
|
|
1629
|
-
-
|
|
1644
|
+
- [minor][16bf116576](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/16bf116576):
|
|
1630
1645
|
|
|
1631
|
-
|
|
1646
|
+
Increased show/hide delay times for ProfileCardTrigger
|
|
1632
1647
|
|
|
1633
1648
|
## 12.0.9
|
|
1634
1649
|
|
|
1635
1650
|
### Patch Changes
|
|
1636
1651
|
|
|
1637
|
-
-
|
|
1652
|
+
- [patch][8d0f37c23e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8d0f37c23e):
|
|
1638
1653
|
|
|
1639
|
-
|
|
1640
|
-
|
|
1654
|
+
@atlaskit/avatar has been converted to Typescript. Typescript consumers will now get static type
|
|
1655
|
+
safety. Flow types are no longer provided. No API or behavioural changes.
|
|
1641
1656
|
|
|
1642
1657
|
## 12.0.8
|
|
1643
1658
|
|
|
1644
1659
|
### Patch Changes
|
|
1645
1660
|
|
|
1646
|
-
-
|
|
1661
|
+
- [patch][02f8d986b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/02f8d986b5):
|
|
1647
1662
|
|
|
1648
|
-
|
|
1663
|
+
ProfileCardResourced should trigger analytics event when having error
|
|
1649
1664
|
|
|
1650
1665
|
## 12.0.7
|
|
1651
1666
|
|
|
1652
1667
|
### Patch Changes
|
|
1653
1668
|
|
|
1654
|
-
-
|
|
1669
|
+
- [patch][875282da30](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/875282da30):
|
|
1655
1670
|
|
|
1656
|
-
|
|
1671
|
+
Fix a bug which causes ProfileCard triggers viewed analytics event twice
|
|
1657
1672
|
|
|
1658
1673
|
## 12.0.6
|
|
1659
1674
|
|
|
1660
1675
|
### Patch Changes
|
|
1661
1676
|
|
|
1662
|
-
-
|
|
1677
|
+
- [patch][097b696613](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/097b696613):
|
|
1663
1678
|
|
|
1664
|
-
|
|
1665
|
-
|
|
1679
|
+
Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving
|
|
1680
|
+
non-relative imports as relative imports
|
|
1666
1681
|
|
|
1667
1682
|
## 12.0.5
|
|
1668
1683
|
|
|
1669
1684
|
### Patch Changes
|
|
1670
1685
|
|
|
1671
|
-
-
|
|
1686
|
+
- [patch][688f2957ca](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/688f2957ca):
|
|
1672
1687
|
|
|
1673
|
-
|
|
1688
|
+
Fixes various TypeScript errors which were previously failing silently
|
|
1674
1689
|
|
|
1675
1690
|
## 12.0.4
|
|
1676
1691
|
|
|
1677
|
-
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1692
|
+
- Updated dependencies
|
|
1693
|
+
[ebfeb03eb7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ebfeb03eb7):
|
|
1694
|
+
- @atlaskit/popper@3.0.0
|
|
1680
1695
|
|
|
1681
1696
|
## 12.0.3
|
|
1682
1697
|
|
|
1683
1698
|
### Patch Changes
|
|
1684
1699
|
|
|
1685
|
-
-
|
|
1700
|
+
- [patch][6742fbf2cc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6742fbf2cc):
|
|
1686
1701
|
|
|
1687
|
-
|
|
1702
|
+
bugfix, fixes missing version.json file
|
|
1688
1703
|
|
|
1689
1704
|
## 12.0.2
|
|
1690
1705
|
|
|
1691
1706
|
### Patch Changes
|
|
1692
1707
|
|
|
1693
|
-
-
|
|
1708
|
+
- [patch][18dfac7332](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/18dfac7332):
|
|
1694
1709
|
|
|
1695
|
-
|
|
1710
|
+
In this PR, we are:
|
|
1696
1711
|
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1712
|
+
- Re-introducing dist build folders
|
|
1713
|
+
- Adding back cjs
|
|
1714
|
+
- Replacing es5 by cjs and es2015 by esm
|
|
1715
|
+
- Creating folders at the root for entry-points
|
|
1716
|
+
- Removing the generation of the entry-points at the root Please see this
|
|
1717
|
+
[ticket](https://product-fabric.atlassian.net/browse/BUILDTOOLS-118) or this
|
|
1718
|
+
[page](https://hello.atlassian.net/wiki/spaces/FED/pages/452325500/Finishing+Atlaskit+multiple+entry+points)
|
|
1719
|
+
for further details
|
|
1705
1720
|
|
|
1706
1721
|
## 12.0.1
|
|
1707
1722
|
|
|
1708
|
-
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1723
|
+
- Updated dependencies
|
|
1724
|
+
[06326ef3f7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/06326ef3f7):
|
|
1725
|
+
- @atlaskit/docs@8.1.3
|
|
1726
|
+
- @atlaskit/avatar@16.0.6
|
|
1727
|
+
- @atlaskit/button@13.0.9
|
|
1728
|
+
- @atlaskit/portal@3.0.7
|
|
1729
|
+
- @atlaskit/icon@19.0.0
|
|
1715
1730
|
|
|
1716
1731
|
## 12.0.0
|
|
1717
1732
|
|
|
1718
1733
|
### Major Changes
|
|
1719
1734
|
|
|
1720
|
-
-
|
|
1735
|
+
- [major][2b333a4c6d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2b333a4c6d):
|
|
1721
1736
|
|
|
1722
|
-
|
|
1723
|
-
|
|
1737
|
+
update api types; dispay user active state in ProfilecardResourced; change trigger component
|
|
1738
|
+
display to inherit
|
|
1724
1739
|
|
|
1725
1740
|
## 11.0.1
|
|
1726
1741
|
|
|
1727
1742
|
### Patch Changes
|
|
1728
1743
|
|
|
1729
|
-
-
|
|
1744
|
+
- [patch][0b87683d6c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0b87683d6c):
|
|
1730
1745
|
|
|
1731
|
-
|
|
1746
|
+
fix unbound method in ProfilecardTrigger component
|
|
1732
1747
|
|
|
1733
1748
|
## 11.0.0
|
|
1734
1749
|
|
|
1735
1750
|
### Major Changes
|
|
1736
1751
|
|
|
1737
|
-
-
|
|
1752
|
+
- [major][a40f54404e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a40f54404e):
|
|
1738
1753
|
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1754
|
+
Profilecard is no longer internally wrapped by a react-intl IntlProvider. Consumers must now
|
|
1755
|
+
ensure to Profilecard is wrapped inside a IntlProvider and provide messages from
|
|
1756
|
+
@atlaskit/profilecard/i18n. See
|
|
1757
|
+
https://hello.atlassian.net/wiki/spaces/AtlasKit/pages/287632890/i18n+API
|
|
1743
1758
|
|
|
1744
1759
|
## 10.2.6
|
|
1745
1760
|
|
|
1746
|
-
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1761
|
+
- Updated dependencies
|
|
1762
|
+
[cfc3c8adb3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cfc3c8adb3):
|
|
1763
|
+
- @atlaskit/docs@8.1.2
|
|
1764
|
+
- @atlaskit/avatar@16.0.3
|
|
1765
|
+
- @atlaskit/button@13.0.8
|
|
1766
|
+
- @atlaskit/portal@3.0.3
|
|
1767
|
+
- @atlaskit/icon@18.0.0
|
|
1753
1768
|
|
|
1754
1769
|
## 10.2.5
|
|
1755
1770
|
|
|
1756
|
-
-
|
|
1771
|
+
- [patch][b0ef06c685](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b0ef06c685):
|
|
1757
1772
|
|
|
1758
|
-
|
|
1759
|
-
|
|
1773
|
+
- This is just a safety release in case anything strange happened in in the previous one. See Pull
|
|
1774
|
+
Request #5942 for details
|
|
1760
1775
|
|
|
1761
1776
|
## 10.2.4
|
|
1762
1777
|
|
|
1763
|
-
-
|
|
1764
|
-
|
|
1765
|
-
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1778
|
+
- Updated dependencies
|
|
1779
|
+
[215688984e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/215688984e):
|
|
1780
|
+
- Updated dependencies
|
|
1781
|
+
[dacfb81ca1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dacfb81ca1):
|
|
1782
|
+
- @atlaskit/button@13.0.4
|
|
1783
|
+
- @atlaskit/dynamic-table@13.0.1
|
|
1784
|
+
- @atlaskit/spinner@12.0.0
|
|
1785
|
+
- @atlaskit/portal@3.0.0
|
|
1771
1786
|
|
|
1772
1787
|
## 10.2.3
|
|
1773
1788
|
|
|
1774
|
-
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1789
|
+
- Updated dependencies
|
|
1790
|
+
[ed41cac6ac](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ed41cac6ac):
|
|
1791
|
+
- @atlaskit/theme@9.0.3
|
|
1792
|
+
- @atlaskit/lozenge@9.0.0
|
|
1778
1793
|
|
|
1779
1794
|
## 10.2.2
|
|
1780
1795
|
|
|
1781
|
-
-
|
|
1796
|
+
- [patch][afd34e36b0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/afd34e36b0):
|
|
1782
1797
|
|
|
1783
|
-
|
|
1798
|
+
- Hide public name when it matches the full name
|
|
1784
1799
|
|
|
1785
1800
|
## 10.2.1
|
|
1786
1801
|
|
|
1787
|
-
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1802
|
+
- Updated dependencies
|
|
1803
|
+
[3d95467c4b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3d95467c4b):
|
|
1804
|
+
- @atlaskit/icon@17.0.1
|
|
1805
|
+
- @atlaskit/dynamic-table@13.0.0
|
|
1791
1806
|
|
|
1792
1807
|
## 10.2.0
|
|
1793
1808
|
|
|
1794
|
-
-
|
|
1809
|
+
- [minor][e7d7fe8252](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7d7fe8252):
|
|
1795
1810
|
|
|
1796
|
-
|
|
1797
|
-
|
|
1811
|
+
- Make full name and public name in the same line. Remove `@` symbol in front of public name.
|
|
1812
|
+
Remove mention icon
|
|
1798
1813
|
|
|
1799
1814
|
## 10.1.0
|
|
1800
1815
|
|
|
1801
|
-
-
|
|
1816
|
+
- [minor][5a49043dac](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5a49043dac):
|
|
1802
1817
|
|
|
1803
|
-
|
|
1818
|
+
- Enable strictPropertyInitialization in tsconfig.base
|
|
1804
1819
|
|
|
1805
1820
|
## 10.0.0
|
|
1806
1821
|
|
|
1807
|
-
-
|
|
1822
|
+
- [major][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
|
|
1808
1823
|
|
|
1809
|
-
|
|
1810
|
-
|
|
1824
|
+
- Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use
|
|
1825
|
+
this package, please ensure you use at least this version of react and react-dom.
|
|
1811
1826
|
|
|
1812
1827
|
## 9.0.5
|
|
1813
1828
|
|
|
1814
|
-
-
|
|
1829
|
+
- [patch][d3cad2622e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d3cad2622e):
|
|
1815
1830
|
|
|
1816
|
-
|
|
1831
|
+
- Removes babel-runtime in favour of @babel/runtime
|
|
1817
1832
|
|
|
1818
1833
|
## 9.0.4
|
|
1819
1834
|
|
|
1820
|
-
-
|
|
1821
|
-
|
|
1822
|
-
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1835
|
+
- Updated dependencies
|
|
1836
|
+
[5b6b4d6a0f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5b6b4d6a0f):
|
|
1837
|
+
- Updated dependencies
|
|
1838
|
+
[8b5f052003](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8b5f052003):
|
|
1839
|
+
- @atlaskit/portal@1.0.0
|
|
1840
|
+
- @atlaskit/popper@1.0.0
|
|
1826
1841
|
|
|
1827
1842
|
## 9.0.3
|
|
1828
1843
|
|
|
1829
|
-
-
|
|
1844
|
+
- [patch][50e8c82ec4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/50e8c82ec4):
|
|
1830
1845
|
|
|
1831
|
-
|
|
1846
|
+
- index.ts is now ignored when published to npm to avoid ambiguity between ts and js files
|
|
1832
1847
|
|
|
1833
1848
|
## 9.0.2
|
|
1834
1849
|
|
|
1835
|
-
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1850
|
+
- Updated dependencies
|
|
1851
|
+
[9c0b4744be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0b4744be):
|
|
1852
|
+
- @atlaskit/docs@7.0.3
|
|
1853
|
+
- @atlaskit/avatar@15.0.4
|
|
1854
|
+
- @atlaskit/button@12.0.3
|
|
1855
|
+
- @atlaskit/dynamic-table@11.0.3
|
|
1856
|
+
- @atlaskit/icon@16.0.9
|
|
1857
|
+
- @atlaskit/lozenge@7.0.2
|
|
1858
|
+
- @atlaskit/popper@0.4.3
|
|
1859
|
+
- @atlaskit/spinner@10.0.7
|
|
1860
|
+
- @atlaskit/theme@8.1.7
|
|
1846
1861
|
|
|
1847
1862
|
## 9.0.1
|
|
1848
1863
|
|
|
1849
|
-
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1864
|
+
- Updated dependencies
|
|
1865
|
+
[1e826b2966](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e826b2966):
|
|
1866
|
+
- @atlaskit/docs@7.0.2
|
|
1867
|
+
- @atlaskit/avatar@15.0.3
|
|
1868
|
+
- @atlaskit/dynamic-table@11.0.2
|
|
1869
|
+
- @atlaskit/icon@16.0.8
|
|
1870
|
+
- @atlaskit/popper@0.4.2
|
|
1871
|
+
- @atlaskit/portal@0.3.1
|
|
1872
|
+
- @atlaskit/spinner@10.0.5
|
|
1873
|
+
- @atlaskit/theme@8.1.6
|
|
1874
|
+
- @atlaskit/button@12.0.0
|
|
1860
1875
|
|
|
1861
1876
|
## 9.0.0
|
|
1862
1877
|
|
|
1863
|
-
-
|
|
1878
|
+
- [major][bfca144ea5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bfca144ea5):
|
|
1864
1879
|
|
|
1865
|
-
|
|
1866
|
-
|
|
1880
|
+
- Refactored internal components. Moved to Typescript. Updated named exports. Updated type
|
|
1881
|
+
definitions.
|
|
1867
1882
|
|
|
1868
1883
|
## 8.0.2
|
|
1869
1884
|
|
|
1870
|
-
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1885
|
+
- Updated dependencies
|
|
1886
|
+
[9d5cc39394](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d5cc39394):
|
|
1887
|
+
- @atlaskit/docs@7.0.1
|
|
1888
|
+
- @atlaskit/avatar@15.0.1
|
|
1889
|
+
- @atlaskit/dynamic-table@11.0.1
|
|
1890
|
+
- @atlaskit/icon@16.0.5
|
|
1891
|
+
- @atlaskit/spinner@10.0.1
|
|
1892
|
+
- @atlaskit/theme@8.0.1
|
|
1893
|
+
- @atlaskit/i18n-tools@0.5.0
|
|
1894
|
+
- @atlaskit/button@11.0.0
|
|
1895
|
+
- @atlaskit/util-data-test@11.0.0
|
|
1881
1896
|
|
|
1882
1897
|
## 8.0.1
|
|
1883
1898
|
|
|
1884
|
-
-
|
|
1899
|
+
- [patch][9a0c34d490](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9a0c34d490):
|
|
1885
1900
|
|
|
1886
|
-
|
|
1901
|
+
- Fixes package.json to not exclude built files
|
|
1887
1902
|
|
|
1888
1903
|
## 8.0.0
|
|
1889
1904
|
|
|
1890
|
-
-
|
|
1905
|
+
- [major][dbff4fdcf9](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dbff4fdcf9):
|
|
1891
1906
|
|
|
1892
|
-
|
|
1907
|
+
- Remove presence from profilecard now that users cannot use Stride to control it
|
|
1893
1908
|
|
|
1894
1909
|
## 7.0.0
|
|
1895
1910
|
|
|
1896
|
-
-
|
|
1911
|
+
- [major][76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
|
|
1897
1912
|
|
|
1898
|
-
|
|
1913
|
+
- Drop ES5 from all the flow modules
|
|
1899
1914
|
|
|
1900
|
-
|
|
1915
|
+
### Dropping CJS support in all @atlaskit packages
|
|
1901
1916
|
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1917
|
+
As a breaking change, all @atlaskit packages will be dropping cjs distributions and will only
|
|
1918
|
+
distribute esm. This means all distributed code will be transpiled, but will still contain
|
|
1919
|
+
`import` and `export` declarations.
|
|
1905
1920
|
|
|
1906
|
-
|
|
1907
|
-
e.g:
|
|
1921
|
+
The major reason for doing this is to allow us to support multiple entry points in packages, e.g:
|
|
1908
1922
|
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1923
|
+
```js
|
|
1924
|
+
import colors from `@atlaskit/theme/colors`;
|
|
1925
|
+
```
|
|
1912
1926
|
|
|
1913
|
-
|
|
1927
|
+
Previously this was sort of possible for consumers by doing something like:
|
|
1914
1928
|
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1929
|
+
```js
|
|
1930
|
+
import colors from `@atlaskit/theme/dist/esm/colors`;
|
|
1931
|
+
```
|
|
1918
1932
|
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1933
|
+
This has a couple of issues. 1, it treats the file system as API making internal refactors harder,
|
|
1934
|
+
we have to worry about how consumers might be using things that aren't _actually_ supposed to be
|
|
1935
|
+
used. 2. We are unable to do this _internally_ in @atlaskit packages. This leads to lots of
|
|
1936
|
+
packages bundling all of theme, just to use a single color, especially in situations where tree
|
|
1937
|
+
shaking fails.
|
|
1924
1938
|
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1939
|
+
To support being able to use multiple entrypoints internally, we unfortunately cannot have
|
|
1940
|
+
multiple distributions as they would need to have very different imports from of their own
|
|
1941
|
+
internal dependencies.
|
|
1928
1942
|
|
|
1929
|
-
|
|
1930
|
-
|
|
1943
|
+
ES Modules are widely supported by all modern bundlers and can be worked around in node
|
|
1944
|
+
environments.
|
|
1931
1945
|
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1946
|
+
We may choose to revisit this solution in the future if we find any unintended condequences, but
|
|
1947
|
+
we see this as a pretty sane path forward which should lead to some major bundle size decreases,
|
|
1948
|
+
saner API's and simpler package architecture.
|
|
1935
1949
|
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1950
|
+
Please reach out to #fabric-build (if in Atlassian) or create an issue in
|
|
1951
|
+
[Design System Support](https://ecosystem.atlassian.net/secure/CreateIssue.jspa?pid=24670) (for
|
|
1952
|
+
external) if you have any questions or queries about this.
|
|
1939
1953
|
|
|
1940
1954
|
## 6.2.0
|
|
1941
1955
|
|
|
1942
|
-
-
|
|
1956
|
+
- [minor][e0e5dd69a7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e0e5dd69a7):
|
|
1943
1957
|
|
|
1944
|
-
|
|
1945
|
-
"customMessageForDisabledAccount"
|
|
1958
|
+
- Support 2 new props "hasStatusLozengeForDisabledAccount" and "customMessageForDisabledAccount"
|
|
1946
1959
|
|
|
1947
1960
|
## 6.1.5
|
|
1948
1961
|
|
|
1949
|
-
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1962
|
+
- Updated dependencies
|
|
1963
|
+
[d7ef59d432](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d7ef59d432):
|
|
1964
|
+
- @atlaskit/docs@6.0.1
|
|
1965
|
+
- @atlaskit/avatar@14.1.8
|
|
1966
|
+
- @atlaskit/button@10.1.2
|
|
1967
|
+
- @atlaskit/icon@16.0.0
|
|
1955
1968
|
|
|
1956
1969
|
## 6.1.4
|
|
1957
1970
|
|
|
1958
|
-
-
|
|
1971
|
+
- [patch][ba95c0e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ba95c0e):
|
|
1959
1972
|
|
|
1960
|
-
|
|
1973
|
+
- Remove typescript type InjectedIntlProps from flow js code
|
|
1961
1974
|
|
|
1962
1975
|
## 6.1.3
|
|
1963
1976
|
|
|
1964
|
-
-
|
|
1977
|
+
- [patch][3ef5292](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3ef5292):
|
|
1965
1978
|
|
|
1966
|
-
|
|
1979
|
+
- Include type definitions in npm package
|
|
1967
1980
|
|
|
1968
1981
|
## 6.1.2
|
|
1969
1982
|
|
|
1970
|
-
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1983
|
+
- Updated dependencies [58b84fa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/58b84fa):
|
|
1984
|
+
- @atlaskit/avatar@14.1.7
|
|
1985
|
+
- @atlaskit/button@10.1.1
|
|
1986
|
+
- @atlaskit/dynamic-table@10.0.22
|
|
1987
|
+
- @atlaskit/icon@15.0.2
|
|
1988
|
+
- @atlaskit/layer@5.0.10
|
|
1989
|
+
- @atlaskit/lozenge@6.2.4
|
|
1990
|
+
- @atlaskit/spinner@9.0.13
|
|
1991
|
+
- @atlaskit/theme@7.0.1
|
|
1992
|
+
- @atlaskit/util-data-test@10.0.25
|
|
1993
|
+
- @atlaskit/docs@6.0.0
|
|
1981
1994
|
|
|
1982
1995
|
## 6.1.1
|
|
1983
1996
|
|
|
1984
|
-
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1997
|
+
- Updated dependencies [d13242d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d13242d):
|
|
1998
|
+
- @atlaskit/docs@5.2.3
|
|
1999
|
+
- @atlaskit/button@10.0.4
|
|
2000
|
+
- @atlaskit/dynamic-table@10.0.20
|
|
2001
|
+
- @atlaskit/icon@15.0.1
|
|
2002
|
+
- @atlaskit/spinner@9.0.12
|
|
2003
|
+
- @atlaskit/theme@7.0.0
|
|
2004
|
+
- @atlaskit/avatar@14.1.6
|
|
2005
|
+
- @atlaskit/lozenge@6.2.3
|
|
1993
2006
|
|
|
1994
2007
|
## 6.1.0
|
|
1995
2008
|
|
|
1996
|
-
-
|
|
2009
|
+
- [minor][a2da489](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a2da489):
|
|
1997
2010
|
|
|
1998
|
-
|
|
2011
|
+
- - wrap profile card in IntlProvider and support i18n
|
|
1999
2012
|
|
|
2000
2013
|
## 6.0.3
|
|
2001
2014
|
|
|
2002
|
-
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2015
|
+
- Updated dependencies [ab9b69c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ab9b69c):
|
|
2016
|
+
- @atlaskit/docs@5.2.2
|
|
2017
|
+
- @atlaskit/avatar@14.1.5
|
|
2018
|
+
- @atlaskit/button@10.0.1
|
|
2019
|
+
- @atlaskit/icon@15.0.0
|
|
2007
2020
|
|
|
2008
2021
|
## 6.0.2
|
|
2009
2022
|
|
|
2010
|
-
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2023
|
+
- Updated dependencies [6998f11](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6998f11):
|
|
2024
|
+
- @atlaskit/docs@5.2.1
|
|
2025
|
+
- @atlaskit/avatar@14.1.4
|
|
2026
|
+
- @atlaskit/dynamic-table@10.0.18
|
|
2027
|
+
- @atlaskit/icon@14.6.1
|
|
2028
|
+
- @atlaskit/spinner@9.0.11
|
|
2029
|
+
- @atlaskit/theme@6.2.1
|
|
2030
|
+
- @atlaskit/button@10.0.0
|
|
2018
2031
|
|
|
2019
2032
|
## 6.0.1
|
|
2020
2033
|
|
|
2021
|
-
-
|
|
2034
|
+
- [patch][9d63842](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d63842):
|
|
2022
2035
|
|
|
2023
|
-
|
|
2036
|
+
- Fixed a bug where content is not rendered for cards of users whose accounts are closed
|
|
2024
2037
|
|
|
2025
2038
|
## 6.0.0
|
|
2026
2039
|
|
|
2027
|
-
-
|
|
2040
|
+
- [major][9c0844d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0844d):
|
|
2028
2041
|
|
|
2029
|
-
|
|
2042
|
+
- Replace "isActive" prop with new "status" prop and adding react-intl messages
|
|
2030
2043
|
|
|
2031
2044
|
## 5.0.0
|
|
2032
2045
|
|
|
2033
|
-
-
|
|
2046
|
+
- [major][a6dd6e3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a6dd6e3):
|
|
2034
2047
|
|
|
2035
|
-
|
|
2048
|
+
- Removed isCensored prop as this state no longer exists
|
|
2036
2049
|
|
|
2037
2050
|
## 4.0.10
|
|
2038
2051
|
|
|
2039
|
-
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2052
|
+
- [patch] Updated dependencies
|
|
2053
|
+
[65c6514](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/65c6514)
|
|
2054
|
+
- @atlaskit/docs@5.0.8
|
|
2055
|
+
- @atlaskit/avatar@14.0.11
|
|
2056
|
+
- @atlaskit/button@9.0.13
|
|
2057
|
+
- @atlaskit/icon@14.0.0
|
|
2045
2058
|
|
|
2046
2059
|
## 4.0.9
|
|
2047
2060
|
|
|
2048
|
-
-
|
|
2049
|
-
|
|
2061
|
+
- [patch] Remove promise polyfill to fix Jira SSR
|
|
2062
|
+
[e793f6e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e793f6e)
|
|
2050
2063
|
|
|
2051
2064
|
## 4.0.8
|
|
2052
2065
|
|
|
2053
|
-
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2066
|
+
- [patch] Updated dependencies
|
|
2067
|
+
[b12f7e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b12f7e6)
|
|
2068
|
+
- @atlaskit/util-data-test@10.0.7
|
|
2056
2069
|
|
|
2057
2070
|
## 4.0.7
|
|
2058
2071
|
|
|
2059
|
-
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2072
|
+
- [patch] Updated dependencies
|
|
2073
|
+
[df22ad8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/df22ad8)
|
|
2074
|
+
- @atlaskit/theme@6.0.0
|
|
2075
|
+
- @atlaskit/spinner@9.0.6
|
|
2076
|
+
- @atlaskit/icon@13.2.5
|
|
2077
|
+
- @atlaskit/dynamic-table@10.0.9
|
|
2078
|
+
- @atlaskit/button@9.0.6
|
|
2079
|
+
- @atlaskit/avatar@14.0.8
|
|
2080
|
+
- @atlaskit/docs@5.0.6
|
|
2068
2081
|
|
|
2069
2082
|
## 4.0.6
|
|
2070
2083
|
|
|
2071
|
-
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2084
|
+
- [patch] Updated dependencies
|
|
2085
|
+
[8242529](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8242529)
|
|
2086
|
+
- @atlaskit/layer@5.0.5
|
|
2074
2087
|
|
|
2075
2088
|
## 4.0.5
|
|
2076
2089
|
|
|
2077
|
-
-
|
|
2078
|
-
|
|
2079
|
-
-
|
|
2080
|
-
|
|
2090
|
+
- [patch] use size prop small when using icon component
|
|
2091
|
+
[27e074e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/27e074e)
|
|
2092
|
+
- [none] Updated dependencies
|
|
2093
|
+
[27e074e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/27e074e)
|
|
2081
2094
|
|
|
2082
2095
|
## 4.0.4
|
|
2083
2096
|
|
|
2084
|
-
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
+
- [patch] update the dependency of react-dom to 16.4.2 due to vulnerability in previous versions
|
|
2098
|
+
read https://reactjs.org/blog/2018/08/01/react-v-16-4-2.html for details
|
|
2099
|
+
[a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
|
|
2100
|
+
- [none] Updated dependencies
|
|
2101
|
+
[a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
|
|
2102
|
+
- @atlaskit/util-data-test@10.0.4
|
|
2103
|
+
- @atlaskit/dynamic-table@10.0.7
|
|
2104
|
+
- @atlaskit/button@9.0.5
|
|
2105
|
+
- @atlaskit/theme@5.1.3
|
|
2106
|
+
- @atlaskit/spinner@9.0.5
|
|
2107
|
+
- @atlaskit/layer@5.0.4
|
|
2108
|
+
- @atlaskit/icon@13.2.4
|
|
2109
|
+
- @atlaskit/avatar@14.0.6
|
|
2097
2110
|
|
|
2098
2111
|
## 4.0.3
|
|
2099
2112
|
|
|
2100
|
-
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
*
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
*
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
*
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
*
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
*
|
|
2117
|
-
|
|
2118
|
-
|
|
2113
|
+
- [patch] Bumping dependency on util-data-test
|
|
2114
|
+
[597e0bd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/597e0bd)
|
|
2115
|
+
|
|
2116
|
+
* [none] Updated dependencies
|
|
2117
|
+
[597e0bd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/597e0bd)
|
|
2118
|
+
- @atlaskit/util-data-test@10.0.3
|
|
2119
|
+
* [none] Updated dependencies
|
|
2120
|
+
[61df453](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/61df453)
|
|
2121
|
+
- @atlaskit/util-data-test@10.0.3
|
|
2122
|
+
* [none] Updated dependencies
|
|
2123
|
+
[812a39c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/812a39c)
|
|
2124
|
+
- @atlaskit/dynamic-table@10.0.6
|
|
2125
|
+
- @atlaskit/util-data-test@10.0.3
|
|
2126
|
+
* [none] Updated dependencies
|
|
2127
|
+
[c8eb097](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c8eb097)
|
|
2128
|
+
- @atlaskit/util-data-test@10.0.3
|
|
2129
|
+
* [none] Updated dependencies
|
|
2130
|
+
[d02746f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d02746f)
|
|
2131
|
+
- @atlaskit/util-data-test@10.0.3
|
|
2119
2132
|
|
|
2120
2133
|
## 4.0.2
|
|
2121
2134
|
|
|
2122
|
-
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2135
|
+
- [patch] Updated dependencies
|
|
2136
|
+
[acd86a1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/acd86a1)
|
|
2137
|
+
- @atlaskit/util-data-test@10.0.2
|
|
2138
|
+
- @atlaskit/icon@13.2.2
|
|
2139
|
+
- @atlaskit/dynamic-table@10.0.5
|
|
2140
|
+
- @atlaskit/button@9.0.4
|
|
2141
|
+
- @atlaskit/theme@5.1.2
|
|
2142
|
+
- @atlaskit/spinner@9.0.4
|
|
2143
|
+
- @atlaskit/docs@5.0.2
|
|
2144
|
+
- @atlaskit/layer@5.0.3
|
|
2145
|
+
- @atlaskit/avatar@14.0.5
|
|
2133
2146
|
|
|
2134
2147
|
## 4.0.1
|
|
2135
2148
|
|
|
2136
|
-
-
|
|
2137
|
-
|
|
2138
|
-
-
|
|
2139
|
-
|
|
2149
|
+
- [patch] Remove \$FlowFixMe, move styled-components to peerDependencies and move tests under src
|
|
2150
|
+
and a unit folder [36b595c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/36b595c)
|
|
2151
|
+
- [none] Updated dependencies
|
|
2152
|
+
[36b595c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/36b595c)
|
|
2140
2153
|
|
|
2141
2154
|
## 4.0.0
|
|
2142
2155
|
|
|
2143
|
-
-
|
|
2144
|
-
|
|
2145
|
-
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2156
|
+
- [major] Updates to React ^16.4.0
|
|
2157
|
+
[7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
|
|
2158
|
+
- [major] Updated dependencies
|
|
2159
|
+
[563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
|
|
2160
|
+
- @atlaskit/util-data-test@10.0.0
|
|
2161
|
+
- @atlaskit/dynamic-table@10.0.0
|
|
2162
|
+
- @atlaskit/button@9.0.0
|
|
2163
|
+
- @atlaskit/theme@5.0.0
|
|
2164
|
+
- @atlaskit/spinner@9.0.0
|
|
2165
|
+
- @atlaskit/docs@5.0.0
|
|
2166
|
+
- @atlaskit/layer@5.0.0
|
|
2167
|
+
- @atlaskit/icon@13.0.0
|
|
2168
|
+
- @atlaskit/avatar@14.0.0
|
|
2169
|
+
- [major] Updated dependencies
|
|
2170
|
+
[7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
|
|
2171
|
+
- @atlaskit/util-data-test@10.0.0
|
|
2172
|
+
- @atlaskit/dynamic-table@10.0.0
|
|
2173
|
+
- @atlaskit/button@9.0.0
|
|
2174
|
+
- @atlaskit/theme@5.0.0
|
|
2175
|
+
- @atlaskit/spinner@9.0.0
|
|
2176
|
+
- @atlaskit/docs@5.0.0
|
|
2177
|
+
- @atlaskit/layer@5.0.0
|
|
2178
|
+
- @atlaskit/icon@13.0.0
|
|
2179
|
+
- @atlaskit/avatar@14.0.0
|
|
2167
2180
|
|
|
2168
2181
|
## 3.13.4
|
|
2169
2182
|
|
|
2170
|
-
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
|
|
2175
|
-
-
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
|
|
2183
|
+
- [none] Updated dependencies
|
|
2184
|
+
[da63331](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/da63331)
|
|
2185
|
+
- @atlaskit/button@8.2.5
|
|
2186
|
+
- @atlaskit/dynamic-table@9.2.6
|
|
2187
|
+
- @atlaskit/avatar@13.0.0
|
|
2188
|
+
- [patch] Updated dependencies
|
|
2189
|
+
[7724115](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7724115)
|
|
2190
|
+
- @atlaskit/avatar@13.0.0
|
|
2191
|
+
- @atlaskit/button@8.2.5
|
|
2192
|
+
- @atlaskit/dynamic-table@9.2.6
|
|
2180
2193
|
|
|
2181
2194
|
## 3.13.3
|
|
2182
2195
|
|
|
2183
|
-
-
|
|
2184
|
-
|
|
2185
|
-
-
|
|
2186
|
-
|
|
2196
|
+
- [patch] Fix flow config and add back flow fix me
|
|
2197
|
+
[107da09](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/107da09)
|
|
2198
|
+
- [none] Updated dependencies
|
|
2199
|
+
[107da09](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/107da09)
|
|
2187
2200
|
|
|
2188
2201
|
## 3.13.2
|
|
2189
2202
|
|
|
2190
|
-
-
|
|
2191
|
-
|
|
2192
|
-
-
|
|
2193
|
-
|
|
2203
|
+
- [patch] Update package.json to point to correct build directories
|
|
2204
|
+
[2362f0b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2362f0b)
|
|
2205
|
+
- [none] Updated dependencies
|
|
2206
|
+
[2362f0b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2362f0b)
|
|
2194
2207
|
|
|
2195
2208
|
## 3.13.1
|
|
2196
2209
|
|
|
2197
|
-
-
|
|
2198
|
-
|
|
2199
|
-
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2210
|
+
- [patch] Migrate Profilecard to AKM2 DIR-553
|
|
2211
|
+
[9bac948](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9bac948)
|
|
2212
|
+
- [none] Updated dependencies
|
|
2213
|
+
[99446e3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/99446e3)
|
|
2214
|
+
- @atlaskit/docs@4.2.2
|
|
2215
|
+
- [none] Updated dependencies
|
|
2216
|
+
[9bac948](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9bac948)
|
|
2217
|
+
- @atlaskit/docs@4.2.2
|
|
2205
2218
|
|
|
2206
2219
|
## 3.12.3 (2017-12-13)
|
|
2207
2220
|
|
|
2208
|
-
-
|
|
2209
|
-
|
|
2221
|
+
- bug fix; cap profilecard cache age at 30 days
|
|
2222
|
+
([6e112c0](https://bitbucket.org/atlassian/atlaskit/commits/6e112c0))
|
|
2210
2223
|
|
|
2211
2224
|
## 3.12.2 (2017-12-06)
|
|
2212
2225
|
|
|
2213
|
-
-
|
|
2214
|
-
|
|
2226
|
+
- bug fix; add max-width to profilecard trigger to allow CSS truncation of children (issues closed:
|
|
2227
|
+
ak-3989) ([ad721a1](https://bitbucket.org/atlassian/atlaskit/commits/ad721a1))
|
|
2215
2228
|
|
|
2216
2229
|
## 3.12.1 (2017-11-27)
|
|
2217
2230
|
|
|
2218
|
-
-
|
|
2219
|
-
|
|
2231
|
+
- bug fix; fix profilecard error when user has null presenceMessage
|
|
2232
|
+
([b250e2b](https://bitbucket.org/atlassian/atlaskit/commits/b250e2b))
|
|
2220
2233
|
|
|
2221
2234
|
## 3.12.0 (2017-11-20)
|
|
2222
2235
|
|
|
2223
|
-
-
|
|
2224
|
-
|
|
2236
|
+
- feature; add presence message to profilecard (issues closed: dir-459)
|
|
2237
|
+
([a927c12](https://bitbucket.org/atlassian/atlaskit/commits/a927c12))
|
|
2225
2238
|
|
|
2226
2239
|
## 3.11.0 (2017-11-17)
|
|
2227
2240
|
|
|
2228
|
-
-
|
|
2229
|
-
|
|
2241
|
+
- feature; add support for focus state to profilecard (issues closed: dir-453)
|
|
2242
|
+
([51185f4](https://bitbucket.org/atlassian/atlaskit/commits/51185f4))
|
|
2230
2243
|
|
|
2231
2244
|
## 3.10.0 (2017-11-01)
|
|
2232
2245
|
|
|
2233
|
-
-
|
|
2234
|
-
|
|
2235
|
-
-
|
|
2236
|
-
|
|
2246
|
+
- bug fix; fix profilecard graphql api client (issues closed: dir-444)
|
|
2247
|
+
([8adce3a](https://bitbucket.org/atlassian/atlaskit/commits/8adce3a))
|
|
2248
|
+
- feature; add card states for deactivated and app users (issues closed: dir-436)
|
|
2249
|
+
([0343cb6](https://bitbucket.org/atlassian/atlaskit/commits/0343cb6))
|
|
2237
2250
|
|
|
2238
2251
|
## 3.9.0 (2017-10-27)
|
|
2239
2252
|
|
|
2240
|
-
-
|
|
2241
|
-
|
|
2253
|
+
- feature; add new profile data keys to graphql query
|
|
2254
|
+
([44d81d4](https://bitbucket.org/atlassian/atlaskit/commits/44d81d4))
|
|
2242
2255
|
|
|
2243
|
-
-
|
|
2244
|
-
|
|
2256
|
+
- feature; add predicate method to profile card actions (issues closed: dir-423)
|
|
2257
|
+
([2737016](https://bitbucket.org/atlassian/atlaskit/commits/2737016))
|
|
2245
2258
|
|
|
2246
2259
|
## 3.8.1 (2017-10-22)
|
|
2247
2260
|
|
|
2248
|
-
-
|
|
2249
|
-
|
|
2261
|
+
- bug fix; update styled-components dep and react peerDep
|
|
2262
|
+
([6a67bf8](https://bitbucket.org/atlassian/atlaskit/commits/6a67bf8))
|
|
2250
2263
|
|
|
2251
2264
|
## 3.8.0 (2017-10-16)
|
|
2252
2265
|
|
|
2253
|
-
-
|
|
2254
|
-
|
|
2266
|
+
- feature; add new detail label for a users email to the profilecard (issues closed: dir-324)
|
|
2267
|
+
([84f12aa](https://bitbucket.org/atlassian/atlaskit/commits/84f12aa))
|
|
2255
2268
|
|
|
2256
2269
|
## 3.7.4 (2017-10-12)
|
|
2257
2270
|
|
|
2258
|
-
-
|
|
2259
|
-
|
|
2271
|
+
- bug fix; fix dark mode colors for profilecard (issues closed: dir-413)
|
|
2272
|
+
([27a6981](https://bitbucket.org/atlassian/atlaskit/commits/27a6981))
|
|
2260
2273
|
|
|
2261
|
-
-
|
|
2262
|
-
|
|
2263
|
-
-
|
|
2264
|
-
|
|
2274
|
+
- bug fix; fix unit tests for profilecard (issues closed: dir-407)
|
|
2275
|
+
([9a488fe](https://bitbucket.org/atlassian/atlaskit/commits/9a488fe))
|
|
2276
|
+
- bug fix; refactor profilecard to styled components (issues closed: dir-407)
|
|
2277
|
+
([2a0a834](https://bitbucket.org/atlassian/atlaskit/commits/2a0a834))
|
|
2265
2278
|
|
|
2266
2279
|
## 3.7.3 (2017-10-10)
|
|
2267
2280
|
|
|
2268
|
-
-
|
|
2269
|
-
|
|
2270
|
-
-
|
|
2271
|
-
|
|
2281
|
+
- bug fix; align default status messages of profilecard with Stride (issues closed: dir-414)
|
|
2282
|
+
([4d65674](https://bitbucket.org/atlassian/atlaskit/commits/4d65674))
|
|
2283
|
+
- bug fix; bump dependeny versions for profilecard to latest (issues closed: dir-408)
|
|
2284
|
+
([839922d](https://bitbucket.org/atlassian/atlaskit/commits/839922d))
|
|
2272
2285
|
|
|
2273
2286
|
## 3.7.2 (2017-09-20)
|
|
2274
2287
|
|
|
2275
|
-
-
|
|
2276
|
-
|
|
2288
|
+
- bug fix; fix non array value of \`oneOf\` proptype in profilecard.jsx
|
|
2289
|
+
([39131f7](https://bitbucket.org/atlassian/atlaskit/commits/39131f7))
|
|
2277
2290
|
|
|
2278
2291
|
## 3.7.1 (2017-09-08)
|
|
2279
2292
|
|
|
2280
|
-
-
|
|
2281
|
-
|
|
2293
|
+
- bug fix; limit profilecards error types to the two available from the api (issues closed: dir-376)
|
|
2294
|
+
([b9b8532](https://bitbucket.org/atlassian/atlaskit/commits/b9b8532))
|
|
2282
2295
|
|
|
2283
2296
|
## 3.7.0 (2017-08-14)
|
|
2284
2297
|
|
|
2285
|
-
-
|
|
2286
|
-
|
|
2298
|
+
- feature; add not-found error state to profilecard (issues closed: dir-340)
|
|
2299
|
+
([8021368](https://bitbucket.org/atlassian/atlaskit/commits/8021368))
|
|
2287
2300
|
|
|
2288
2301
|
## 3.6.4 (2017-08-09)
|
|
2289
2302
|
|
|
2290
|
-
-
|
|
2291
|
-
|
|
2303
|
+
- bug fix; make profilecard type def also available through lerna link (issues closed: ed-2435)
|
|
2304
|
+
([fb15d63](https://bitbucket.org/atlassian/atlaskit/commits/fb15d63))
|
|
2292
2305
|
|
|
2293
|
-
*
|
|
2294
|
-
|
|
2306
|
+
* bug fix; Merged in fix/ED-2266-profile-card (pull request #3650) (issues closed: ed-2266)
|
|
2307
|
+
([2a5b88e](https://bitbucket.org/atlassian/atlaskit/commits/2a5b88e))
|
|
2295
2308
|
|
|
2296
2309
|
## 3.6.3 (2017-07-27)
|
|
2297
2310
|
|
|
2298
|
-
-
|
|
2299
|
-
|
|
2311
|
+
- fix; rename jsnext:main to jsnext:experimental:main temporarily
|
|
2312
|
+
([c7508e0](https://bitbucket.org/atlassian/atlaskit/commits/c7508e0))
|
|
2300
2313
|
|
|
2301
2314
|
## 3.6.2 (2017-07-25)
|
|
2302
2315
|
|
|
2303
|
-
-
|
|
2304
|
-
|
|
2316
|
+
- fix; use class transform in loose mode in babel to improve load performance in apps
|
|
2317
|
+
([fde719a](https://bitbucket.org/atlassian/atlaskit/commits/fde719a))
|
|
2305
2318
|
|
|
2306
2319
|
## 3.6.1 (2017-07-20)
|
|
2307
2320
|
|
|
2308
|
-
-
|
|
2309
|
-
|
|
2321
|
+
- fix; use \`title\` instead of \`position\` from directory data for job title
|
|
2322
|
+
([3d0864b](https://bitbucket.org/atlassian/atlaskit/commits/3d0864b))
|
|
2310
2323
|
|
|
2311
2324
|
## 3.6.0 (2017-07-18)
|
|
2312
2325
|
|
|
@@ -2314,94 +2327,94 @@
|
|
|
2314
2327
|
|
|
2315
2328
|
## 3.2.0 (2017-07-17)
|
|
2316
2329
|
|
|
2317
|
-
-
|
|
2318
|
-
|
|
2330
|
+
- feature; fix analytics event names for profilecard
|
|
2331
|
+
([2225d04](https://bitbucket.org/atlassian/atlaskit/commits/2225d04))
|
|
2319
2332
|
|
|
2320
2333
|
## 3.2.0 (2017-07-17)
|
|
2321
2334
|
|
|
2322
|
-
-
|
|
2323
|
-
|
|
2335
|
+
- fix; rerelease, failed prepublish scripts
|
|
2336
|
+
([5fd82f8](https://bitbucket.org/atlassian/atlaskit/commits/5fd82f8))
|
|
2324
2337
|
|
|
2325
2338
|
## 3.2.0 (2017-07-17)
|
|
2326
2339
|
|
|
2327
|
-
-
|
|
2328
|
-
|
|
2340
|
+
- feature; added ES module builds to dist and add jsnext:main to most ADG packages
|
|
2341
|
+
([ea76507](https://bitbucket.org/atlassian/atlaskit/commits/ea76507))
|
|
2329
2342
|
|
|
2330
2343
|
## 3.1.0 (2017-07-17)
|
|
2331
2344
|
|
|
2332
|
-
-
|
|
2333
|
-
|
|
2345
|
+
- feature; add trigger property to AkProfilecardTrigger (possible values: click, hover (defaul
|
|
2346
|
+
([6f7b508](https://bitbucket.org/atlassian/atlaskit/commits/6f7b508))
|
|
2334
2347
|
|
|
2335
2348
|
## 3.0.2 (2017-07-12)
|
|
2336
2349
|
|
|
2337
|
-
-
|
|
2338
|
-
|
|
2339
|
-
-
|
|
2340
|
-
|
|
2350
|
+
- fix; export modifyResponse for util-data-test
|
|
2351
|
+
([67d5784](https://bitbucket.org/atlassian/atlaskit/commits/67d5784))
|
|
2352
|
+
- fix; add prop-types as a dependency to avoid React 15.x warnings
|
|
2353
|
+
([92598eb](https://bitbucket.org/atlassian/atlaskit/commits/92598eb))
|
|
2341
2354
|
|
|
2342
2355
|
## 3.0.1 (2017-05-12)
|
|
2343
2356
|
|
|
2344
|
-
-
|
|
2345
|
-
|
|
2346
|
-
-
|
|
2347
|
-
|
|
2357
|
+
- fix; fix profilecard caching issue
|
|
2358
|
+
([53223a1](https://bitbucket.org/atlassian/atlaskit/commits/53223a1))
|
|
2359
|
+
- fix; add required cloudId props to stories
|
|
2360
|
+
([5aa1e8a](https://bitbucket.org/atlassian/atlaskit/commits/5aa1e8a))
|
|
2348
2361
|
|
|
2349
2362
|
## 3.0.0 (2017-05-10)
|
|
2350
2363
|
|
|
2351
2364
|
## 2.4.0 (2017-05-09)
|
|
2352
2365
|
|
|
2353
|
-
-
|
|
2354
|
-
|
|
2366
|
+
- fix; fix profilecards retry button to only show up when retry method is passed
|
|
2367
|
+
([4c67a6d](https://bitbucket.org/atlassian/atlaskit/commits/4c67a6d))
|
|
2355
2368
|
|
|
2356
|
-
*
|
|
2357
|
-
|
|
2358
|
-
*
|
|
2359
|
-
|
|
2369
|
+
* feature; stop render empty layer while profilecard is not visible anyway
|
|
2370
|
+
([8d56ab3](https://bitbucket.org/atlassian/atlaskit/commits/8d56ab3))
|
|
2371
|
+
* feature; use new GraphQL query in profilecard-client
|
|
2372
|
+
([66b846d](https://bitbucket.org/atlassian/atlaskit/commits/66b846d))
|
|
2360
2373
|
|
|
2361
|
-
-
|
|
2374
|
+
- breaking; cloudId is now required for resourced component
|
|
2362
2375
|
|
|
2363
2376
|
ISSUES CLOSED: DIR-248, DIR-249, DIR-250
|
|
2364
2377
|
|
|
2365
2378
|
## 2.3.2 (2017-04-27)
|
|
2366
2379
|
|
|
2367
|
-
-
|
|
2368
|
-
|
|
2380
|
+
- fix; update legal copy to be more clear. Not all modules include ADG license.
|
|
2381
|
+
([f3a945e](https://bitbucket.org/atlassian/atlaskit/commits/f3a945e))
|
|
2369
2382
|
|
|
2370
2383
|
## 2.3.1 (2017-04-26)
|
|
2371
2384
|
|
|
2372
|
-
-
|
|
2373
|
-
|
|
2385
|
+
- fix; update legal copy and fix broken links for component README on npm. New contribution and
|
|
2386
|
+
([0b3e454](https://bitbucket.org/atlassian/atlaskit/commits/0b3e454))
|
|
2374
2387
|
|
|
2375
2388
|
## 2.3.0 (2017-04-20)
|
|
2376
2389
|
|
|
2377
|
-
-
|
|
2378
|
-
|
|
2390
|
+
- feature; add analytics to profilecard component
|
|
2391
|
+
([77fa03e](https://bitbucket.org/atlassian/atlaskit/commits/77fa03e))
|
|
2379
2392
|
|
|
2380
2393
|
## 2.2.0 (2017-04-20)
|
|
2381
2394
|
|
|
2382
|
-
-
|
|
2383
|
-
|
|
2395
|
+
- feature; removed explicit style! imports, set style-loader in webpack config
|
|
2396
|
+
([891fc3c](https://bitbucket.org/atlassian/atlaskit/commits/891fc3c))
|
|
2384
2397
|
|
|
2385
2398
|
## 2.1.1 (2017-04-18)
|
|
2386
2399
|
|
|
2387
|
-
-
|
|
2388
|
-
|
|
2400
|
+
- fix; minor profilecard fixes for integration with Home
|
|
2401
|
+
([7140657](https://bitbucket.org/atlassian/atlaskit/commits/7140657))
|
|
2389
2402
|
|
|
2390
2403
|
## 2.1.0 (2017-04-12)
|
|
2391
2404
|
|
|
2392
|
-
-
|
|
2393
|
-
|
|
2405
|
+
- feature; add trigger wrapper component for profile cards
|
|
2406
|
+
([cff0f87](https://bitbucket.org/atlassian/atlaskit/commits/cff0f87))
|
|
2394
2407
|
|
|
2395
2408
|
## 2.0.0 (2017-03-31)
|
|
2396
2409
|
|
|
2397
2410
|
## 1.3.0 (2017-03-31)
|
|
2398
2411
|
|
|
2399
|
-
-
|
|
2400
|
-
|
|
2401
|
-
-
|
|
2402
|
-
|
|
2412
|
+
- feature; add LRU cache to AkProfileClient
|
|
2413
|
+
([cb34168](https://bitbucket.org/atlassian/atlaskit/commits/cb34168))
|
|
2414
|
+
- feature; add wrapper for height transition animation around profilecard
|
|
2415
|
+
([23cea8c](https://bitbucket.org/atlassian/atlaskit/commits/23cea8c))
|
|
2403
2416
|
|
|
2404
|
-
*
|
|
2417
|
+
* breaking; made resourceClient a required prop, resourceClients method names changed
|
|
2405
2418
|
|
|
2406
2419
|
ISSUES CLOSED: FAB-2671
|
|
2407
2420
|
|
|
@@ -2409,49 +2422,49 @@ ISSUES CLOSED: FAB-2671
|
|
|
2409
2422
|
|
|
2410
2423
|
## 1.2.3 (2017-03-21)
|
|
2411
2424
|
|
|
2412
|
-
-
|
|
2413
|
-
|
|
2425
|
+
- fix; maintainers for all the packages were added
|
|
2426
|
+
([261d00a](https://bitbucket.org/atlassian/atlaskit/commits/261d00a))
|
|
2414
2427
|
|
|
2415
2428
|
## 1.2.2 (2017-03-20)
|
|
2416
2429
|
|
|
2417
|
-
-
|
|
2418
|
-
|
|
2430
|
+
- fix; make sure profilecard has a minimum height even without any labels
|
|
2431
|
+
([88b07a5](https://bitbucket.org/atlassian/atlaskit/commits/88b07a5))
|
|
2419
2432
|
|
|
2420
2433
|
## 1.2.1 (2017-03-07)
|
|
2421
2434
|
|
|
2422
2435
|
## 1.2.0 (2017-03-02)
|
|
2423
2436
|
|
|
2424
|
-
-
|
|
2425
|
-
|
|
2437
|
+
- feature; fixing error component in profilecard
|
|
2438
|
+
([66f533c](https://bitbucket.org/atlassian/atlaskit/commits/66f533c))
|
|
2426
2439
|
|
|
2427
2440
|
## 1.1.2 (2017-02-28)
|
|
2428
2441
|
|
|
2429
|
-
-
|
|
2430
|
-
|
|
2431
|
-
-
|
|
2432
|
-
|
|
2433
|
-
-
|
|
2434
|
-
|
|
2442
|
+
- fix; adds warning to usage.md about editing readme
|
|
2443
|
+
([4496574](https://bitbucket.org/atlassian/atlaskit/commits/4496574))
|
|
2444
|
+
- fix; removes jsdoc annoations and moves content to usage.md
|
|
2445
|
+
([dc12a0d](https://bitbucket.org/atlassian/atlaskit/commits/dc12a0d))
|
|
2446
|
+
- fix; dummy commit to release stories
|
|
2447
|
+
([3df5d9f](https://bitbucket.org/atlassian/atlaskit/commits/3df5d9f))
|
|
2435
2448
|
|
|
2436
2449
|
## 1.1.1 (2017-02-27)
|
|
2437
2450
|
|
|
2438
|
-
-
|
|
2439
|
-
|
|
2440
|
-
-
|
|
2441
|
-
|
|
2451
|
+
- fix; change action button appearance
|
|
2452
|
+
([e13175f](https://bitbucket.org/atlassian/atlaskit/commits/e13175f))
|
|
2453
|
+
- empty commit to make components release themselves
|
|
2454
|
+
([5511fbe](https://bitbucket.org/atlassian/atlaskit/commits/5511fbe))
|
|
2442
2455
|
|
|
2443
2456
|
## 1.1.0 (2017-02-17)
|
|
2444
2457
|
|
|
2445
|
-
-
|
|
2446
|
-
|
|
2447
|
-
-
|
|
2458
|
+
- feature; Adding isLoading and hasError props to the stateless AkProfilecard component
|
|
2459
|
+
([b988ff8](https://bitbucket.org/atlassian/atlaskit/commits/b988ff8))
|
|
2460
|
+
- fixing lint error ([da369d3](https://bitbucket.org/atlassian/atlaskit/commits/da369d3))
|
|
2448
2461
|
|
|
2449
2462
|
## 1.0.2 (2017-02-07)
|
|
2450
2463
|
|
|
2451
|
-
-
|
|
2452
|
-
|
|
2464
|
+
- fix; Updates docs to mention using yarn
|
|
2465
|
+
([8259add](https://bitbucket.org/atlassian/atlaskit/commits/8259add))
|
|
2453
2466
|
|
|
2454
2467
|
## 1.0.1 (2017-02-06)
|
|
2455
2468
|
|
|
2456
|
-
-
|
|
2457
|
-
|
|
2469
|
+
- fix; Updates package to use scoped ak packges
|
|
2470
|
+
([26b9140](https://bitbucket.org/atlassian/atlaskit/commits/26b9140))
|