@atlaskit/mention 23.0.3 → 23.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1402 -1393
- package/dist/cjs/api/MentionNameResolver.js +60 -2
- package/dist/cjs/components/Mention/ResourcedMention.js +1 -0
- package/dist/cjs/components/Mention/index.js +4 -1
- package/dist/cjs/components/MentionDescriptionByline/styles.js +1 -0
- package/dist/cjs/components/MentionItem/styles.js +14 -0
- package/dist/cjs/components/MentionList/styles.js +1 -0
- package/dist/cjs/components/MentionListError/GenericErrorIllustration.js +6 -0
- package/dist/cjs/components/MentionListError/styles.js +6 -0
- package/dist/cjs/components/MentionPicker/index.js +3 -1
- package/dist/cjs/components/MentionPicker/styles.js +3 -0
- package/dist/cjs/components/Scrollable/styles.js +1 -0
- package/dist/cjs/util/analytics.js +1 -1
- package/dist/es2019/api/MentionNameResolver.js +56 -3
- package/dist/es2019/components/Mention/ResourcedMention.js +1 -0
- package/dist/es2019/components/Mention/index.js +4 -1
- package/dist/es2019/components/MentionDescriptionByline/styles.js +1 -0
- package/dist/es2019/components/MentionItem/styles.js +14 -0
- package/dist/es2019/components/MentionList/styles.js +1 -0
- package/dist/es2019/components/MentionListError/GenericErrorIllustration.js +6 -0
- package/dist/es2019/components/MentionListError/styles.js +7 -0
- package/dist/es2019/components/MentionPicker/index.js +3 -1
- package/dist/es2019/components/MentionPicker/styles.js +3 -0
- package/dist/es2019/components/Scrollable/styles.js +2 -0
- package/dist/es2019/util/analytics.js +1 -1
- package/dist/esm/api/MentionNameResolver.js +62 -2
- package/dist/esm/components/Mention/ResourcedMention.js +1 -0
- package/dist/esm/components/Mention/index.js +4 -1
- package/dist/esm/components/MentionDescriptionByline/styles.js +1 -0
- package/dist/esm/components/MentionItem/styles.js +14 -0
- package/dist/esm/components/MentionList/styles.js +1 -0
- package/dist/esm/components/MentionListError/GenericErrorIllustration.js +6 -0
- package/dist/esm/components/MentionListError/styles.js +7 -0
- package/dist/esm/components/MentionPicker/index.js +3 -1
- package/dist/esm/components/MentionPicker/styles.js +3 -0
- package/dist/esm/components/Scrollable/styles.js +2 -0
- package/dist/esm/util/analytics.js +1 -1
- package/dist/types/api/ContextMentionResource.d.ts +2 -2
- package/dist/types/api/MentionNameClient.d.ts +1 -1
- package/dist/types/api/MentionNameResolver.d.ts +19 -4
- package/dist/types/api/PresenceResource.d.ts +2 -2
- package/dist/types/api/TeamMentionResource.d.ts +2 -2
- package/dist/types/api/analytics.d.ts +1 -1
- package/dist/types/components/Mention/PrimitiveMention.d.ts +1 -1
- package/dist/types/components/Mention/ResourcedMention.d.ts +3 -2
- package/dist/types/components/Mention/index.d.ts +3 -2
- package/dist/types/components/MentionDescriptionByline/TeamMentionDescriptionByline.d.ts +1 -1
- package/dist/types/components/MentionDescriptionByline/UserMentionDescriptionByline.d.ts +1 -1
- package/dist/types/components/MentionDescriptionByline/index.d.ts +1 -1
- package/dist/types/components/MentionDescriptionByline/types.d.ts +1 -1
- package/dist/types/components/MentionItem/MentionHighlightHelpers.d.ts +2 -2
- package/dist/types/components/MentionItem/index.d.ts +1 -1
- package/dist/types/components/MentionList/index.d.ts +1 -1
- package/dist/types/components/MentionPicker/index.d.ts +5 -5
- package/dist/types/components/MessagesIntlProvider/index.d.ts +1 -1
- package/dist/types/components/ResourcedMentionList/index.d.ts +4 -4
- package/dist/types/components/Scrollable/index.d.ts +1 -1
- package/dist/types/resource.d.ts +5 -5
- package/dist/types/team-resource.d.ts +3 -3
- package/dist/types/util/analytics.d.ts +2 -2
- package/dist/types/util/i18n.d.ts +1 -1
- package/dist/types/util/mouse.d.ts +1 -1
- package/dist/types-ts4.5/api/ContextMentionResource.d.ts +2 -2
- package/dist/types-ts4.5/api/MentionNameClient.d.ts +1 -1
- package/dist/types-ts4.5/api/MentionNameResolver.d.ts +19 -4
- package/dist/types-ts4.5/api/PresenceResource.d.ts +2 -2
- package/dist/types-ts4.5/api/TeamMentionResource.d.ts +2 -2
- package/dist/types-ts4.5/api/analytics.d.ts +1 -1
- package/dist/types-ts4.5/components/Mention/PrimitiveMention.d.ts +1 -1
- package/dist/types-ts4.5/components/Mention/ResourcedMention.d.ts +3 -2
- package/dist/types-ts4.5/components/Mention/index.d.ts +3 -2
- package/dist/types-ts4.5/components/MentionDescriptionByline/TeamMentionDescriptionByline.d.ts +1 -1
- package/dist/types-ts4.5/components/MentionDescriptionByline/UserMentionDescriptionByline.d.ts +1 -1
- package/dist/types-ts4.5/components/MentionDescriptionByline/index.d.ts +1 -1
- package/dist/types-ts4.5/components/MentionDescriptionByline/types.d.ts +1 -1
- package/dist/types-ts4.5/components/MentionItem/MentionHighlightHelpers.d.ts +2 -2
- package/dist/types-ts4.5/components/MentionItem/index.d.ts +1 -1
- package/dist/types-ts4.5/components/MentionList/index.d.ts +1 -1
- package/dist/types-ts4.5/components/MentionPicker/index.d.ts +5 -5
- package/dist/types-ts4.5/components/MessagesIntlProvider/index.d.ts +1 -1
- package/dist/types-ts4.5/components/ResourcedMentionList/index.d.ts +4 -4
- package/dist/types-ts4.5/components/Scrollable/index.d.ts +1 -1
- package/dist/types-ts4.5/resource.d.ts +5 -5
- package/dist/types-ts4.5/team-resource.d.ts +3 -3
- package/dist/types-ts4.5/util/analytics.d.ts +2 -2
- package/dist/types-ts4.5/util/i18n.d.ts +1 -1
- package/dist/types-ts4.5/util/mouse.d.ts +1 -1
- package/package.json +5 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,2620 +1,2629 @@
|
|
|
1
1
|
# @atlaskit/mention
|
|
2
2
|
|
|
3
|
+
## 23.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#105861](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/105861)
|
|
8
|
+
[`0dab14fe2ba2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0dab14fe2ba2) -
|
|
9
|
+
Add callback to be called once mention resolver queue is empty
|
|
10
|
+
|
|
11
|
+
## 23.0.4
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#104781](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/104781)
|
|
16
|
+
[`c1f5107a8905`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c1f5107a8905) -
|
|
17
|
+
Fix some mentions for the same user never loading in pages with many mentions
|
|
18
|
+
|
|
3
19
|
## 23.0.3
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
6
22
|
|
|
7
|
-
-
|
|
8
|
-
|
|
9
|
-
|
|
23
|
+
- [#98103](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/98103)
|
|
24
|
+
[`14c055a65f67`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/14c055a65f67) -
|
|
25
|
+
removed invite from mention experiment check
|
|
10
26
|
|
|
11
27
|
## 23.0.2
|
|
12
28
|
|
|
13
29
|
### Patch Changes
|
|
14
30
|
|
|
15
|
-
-
|
|
16
|
-
|
|
17
|
-
|
|
31
|
+
- [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
|
|
32
|
+
[`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
|
|
33
|
+
Upgrade Typescript from `4.9.5` to `5.4.2`
|
|
18
34
|
|
|
19
35
|
## 23.0.1
|
|
20
36
|
|
|
21
37
|
### Patch Changes
|
|
22
38
|
|
|
23
|
-
-
|
|
24
|
-
|
|
25
|
-
|
|
39
|
+
- [#80085](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80085)
|
|
40
|
+
[`7febfed958dd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7febfed958dd) -
|
|
41
|
+
Update usage of `React.FC` to explicity include `children`
|
|
26
42
|
|
|
27
43
|
## 23.0.0
|
|
28
44
|
|
|
29
45
|
### Major Changes
|
|
30
46
|
|
|
31
|
-
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
47
|
+
- [#65974](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/65974)
|
|
48
|
+
[`edca08bd6e06`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/edca08bd6e06) -
|
|
49
|
+
Migrate @atlaskit/mention to use declarative entry points. /\_constants public endpoint has been
|
|
50
|
+
removed as part of the migration process.
|
|
35
51
|
|
|
36
52
|
### Patch Changes
|
|
37
53
|
|
|
38
|
-
-
|
|
39
|
-
|
|
40
|
-
|
|
54
|
+
- [#72162](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72162)
|
|
55
|
+
[`dadc682d36ba`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/dadc682d36ba) -
|
|
56
|
+
Replace hardcoded values with space tokens
|
|
41
57
|
|
|
42
58
|
## 22.1.10
|
|
43
59
|
|
|
44
60
|
### Patch Changes
|
|
45
61
|
|
|
46
|
-
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
62
|
+
- [#57137](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/57137)
|
|
63
|
+
[`9b9900944973`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9b9900944973) -
|
|
64
|
+
Remove legacy theming logic from @atlaskit/date, @atlaskit/mention, @atlaskit/task-decision and
|
|
65
|
+
@atlaskit/user-picker.
|
|
50
66
|
|
|
51
67
|
## 22.1.9
|
|
52
68
|
|
|
53
69
|
### Patch Changes
|
|
54
70
|
|
|
55
|
-
-
|
|
71
|
+
- Updated dependencies
|
|
56
72
|
|
|
57
73
|
## 22.1.8
|
|
58
74
|
|
|
59
75
|
### Patch Changes
|
|
60
76
|
|
|
61
|
-
-
|
|
77
|
+
- Updated dependencies
|
|
62
78
|
|
|
63
79
|
## 22.1.7
|
|
64
80
|
|
|
65
81
|
### Patch Changes
|
|
66
82
|
|
|
67
|
-
-
|
|
68
|
-
|
|
69
|
-
|
|
83
|
+
- [#42251](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42251)
|
|
84
|
+
[`9c7b42127f6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9c7b42127f6) - Enrol
|
|
85
|
+
`@atlaskit/mention` and `@atlaskit/link-provider` on push model in JFE.
|
|
70
86
|
|
|
71
87
|
## 22.1.6
|
|
72
88
|
|
|
73
89
|
### Patch Changes
|
|
74
90
|
|
|
75
|
-
-
|
|
76
|
-
|
|
77
|
-
|
|
91
|
+
- [#40715](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40715)
|
|
92
|
+
[`eb792f21a58`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eb792f21a58) - remove
|
|
93
|
+
unused type paramater from setStateSafely
|
|
78
94
|
|
|
79
95
|
## 22.1.5
|
|
80
96
|
|
|
81
97
|
### Patch Changes
|
|
82
98
|
|
|
83
|
-
-
|
|
84
|
-
|
|
85
|
-
|
|
99
|
+
- [#39787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39787)
|
|
100
|
+
[`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) - Internal
|
|
101
|
+
changes to use space tokens. There is no expected visual or behaviour change.
|
|
86
102
|
|
|
87
103
|
## 22.1.4
|
|
88
104
|
|
|
89
105
|
### Patch Changes
|
|
90
106
|
|
|
91
|
-
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
-
|
|
107
|
+
- [#38162](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38162)
|
|
108
|
+
[`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete
|
|
109
|
+
version.json
|
|
110
|
+
- Updated dependencies
|
|
95
111
|
|
|
96
112
|
## 22.1.3
|
|
97
113
|
|
|
98
114
|
### Patch Changes
|
|
99
115
|
|
|
100
|
-
-
|
|
101
|
-
|
|
102
|
-
|
|
116
|
+
- [#37925](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37925)
|
|
117
|
+
[`f01deb5e6ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f01deb5e6ab) - Use
|
|
118
|
+
injected env vars instead of version.json
|
|
103
119
|
|
|
104
120
|
## 22.1.2
|
|
105
121
|
|
|
106
122
|
### Patch Changes
|
|
107
123
|
|
|
108
|
-
-
|
|
109
|
-
|
|
110
|
-
|
|
124
|
+
- [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
|
|
125
|
+
[`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
|
|
126
|
+
legacy types are published for TS 4.5-4.8
|
|
111
127
|
|
|
112
128
|
## 22.1.1
|
|
113
129
|
|
|
114
130
|
### Patch Changes
|
|
115
131
|
|
|
116
|
-
-
|
|
117
|
-
|
|
118
|
-
|
|
132
|
+
- [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
|
|
133
|
+
[`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade
|
|
134
|
+
Typescript from `4.5.5` to `4.9.5`
|
|
119
135
|
|
|
120
136
|
## 22.1.0
|
|
121
137
|
|
|
122
138
|
### Minor Changes
|
|
123
139
|
|
|
124
|
-
-
|
|
125
|
-
|
|
126
|
-
|
|
140
|
+
- [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
|
|
141
|
+
[`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
|
|
142
|
+
minor dependency bump
|
|
127
143
|
|
|
128
144
|
### Patch Changes
|
|
129
145
|
|
|
130
|
-
-
|
|
146
|
+
- Updated dependencies
|
|
131
147
|
|
|
132
148
|
## 22.0.1
|
|
133
149
|
|
|
134
150
|
### Patch Changes
|
|
135
151
|
|
|
136
|
-
-
|
|
137
|
-
|
|
138
|
-
|
|
152
|
+
- [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424)
|
|
153
|
+
[`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY
|
|
154
|
+
remove before merging to master; dupe adf-schema via adf-utils
|
|
139
155
|
|
|
140
156
|
## 22.0.0
|
|
141
157
|
|
|
142
158
|
### Major Changes
|
|
143
159
|
|
|
144
|
-
-
|
|
145
|
-
|
|
146
|
-
|
|
160
|
+
- [#31299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31299)
|
|
161
|
+
[`6c543971074`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c543971074) - [ux]
|
|
162
|
+
PTC-6520 remove team mention highlight
|
|
147
163
|
|
|
148
164
|
## 21.0.19
|
|
149
165
|
|
|
150
166
|
### Patch Changes
|
|
151
167
|
|
|
152
|
-
-
|
|
168
|
+
- Updated dependencies
|
|
153
169
|
|
|
154
170
|
## 21.0.18
|
|
155
171
|
|
|
156
172
|
### Patch Changes
|
|
157
173
|
|
|
158
|
-
-
|
|
174
|
+
- Updated dependencies
|
|
159
175
|
|
|
160
176
|
## 21.0.17
|
|
161
177
|
|
|
162
178
|
### Patch Changes
|
|
163
179
|
|
|
164
|
-
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
180
|
+
- [#29227](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29227)
|
|
181
|
+
[`4ee60bafc6d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ee60bafc6d) -
|
|
182
|
+
ED-16603: Remove tooltips from VR tests and make them opt in. To opt-in, add `allowedSideEffects`
|
|
183
|
+
when loading the page.
|
|
168
184
|
|
|
169
185
|
## 21.0.16
|
|
170
186
|
|
|
171
187
|
### Patch Changes
|
|
172
188
|
|
|
173
|
-
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
189
|
+
- [#28324](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28324)
|
|
190
|
+
[`6455cf006b3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6455cf006b3) - Builds
|
|
191
|
+
for this package now pass through a tokens babel plugin, removing runtime invocations of the
|
|
192
|
+
tokens() function and improving performance.
|
|
177
193
|
|
|
178
194
|
## 21.0.15
|
|
179
195
|
|
|
180
196
|
### Patch Changes
|
|
181
197
|
|
|
182
|
-
-
|
|
183
|
-
|
|
184
|
-
|
|
198
|
+
- [#28090](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28090)
|
|
199
|
+
[`9ace7f714e3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9ace7f714e3) - Handle
|
|
200
|
+
new Teams ARI format in mentions
|
|
185
201
|
|
|
186
202
|
## 21.0.14
|
|
187
203
|
|
|
188
204
|
### Patch Changes
|
|
189
205
|
|
|
190
|
-
-
|
|
206
|
+
- Updated dependencies
|
|
191
207
|
|
|
192
208
|
## 21.0.13
|
|
193
209
|
|
|
194
210
|
### Patch Changes
|
|
195
211
|
|
|
196
|
-
-
|
|
212
|
+
- Updated dependencies
|
|
197
213
|
|
|
198
214
|
## 21.0.12
|
|
199
215
|
|
|
200
216
|
### Patch Changes
|
|
201
217
|
|
|
202
|
-
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
-
|
|
218
|
+
- [#26712](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26712)
|
|
219
|
+
[`136542df4cf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/136542df4cf) - Changes
|
|
220
|
+
restricted mention border color token to bold version and text color token to default one for
|
|
221
|
+
better accessibility. Updated appearances only visible in applications configured to use the new
|
|
222
|
+
Tokens API (currently in alpha).
|
|
223
|
+
- Updated dependencies
|
|
208
224
|
|
|
209
225
|
## 21.0.11
|
|
210
226
|
|
|
211
227
|
### Patch Changes
|
|
212
228
|
|
|
213
|
-
-
|
|
214
|
-
|
|
215
|
-
|
|
229
|
+
- [#27924](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27924)
|
|
230
|
+
[`f14b977abd5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f14b977abd5) - Bump
|
|
231
|
+
query-string to ^v7.1.3
|
|
216
232
|
|
|
217
233
|
## 21.0.10
|
|
218
234
|
|
|
219
235
|
### Patch Changes
|
|
220
236
|
|
|
221
|
-
-
|
|
237
|
+
- Updated dependencies
|
|
222
238
|
|
|
223
239
|
## 21.0.9
|
|
224
240
|
|
|
225
241
|
### Patch Changes
|
|
226
242
|
|
|
227
|
-
-
|
|
228
|
-
|
|
229
|
-
|
|
243
|
+
- [#26786](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26786)
|
|
244
|
+
[`016d3039482`](https://bitbucket.org/atlassian/atlassian-frontend/commits/016d3039482) - Updates
|
|
245
|
+
`@emotion/core` v10 to `@emotion/react` v11. There is no expected behavior change.
|
|
230
246
|
|
|
231
247
|
## 21.0.8
|
|
232
248
|
|
|
233
249
|
### Patch Changes
|
|
234
250
|
|
|
235
|
-
-
|
|
236
|
-
|
|
237
|
-
|
|
251
|
+
- [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874)
|
|
252
|
+
[`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade
|
|
253
|
+
Typescript from `4.3.5` to `4.5.5`
|
|
238
254
|
|
|
239
255
|
## 21.0.7
|
|
240
256
|
|
|
241
257
|
### Patch Changes
|
|
242
258
|
|
|
243
|
-
-
|
|
244
|
-
|
|
245
|
-
|
|
259
|
+
- [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492)
|
|
260
|
+
[`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade
|
|
261
|
+
Typescript from `4.2.4` to `4.3.5`.
|
|
246
262
|
|
|
247
263
|
## 21.0.6
|
|
248
264
|
|
|
249
265
|
### Patch Changes
|
|
250
266
|
|
|
251
|
-
-
|
|
267
|
+
- Updated dependencies
|
|
252
268
|
|
|
253
269
|
## 21.0.5
|
|
254
270
|
|
|
255
271
|
### Patch Changes
|
|
256
272
|
|
|
257
|
-
-
|
|
273
|
+
- Updated dependencies
|
|
258
274
|
|
|
259
275
|
## 21.0.4
|
|
260
276
|
|
|
261
277
|
### Patch Changes
|
|
262
278
|
|
|
263
|
-
-
|
|
264
|
-
|
|
265
|
-
|
|
279
|
+
- [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650)
|
|
280
|
+
[`a424e62b264`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a424e62b264) - Changes
|
|
281
|
+
to support Node 16 Typescript definitions from `@types/node`.
|
|
266
282
|
|
|
267
283
|
## 21.0.3
|
|
268
284
|
|
|
269
285
|
### Patch Changes
|
|
270
286
|
|
|
271
|
-
-
|
|
272
|
-
|
|
273
|
-
-
|
|
287
|
+
- [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade
|
|
288
|
+
to TypeScript 4.2.4
|
|
289
|
+
- Updated dependencies
|
|
274
290
|
|
|
275
291
|
## 21.0.2
|
|
276
292
|
|
|
277
293
|
### Patch Changes
|
|
278
294
|
|
|
279
|
-
-
|
|
295
|
+
- Updated dependencies
|
|
280
296
|
|
|
281
297
|
## 21.0.1
|
|
282
298
|
|
|
283
299
|
### Patch Changes
|
|
284
300
|
|
|
285
|
-
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
-
|
|
289
|
-
|
|
290
|
-
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
-
|
|
301
|
+
- [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618)
|
|
302
|
+
[`9120f857a67`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9120f857a67) - Remove
|
|
303
|
+
react-intl v2 from dev dependencies
|
|
304
|
+
- [`6ee0b5cac9a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6ee0b5cac9a) - Mention
|
|
305
|
+
lozenge component rendering performance/reliability is now tracked
|
|
306
|
+
- [`62edf20ab1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62edf20ab1e) - Migrates
|
|
307
|
+
all usage of brand tokens to either selected or information tokens. This change is purely for
|
|
308
|
+
semantic reasons, there are no visual or behavioural changes.
|
|
309
|
+
- Updated dependencies
|
|
294
310
|
|
|
295
311
|
## 21.0.0
|
|
296
312
|
|
|
297
313
|
### Major Changes
|
|
298
314
|
|
|
299
|
-
-
|
|
300
|
-
|
|
301
|
-
|
|
315
|
+
- [#19019](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19019)
|
|
316
|
+
[`c5d52f78847`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c5d52f78847) -
|
|
317
|
+
Extracting smart-mention-resource into its own private package
|
|
302
318
|
|
|
303
319
|
### Patch Changes
|
|
304
320
|
|
|
305
|
-
-
|
|
321
|
+
- Updated dependencies
|
|
306
322
|
|
|
307
323
|
## 20.0.0
|
|
308
324
|
|
|
309
325
|
### Major Changes
|
|
310
326
|
|
|
311
|
-
-
|
|
312
|
-
|
|
313
|
-
|
|
327
|
+
- [#18526](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18526)
|
|
328
|
+
[`ee723e753de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ee723e753de) -
|
|
329
|
+
[UR-3222]: Upgrade to intl v5. To consume Mentions, you will need a react-intl v5 intl provider
|
|
314
330
|
|
|
315
331
|
### Minor Changes
|
|
316
332
|
|
|
317
|
-
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
333
|
+
- [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752)
|
|
334
|
+
[`0e32e4669ae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0e32e4669ae) - Internal
|
|
335
|
+
changes to migrate package from 'styled-components' to @emotion. There should be no change to the
|
|
336
|
+
UX.
|
|
321
337
|
|
|
322
338
|
### Patch Changes
|
|
323
339
|
|
|
324
|
-
-
|
|
325
|
-
|
|
326
|
-
-
|
|
327
|
-
|
|
328
|
-
-
|
|
329
|
-
|
|
330
|
-
-
|
|
331
|
-
|
|
332
|
-
-
|
|
340
|
+
- [`9ec7ba1a899`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9ec7ba1a899) - [ux] Add
|
|
341
|
+
interaction state tokens to mention.
|
|
342
|
+
- [`36d7a940820`](https://bitbucket.org/atlassian/atlassian-frontend/commits/36d7a940820) - Async
|
|
343
|
+
load heavy dependencies and assets for Mention and MentionItem
|
|
344
|
+
- [`a6260fbc145`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a6260fbc145) - Fix for
|
|
345
|
+
ref not being provided back when using MentionPicker
|
|
346
|
+
- [`112cd3a4024`](https://bitbucket.org/atlassian/atlassian-frontend/commits/112cd3a4024) -
|
|
347
|
+
TeamMentionHighlight is now lazy loaded
|
|
348
|
+
- Updated dependencies
|
|
333
349
|
|
|
334
350
|
## 19.9.6
|
|
335
351
|
|
|
336
352
|
### Patch Changes
|
|
337
353
|
|
|
338
|
-
-
|
|
339
|
-
|
|
340
|
-
|
|
354
|
+
- [#17475](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17475)
|
|
355
|
+
[`c55c736ecea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c55c736ecea) - Patch
|
|
356
|
+
VULN AFP-3486 AFP-3487 AFP-3488 AFP-3489
|
|
341
357
|
|
|
342
358
|
## 19.9.5
|
|
343
359
|
|
|
344
360
|
### Patch Changes
|
|
345
361
|
|
|
346
|
-
-
|
|
347
|
-
|
|
348
|
-
|
|
362
|
+
- [#16666](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16666)
|
|
363
|
+
[`6344bc53c4e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6344bc53c4e) - Remove
|
|
364
|
+
bulk imports in mentions
|
|
349
365
|
|
|
350
366
|
## 19.9.4
|
|
351
367
|
|
|
352
368
|
### Patch Changes
|
|
353
369
|
|
|
354
|
-
-
|
|
355
|
-
|
|
356
|
-
|
|
370
|
+
- [#16169](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16169)
|
|
371
|
+
[`e770c0c16d9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e770c0c16d9) - Remove
|
|
372
|
+
non-prod API configs from mentions, and update docs to mock out API calls.
|
|
357
373
|
|
|
358
374
|
## 19.9.3
|
|
359
375
|
|
|
360
376
|
### Patch Changes
|
|
361
377
|
|
|
362
|
-
-
|
|
363
|
-
|
|
364
|
-
|
|
378
|
+
- [#16445](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16445)
|
|
379
|
+
[`d1ed723c1e0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d1ed723c1e0) - Fix bug
|
|
380
|
+
where includeTeams in smartMentionResource was not being passed in correctly
|
|
365
381
|
|
|
366
382
|
## 19.9.2
|
|
367
383
|
|
|
368
384
|
### Patch Changes
|
|
369
385
|
|
|
370
|
-
-
|
|
371
|
-
|
|
372
|
-
|
|
386
|
+
- [#15889](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15889)
|
|
387
|
+
[`570ccaa00bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/570ccaa00bd) - Add the
|
|
388
|
+
ability for users in Default Mention Name Resolver to be nullable
|
|
373
389
|
|
|
374
390
|
## 19.9.1
|
|
375
391
|
|
|
376
392
|
### Patch Changes
|
|
377
393
|
|
|
378
|
-
-
|
|
379
|
-
|
|
380
|
-
|
|
394
|
+
- [#15454](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15454)
|
|
395
|
+
[`a92e3bdb515`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a92e3bdb515) - Relaxed
|
|
396
|
+
product enum typing to take in any string
|
|
381
397
|
|
|
382
398
|
## 19.9.0
|
|
383
399
|
|
|
384
400
|
### Minor Changes
|
|
385
401
|
|
|
386
|
-
-
|
|
387
|
-
|
|
388
|
-
|
|
402
|
+
- [#15112](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15112)
|
|
403
|
+
[`e65ada9dbbb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e65ada9dbbb) - Debounce
|
|
404
|
+
MentionResource when debounceTime is passed in
|
|
389
405
|
|
|
390
406
|
## 19.8.1
|
|
391
407
|
|
|
392
408
|
### Patch Changes
|
|
393
409
|
|
|
394
|
-
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
410
|
+
- [#14944](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14944)
|
|
411
|
+
[`e5e658bc51d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e5e658bc51d) - Fix for
|
|
412
|
+
mention default name provider using an incorrect API endpoint when no baseUrl was supplied to
|
|
413
|
+
SmartMentionResource
|
|
398
414
|
|
|
399
415
|
## 19.8.0
|
|
400
416
|
|
|
401
417
|
### Minor Changes
|
|
402
418
|
|
|
403
|
-
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
419
|
+
- [#14604](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14604)
|
|
420
|
+
[`9871a89fe5d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9871a89fe5d) -
|
|
421
|
+
SmartMentionResource now has a default name resolver if one is not provided. You can still provide
|
|
422
|
+
the `mentionNameResolver` in the config when instantiating SmartMentionResource if a custom name
|
|
423
|
+
resolver is needed.
|
|
408
424
|
|
|
409
425
|
## 19.7.2
|
|
410
426
|
|
|
411
427
|
### Patch Changes
|
|
412
428
|
|
|
413
|
-
-
|
|
429
|
+
- Updated dependencies
|
|
414
430
|
|
|
415
431
|
## 19.7.1
|
|
416
432
|
|
|
417
433
|
### Patch Changes
|
|
418
434
|
|
|
419
|
-
-
|
|
420
|
-
|
|
421
|
-
|
|
435
|
+
- [#14494](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14494)
|
|
436
|
+
[`4ac918aad80`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ac918aad80) - Added
|
|
437
|
+
helper documentation for easier onboarding onto Atlaskit Editor
|
|
422
438
|
|
|
423
439
|
## 19.7.0
|
|
424
440
|
|
|
425
441
|
### Minor Changes
|
|
426
442
|
|
|
427
|
-
-
|
|
428
|
-
|
|
429
|
-
|
|
443
|
+
- [#13864](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13864)
|
|
444
|
+
[`71bb1bb3cd0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/71bb1bb3cd0) -
|
|
445
|
+
[ED-12933] Export min height mentions to improve rendering performance on editor typeahead
|
|
430
446
|
|
|
431
447
|
### Patch Changes
|
|
432
448
|
|
|
433
|
-
-
|
|
449
|
+
- Updated dependencies
|
|
434
450
|
|
|
435
451
|
## 19.6.4
|
|
436
452
|
|
|
437
453
|
### Patch Changes
|
|
438
454
|
|
|
439
|
-
-
|
|
455
|
+
- Updated dependencies
|
|
440
456
|
|
|
441
457
|
## 19.6.3
|
|
442
458
|
|
|
443
459
|
### Patch Changes
|
|
444
460
|
|
|
445
|
-
-
|
|
446
|
-
|
|
447
|
-
|
|
461
|
+
- [#11649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11649)
|
|
462
|
+
[`52e7807e543`](https://bitbucket.org/atlassian/atlassian-frontend/commits/52e7807e543) - Fixed
|
|
463
|
+
English translations for team counts
|
|
448
464
|
|
|
449
465
|
## 19.6.2
|
|
450
466
|
|
|
451
467
|
### Patch Changes
|
|
452
468
|
|
|
453
|
-
-
|
|
454
|
-
|
|
455
|
-
|
|
469
|
+
- [#10978](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10978)
|
|
470
|
+
[`56ffe4d3c5a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56ffe4d3c5a) - Add
|
|
471
|
+
optional MentionNameResolver to SmartMentionResource config
|
|
456
472
|
|
|
457
473
|
## 19.6.1
|
|
458
474
|
|
|
459
475
|
### Patch Changes
|
|
460
476
|
|
|
461
|
-
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
-
|
|
477
|
+
- [#10230](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10230)
|
|
478
|
+
[`f5eba1a5c71`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f5eba1a5c71) - ED-11989
|
|
479
|
+
fixed mention displaying old cached name
|
|
480
|
+
- Updated dependencies
|
|
465
481
|
|
|
466
482
|
## 19.6.0
|
|
467
483
|
|
|
468
484
|
### Minor Changes
|
|
469
485
|
|
|
470
|
-
-
|
|
471
|
-
|
|
472
|
-
|
|
486
|
+
- [#9756](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9756)
|
|
487
|
+
[`f042eac9bf1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f042eac9bf1) - Add
|
|
488
|
+
SmartMentionResource to mentions with editor-core example
|
|
473
489
|
|
|
474
490
|
### Patch Changes
|
|
475
491
|
|
|
476
|
-
-
|
|
492
|
+
- Updated dependencies
|
|
477
493
|
|
|
478
494
|
## 19.5.1
|
|
479
495
|
|
|
480
496
|
### Patch Changes
|
|
481
497
|
|
|
482
|
-
-
|
|
483
|
-
|
|
484
|
-
|
|
498
|
+
- [#10035](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10035)
|
|
499
|
+
[`3274237a5be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3274237a5be) - [ux]
|
|
500
|
+
reverted changes in ED-11939
|
|
485
501
|
|
|
486
502
|
## 19.5.0
|
|
487
503
|
|
|
488
504
|
### Minor Changes
|
|
489
505
|
|
|
490
|
-
-
|
|
491
|
-
|
|
492
|
-
|
|
506
|
+
- [#9780](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9780)
|
|
507
|
+
[`c49d543a921`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c49d543a921) - Only
|
|
508
|
+
restrict mentions view if UserAccessLevel is set to NONE
|
|
493
509
|
|
|
494
510
|
## 19.4.1
|
|
495
511
|
|
|
496
512
|
### Patch Changes
|
|
497
513
|
|
|
498
|
-
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
514
|
+
- [#9510](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9510)
|
|
515
|
+
[`d5b0036f8c5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d5b0036f8c5) - Updated
|
|
516
|
+
LozengeProps type to accept React.ReactNode instead of string. This makes it easier to pass in
|
|
517
|
+
translations to this component from the consumer.
|
|
502
518
|
|
|
503
519
|
## 19.4.0
|
|
504
520
|
|
|
505
521
|
### Minor Changes
|
|
506
522
|
|
|
507
|
-
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
523
|
+
- [#9083](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9083)
|
|
524
|
+
[`3dae9ea0c02`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3dae9ea0c02) -
|
|
525
|
+
MentionItem now accepts and renders Lozenges when provided with a LozengeProps type object - ex. {
|
|
526
|
+
text: 'GUEST', appearance: 'new' }. Previously, it only accepted a string.
|
|
511
527
|
|
|
512
528
|
### Patch Changes
|
|
513
529
|
|
|
514
|
-
-
|
|
515
|
-
|
|
516
|
-
-
|
|
517
|
-
|
|
518
|
-
-
|
|
530
|
+
- [`967aa365eff`](https://bitbucket.org/atlassian/atlassian-frontend/commits/967aa365eff) - [ux]
|
|
531
|
+
ED-11939: fix mentions showing the wrong name after unselect
|
|
532
|
+
- [`b0ac0fc993d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b0ac0fc993d) -
|
|
533
|
+
Transferring mentions package ownership to Search & Smarts
|
|
534
|
+
- Updated dependencies
|
|
519
535
|
|
|
520
536
|
## 19.3.1
|
|
521
537
|
|
|
522
538
|
### Patch Changes
|
|
523
539
|
|
|
524
|
-
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
-
|
|
540
|
+
- [#8644](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8644)
|
|
541
|
+
[`178e91b75ad`](https://bitbucket.org/atlassian/atlassian-frontend/commits/178e91b75ad) -
|
|
542
|
+
PL-AFDD-JOB1-158 Add translations for new messages
|
|
543
|
+
- Updated dependencies
|
|
528
544
|
|
|
529
545
|
## 19.3.0
|
|
530
546
|
|
|
531
547
|
### Minor Changes
|
|
532
548
|
|
|
533
|
-
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
-
|
|
537
|
-
|
|
549
|
+
- [#8178](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8178)
|
|
550
|
+
[`cafde5bbe21`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cafde5bbe21) - [ux]
|
|
551
|
+
Added Team prefix to teams in the mention list to increase clarity.
|
|
552
|
+
- [`43b2f925f0b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/43b2f925f0b) - Add
|
|
553
|
+
optional attributes to mentionProvider analytics callback
|
|
538
554
|
|
|
539
555
|
### Patch Changes
|
|
540
556
|
|
|
541
|
-
-
|
|
557
|
+
- Updated dependencies
|
|
542
558
|
|
|
543
559
|
## 19.2.0
|
|
544
560
|
|
|
545
561
|
### Minor Changes
|
|
546
562
|
|
|
547
|
-
-
|
|
548
|
-
|
|
549
|
-
|
|
563
|
+
- [#7762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7762)
|
|
564
|
+
[`7ddbf962bd9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ddbf962bd9) - [ux]
|
|
565
|
+
Updated and added new translations
|
|
550
566
|
|
|
551
567
|
## 19.1.2
|
|
552
568
|
|
|
553
569
|
### Patch Changes
|
|
554
570
|
|
|
555
|
-
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
-
|
|
559
|
-
|
|
571
|
+
- [#6571](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/6571)
|
|
572
|
+
[`05757c917b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/05757c917b) - taking
|
|
573
|
+
config.productName into mentionResource
|
|
574
|
+
- [`dd91541afe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dd91541afe) - [ux]
|
|
575
|
+
Further improvements on the invite from mention experiment
|
|
560
576
|
|
|
561
577
|
## 19.1.1
|
|
562
578
|
|
|
563
579
|
### Patch Changes
|
|
564
580
|
|
|
565
|
-
-
|
|
566
|
-
|
|
567
|
-
|
|
581
|
+
- [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857)
|
|
582
|
+
[`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile
|
|
583
|
+
packages using babel rather than tsc
|
|
568
584
|
|
|
569
585
|
## 19.1.0
|
|
570
586
|
|
|
571
587
|
### Minor Changes
|
|
572
588
|
|
|
573
|
-
-
|
|
574
|
-
|
|
575
|
-
|
|
589
|
+
- [#6228](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/6228)
|
|
590
|
+
[`22791ceed0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/22791ceed0) - [ux] -
|
|
591
|
+
added new properites in MentionResource interface to support invite from mention experiment
|
|
576
592
|
|
|
577
|
-
|
|
578
|
-
|
|
593
|
+
- updated util-data-test/mention to enable invite from mention experiment
|
|
594
|
+
- added invite from mention experiment logic into editor-core
|
|
579
595
|
|
|
580
596
|
## 19.0.9
|
|
581
597
|
|
|
582
598
|
### Patch Changes
|
|
583
599
|
|
|
584
|
-
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
-
|
|
600
|
+
- [#5516](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5516)
|
|
601
|
+
[`dcd6b0ecfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dcd6b0ecfb) - Fix React
|
|
602
|
+
warning: should not setState on unmounted component
|
|
603
|
+
- Updated dependencies
|
|
588
604
|
|
|
589
605
|
## 19.0.8
|
|
590
606
|
|
|
591
607
|
### Patch Changes
|
|
592
608
|
|
|
593
|
-
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
609
|
+
- [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497)
|
|
610
|
+
[`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export
|
|
611
|
+
types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules
|
|
612
|
+
compiler option. This requires version 3.8 of Typescript, read more about how we handle Typescript
|
|
613
|
+
versions here: https://atlaskit.atlassian.com/get-started Also add `typescript` to
|
|
614
|
+
`devDependencies` to denote version that the package was built with.
|
|
599
615
|
|
|
600
616
|
## 19.0.7
|
|
601
617
|
|
|
602
618
|
### Patch Changes
|
|
603
619
|
|
|
604
|
-
-
|
|
620
|
+
- Updated dependencies
|
|
605
621
|
|
|
606
622
|
## 19.0.6
|
|
607
623
|
|
|
608
624
|
### Patch Changes
|
|
609
625
|
|
|
610
|
-
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
-
|
|
626
|
+
- [#4749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4749)
|
|
627
|
+
[`c0533f4b35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0533f4b35) - Upgrade
|
|
628
|
+
analytics-next to prevent event loss
|
|
629
|
+
(https://hello.atlassian.net/wiki/spaces/AFP/blog/2020/08/26/828144759/ACTION+REQUIRED+-+upgrade+analytics-next+to+prevent+event+loss)
|
|
630
|
+
- Updated dependencies
|
|
615
631
|
|
|
616
632
|
## 19.0.5
|
|
617
633
|
|
|
618
634
|
### Patch Changes
|
|
619
635
|
|
|
620
|
-
-
|
|
621
|
-
|
|
622
|
-
|
|
636
|
+
- [#4932](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4932)
|
|
637
|
+
[`bee2157c1b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bee2157c1b) - Remove
|
|
638
|
+
usage of @atlaskit/util-common-test package
|
|
623
639
|
|
|
624
640
|
## 19.0.4
|
|
625
641
|
|
|
626
642
|
### Patch Changes
|
|
627
643
|
|
|
628
|
-
-
|
|
644
|
+
- Updated dependencies
|
|
629
645
|
|
|
630
646
|
## 19.0.3
|
|
631
647
|
|
|
632
648
|
### Patch Changes
|
|
633
649
|
|
|
634
|
-
-
|
|
635
|
-
|
|
636
|
-
|
|
650
|
+
- [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885)
|
|
651
|
+
[`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded
|
|
652
|
+
to TypeScript 3.9.6 and tslib to 2.0.0
|
|
637
653
|
|
|
638
|
-
|
|
639
|
-
|
|
654
|
+
Since tslib is a dependency for all our packages we recommend that products also follow this tslib
|
|
655
|
+
upgrade to prevent duplicates of tslib being bundled.
|
|
640
656
|
|
|
641
657
|
## 19.0.2
|
|
642
658
|
|
|
643
659
|
### Patch Changes
|
|
644
660
|
|
|
645
|
-
-
|
|
646
|
-
|
|
647
|
-
|
|
661
|
+
- [#3369](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3369)
|
|
662
|
+
[`d03bff2147`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d03bff2147) - updated
|
|
663
|
+
translations
|
|
648
664
|
|
|
649
665
|
## 19.0.1
|
|
650
666
|
|
|
651
667
|
### Patch Changes
|
|
652
668
|
|
|
653
|
-
-
|
|
669
|
+
- Updated dependencies
|
|
654
670
|
|
|
655
671
|
## 19.0.0
|
|
656
672
|
|
|
657
673
|
### Major Changes
|
|
658
674
|
|
|
659
|
-
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
675
|
+
- [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335)
|
|
676
|
+
[`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially
|
|
677
|
+
dropping IE11 support, from this version onwards there are no warranties of the package working in
|
|
678
|
+
IE11. For more information see:
|
|
679
|
+
https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
|
|
664
680
|
|
|
665
681
|
### Patch Changes
|
|
666
682
|
|
|
667
|
-
-
|
|
683
|
+
- Updated dependencies
|
|
668
684
|
|
|
669
685
|
## 18.18.3
|
|
670
686
|
|
|
671
687
|
### Patch Changes
|
|
672
688
|
|
|
673
|
-
-
|
|
674
|
-
|
|
675
|
-
|
|
689
|
+
- [#2576](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2576)
|
|
690
|
+
[`fc83c36503`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fc83c36503) - Update
|
|
691
|
+
translation files via Traduki build
|
|
676
692
|
|
|
677
693
|
## 18.18.2
|
|
678
694
|
|
|
679
695
|
### Patch Changes
|
|
680
696
|
|
|
681
|
-
-
|
|
682
|
-
|
|
683
|
-
|
|
697
|
+
- [#2959](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2959)
|
|
698
|
+
[`64e7f3f077`](https://bitbucket.org/atlassian/atlassian-frontend/commits/64e7f3f077) - Bump
|
|
699
|
+
dependency query-string to ^5.1.0
|
|
684
700
|
|
|
685
701
|
## 18.18.1
|
|
686
702
|
|
|
687
703
|
### Patch Changes
|
|
688
704
|
|
|
689
|
-
-
|
|
705
|
+
- Updated dependencies
|
|
690
706
|
|
|
691
707
|
## 18.18.0
|
|
692
708
|
|
|
693
709
|
### Minor Changes
|
|
694
710
|
|
|
695
|
-
-
|
|
711
|
+
- [minor][53ebcdb974](https://bitbucket.org/atlassian/atlassian-frontend/commits/53ebcdb974):
|
|
696
712
|
|
|
697
|
-
|
|
713
|
+
Adding analytics metrics for PTC SLIs
|
|
698
714
|
|
|
699
715
|
### Patch Changes
|
|
700
716
|
|
|
701
|
-
-
|
|
702
|
-
|
|
703
|
-
-
|
|
704
|
-
|
|
705
|
-
-
|
|
706
|
-
|
|
707
|
-
-
|
|
708
|
-
|
|
709
|
-
-
|
|
710
|
-
|
|
711
|
-
-
|
|
712
|
-
|
|
713
|
-
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
717
|
+
- Updated dependencies
|
|
718
|
+
[dae900bf82](https://bitbucket.org/atlassian/atlassian-frontend/commits/dae900bf82):
|
|
719
|
+
- Updated dependencies
|
|
720
|
+
[4bec09aa74](https://bitbucket.org/atlassian/atlassian-frontend/commits/4bec09aa74):
|
|
721
|
+
- Updated dependencies
|
|
722
|
+
[d63888b5e5](https://bitbucket.org/atlassian/atlassian-frontend/commits/d63888b5e5):
|
|
723
|
+
- Updated dependencies
|
|
724
|
+
[8c9e4f1ec6](https://bitbucket.org/atlassian/atlassian-frontend/commits/8c9e4f1ec6):
|
|
725
|
+
- Updated dependencies
|
|
726
|
+
[bdf25b1c4c](https://bitbucket.org/atlassian/atlassian-frontend/commits/bdf25b1c4c):
|
|
727
|
+
- Updated dependencies
|
|
728
|
+
[645918eda6](https://bitbucket.org/atlassian/atlassian-frontend/commits/645918eda6):
|
|
729
|
+
- Updated dependencies
|
|
730
|
+
[fad8a16962](https://bitbucket.org/atlassian/atlassian-frontend/commits/fad8a16962):
|
|
731
|
+
- @atlaskit/build-utils@2.6.4
|
|
732
|
+
- @atlaskit/editor-test-helpers@11.0.0
|
|
733
|
+
- @atlaskit/docs@8.5.0
|
|
718
734
|
|
|
719
735
|
## 18.17.0
|
|
720
736
|
|
|
721
737
|
### Minor Changes
|
|
722
738
|
|
|
723
|
-
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
### Patch Changes
|
|
728
|
-
|
|
729
|
-
-
|
|
730
|
-
|
|
731
|
-
-
|
|
732
|
-
|
|
733
|
-
-
|
|
734
|
-
|
|
735
|
-
-
|
|
736
|
-
|
|
737
|
-
-
|
|
738
|
-
|
|
739
|
-
-
|
|
740
|
-
|
|
741
|
-
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
739
|
+
- [minor][0732eedea7](https://bitbucket.org/atlassian/atlassian-frontend/commits/0732eedea7):
|
|
740
|
+
|
|
741
|
+
Adding analytics for mention providers
|
|
742
|
+
|
|
743
|
+
### Patch Changes
|
|
744
|
+
|
|
745
|
+
- Updated dependencies
|
|
746
|
+
[66dcced7a0](https://bitbucket.org/atlassian/atlassian-frontend/commits/66dcced7a0):
|
|
747
|
+
- Updated dependencies
|
|
748
|
+
[fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
|
|
749
|
+
- Updated dependencies
|
|
750
|
+
[0732eedea7](https://bitbucket.org/atlassian/atlassian-frontend/commits/0732eedea7):
|
|
751
|
+
- Updated dependencies
|
|
752
|
+
[fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
|
|
753
|
+
- Updated dependencies
|
|
754
|
+
[eea5e9bd8c](https://bitbucket.org/atlassian/atlassian-frontend/commits/eea5e9bd8c):
|
|
755
|
+
- Updated dependencies
|
|
756
|
+
[fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
|
|
757
|
+
- Updated dependencies
|
|
758
|
+
[5e3aab8e77](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e3aab8e77):
|
|
759
|
+
- @atlaskit/docs@8.4.0
|
|
760
|
+
- @atlaskit/icon@20.1.0
|
|
761
|
+
- @atlaskit/util-data-test@13.1.2
|
|
762
|
+
- @atlaskit/editor-test-helpers@10.6.1
|
|
763
|
+
- @atlaskit/avatar@17.1.9
|
|
764
|
+
- @atlaskit/button@13.3.9
|
|
765
|
+
- @atlaskit/lozenge@9.1.6
|
|
766
|
+
- @atlaskit/tooltip@15.2.5
|
|
751
767
|
|
|
752
768
|
## 18.16.2
|
|
753
769
|
|
|
754
770
|
### Patch Changes
|
|
755
771
|
|
|
756
|
-
-
|
|
772
|
+
- [patch][6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
|
|
757
773
|
|
|
758
|
-
|
|
759
|
-
|
|
774
|
+
Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
|
|
775
|
+
[6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
|
|
760
776
|
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
777
|
+
- @atlaskit/docs@8.3.2
|
|
778
|
+
- @atlaskit/analytics-next@6.3.5
|
|
779
|
+
- @atlaskit/avatar@17.1.7
|
|
780
|
+
- @atlaskit/button@13.3.7
|
|
781
|
+
- @atlaskit/icon@20.0.1
|
|
782
|
+
- @atlaskit/lozenge@9.1.4
|
|
783
|
+
- @atlaskit/theme@9.5.1
|
|
784
|
+
- @atlaskit/tooltip@15.2.3
|
|
785
|
+
- @atlaskit/editor-test-helpers@10.5.1
|
|
786
|
+
- @atlaskit/analytics-gas-types@4.0.13
|
|
787
|
+
- @atlaskit/elements-test-helpers@0.6.7
|
|
788
|
+
- @atlaskit/util-data-test@13.1.1
|
|
789
|
+
- @atlaskit/util-service-support@5.0.1
|
|
774
790
|
|
|
775
791
|
## 18.16.1
|
|
776
792
|
|
|
777
793
|
### Patch Changes
|
|
778
794
|
|
|
779
|
-
-
|
|
780
|
-
|
|
781
|
-
-
|
|
782
|
-
|
|
783
|
-
-
|
|
784
|
-
|
|
785
|
-
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
795
|
+
- Updated dependencies
|
|
796
|
+
[3b19e30129](https://bitbucket.org/atlassian/atlassian-frontend/commits/3b19e30129):
|
|
797
|
+
- Updated dependencies
|
|
798
|
+
[fe4eaf06fc](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe4eaf06fc):
|
|
799
|
+
- Updated dependencies
|
|
800
|
+
[c0102a3ea2](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0102a3ea2):
|
|
801
|
+
- Updated dependencies
|
|
802
|
+
[b9dc265bc9](https://bitbucket.org/atlassian/atlassian-frontend/commits/b9dc265bc9):
|
|
803
|
+
- @atlaskit/editor-test-helpers@10.5.0
|
|
804
|
+
- @atlaskit/icon@20.0.0
|
|
805
|
+
- @atlaskit/avatar@17.1.6
|
|
806
|
+
- @atlaskit/docs@8.3.1
|
|
807
|
+
- @atlaskit/button@13.3.6
|
|
808
|
+
- @atlaskit/tooltip@15.2.2
|
|
793
809
|
|
|
794
810
|
## 18.16.0
|
|
795
811
|
|
|
796
812
|
### Minor Changes
|
|
797
813
|
|
|
798
|
-
-
|
|
814
|
+
- [minor][49fbe3d3bf](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/49fbe3d3bf):
|
|
799
815
|
|
|
800
|
-
|
|
816
|
+
MentionProvider can be consumed directly from `@atlaskit/mention/types` entry point
|
|
801
817
|
|
|
802
818
|
### Patch Changes
|
|
803
819
|
|
|
804
|
-
-
|
|
805
|
-
|
|
806
|
-
-
|
|
807
|
-
|
|
808
|
-
-
|
|
809
|
-
|
|
810
|
-
-
|
|
811
|
-
|
|
812
|
-
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
820
|
+
- Updated dependencies
|
|
821
|
+
[c1d4898af5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c1d4898af5):
|
|
822
|
+
- Updated dependencies
|
|
823
|
+
[3c0f6feee5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3c0f6feee5):
|
|
824
|
+
- Updated dependencies
|
|
825
|
+
[10425b84b4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/10425b84b4):
|
|
826
|
+
- Updated dependencies
|
|
827
|
+
[f9c291923c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f9c291923c):
|
|
828
|
+
- Updated dependencies
|
|
829
|
+
[926798632e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/926798632e):
|
|
830
|
+
- @atlaskit/icon@19.0.11
|
|
831
|
+
- @atlaskit/theme@9.3.0
|
|
832
|
+
- @atlaskit/editor-test-helpers@10.3.0
|
|
817
833
|
|
|
818
834
|
## 18.15.8
|
|
819
835
|
|
|
820
836
|
### Patch Changes
|
|
821
837
|
|
|
822
|
-
-
|
|
838
|
+
- [patch][d222c2b987](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d222c2b987):
|
|
823
839
|
|
|
824
|
-
|
|
825
|
-
|
|
840
|
+
Theme has been converted to Typescript. Typescript consumers will now get static type safety. Flow
|
|
841
|
+
types are no longer provided.
|
|
826
842
|
|
|
827
|
-
|
|
843
|
+
### Breaking
|
|
828
844
|
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
845
|
+
** getTokens props changes ** When defining the value function passed into a ThemeProvider, the
|
|
846
|
+
getTokens parameter cannot be called without props; if no props are provided an empty object `{}`
|
|
847
|
+
must be passed in:
|
|
832
848
|
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
849
|
+
```javascript
|
|
850
|
+
<CustomTheme.Provider
|
|
851
|
+
value={t => ({ ...t(), backgroundColor: '#333'})}
|
|
852
|
+
>
|
|
853
|
+
```
|
|
838
854
|
|
|
839
|
-
|
|
855
|
+
becomes:
|
|
840
856
|
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
857
|
+
```javascript
|
|
858
|
+
<CustomTheme.Provider
|
|
859
|
+
value={t => ({ ...t({}), backgroundColor: '#333'})}
|
|
860
|
+
>
|
|
861
|
+
```
|
|
846
862
|
|
|
847
|
-
|
|
848
|
-
|
|
863
|
+
** Color palette changes ** Color palettes have been moved into their own file. Users will need to
|
|
864
|
+
update imports from this:
|
|
849
865
|
|
|
850
|
-
|
|
851
|
-
|
|
866
|
+
```javascript
|
|
867
|
+
import { colors } from '@atlaskit/theme';
|
|
852
868
|
|
|
853
|
-
|
|
854
|
-
|
|
869
|
+
colors.colorPalette('8');
|
|
870
|
+
```
|
|
855
871
|
|
|
856
|
-
|
|
872
|
+
to this:
|
|
857
873
|
|
|
858
|
-
|
|
859
|
-
|
|
874
|
+
```javascript
|
|
875
|
+
import { colorPalette } from '@atlaskit/theme';
|
|
860
876
|
|
|
861
|
-
|
|
862
|
-
|
|
877
|
+
colorPalette.colorPalette('8');
|
|
878
|
+
```
|
|
863
879
|
|
|
864
|
-
|
|
880
|
+
or for multi entry-point users:
|
|
865
881
|
|
|
866
|
-
|
|
867
|
-
|
|
882
|
+
```javascript
|
|
883
|
+
import * as colors from '@atlaskit/theme/colors';
|
|
868
884
|
|
|
869
|
-
|
|
870
|
-
|
|
885
|
+
colors.colorPalette('8');
|
|
886
|
+
```
|
|
871
887
|
|
|
872
|
-
|
|
888
|
+
to this:
|
|
873
889
|
|
|
874
|
-
|
|
875
|
-
|
|
890
|
+
```javascript
|
|
891
|
+
import * as colorPalettes from '@atlaskit/theme/color-palette';
|
|
876
892
|
|
|
877
|
-
|
|
878
|
-
|
|
893
|
+
colorPalettes.colorPalette('8');
|
|
894
|
+
```
|
|
879
895
|
|
|
880
896
|
## 18.15.7
|
|
881
897
|
|
|
882
|
-
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
898
|
+
- Updated dependencies
|
|
899
|
+
[42a92cad4e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/42a92cad4e):
|
|
900
|
+
- @atlaskit/util-data-test@13.0.1
|
|
901
|
+
- @atlaskit/util-service-support@5.0.0
|
|
886
902
|
|
|
887
903
|
## 18.15.6
|
|
888
904
|
|
|
889
905
|
### Patch Changes
|
|
890
906
|
|
|
891
|
-
-
|
|
907
|
+
- [patch][d04ac087fc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d04ac087fc):
|
|
892
908
|
|
|
893
|
-
|
|
909
|
+
Handle query parameters for operations in mentions
|
|
894
910
|
|
|
895
911
|
## 18.15.5
|
|
896
912
|
|
|
897
|
-
-
|
|
898
|
-
|
|
899
|
-
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
913
|
+
- Updated dependencies
|
|
914
|
+
[bd94b1d552](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bd94b1d552):
|
|
915
|
+
- Updated dependencies
|
|
916
|
+
[ae4f336a3a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ae4f336a3a):
|
|
917
|
+
- @atlaskit/util-data-test@13.0.0
|
|
918
|
+
- @atlaskit/i18n-tools@0.6.0
|
|
919
|
+
- @atlaskit/util-service-support@4.1.0
|
|
920
|
+
- @atlaskit/editor-test-helpers@10.1.2
|
|
905
921
|
|
|
906
922
|
## 18.15.4
|
|
907
923
|
|
|
908
924
|
### Patch Changes
|
|
909
925
|
|
|
910
|
-
-
|
|
926
|
+
- [patch][35d2229b2a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/35d2229b2a):
|
|
911
927
|
|
|
912
|
-
|
|
928
|
+
Adding missing license to packages and update to Copyright 2019 Atlassian Pty Ltd.
|
|
913
929
|
|
|
914
930
|
## 18.15.3
|
|
915
931
|
|
|
916
932
|
### Patch Changes
|
|
917
933
|
|
|
918
|
-
-
|
|
934
|
+
- [patch][a2d0043716](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a2d0043716):
|
|
919
935
|
|
|
920
|
-
|
|
936
|
+
Updated version of analytics-next to fix potential incompatibilities with TS 3.6
|
|
921
937
|
|
|
922
938
|
## 18.15.2
|
|
923
939
|
|
|
924
|
-
-
|
|
925
|
-
|
|
926
|
-
|
|
940
|
+
- Updated dependencies
|
|
941
|
+
[80adfefba2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/80adfefba2):
|
|
942
|
+
- @atlaskit/editor-test-helpers@10.0.0
|
|
927
943
|
|
|
928
944
|
## 18.15.1
|
|
929
945
|
|
|
930
|
-
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
946
|
+
- Updated dependencies
|
|
947
|
+
[8d0f37c23e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8d0f37c23e):
|
|
948
|
+
- @atlaskit/avatar@17.0.0
|
|
949
|
+
- @atlaskit/theme@9.2.2
|
|
934
950
|
|
|
935
951
|
## 18.15.0
|
|
936
952
|
|
|
937
953
|
### Minor Changes
|
|
938
954
|
|
|
939
|
-
-
|
|
955
|
+
- [minor][c6efb2f5b6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c6efb2f5b6):
|
|
940
956
|
|
|
941
|
-
|
|
957
|
+
Prefix the legacy lifecycle methods with UNSAFE\_\* to avoid warning in React 16.9+
|
|
942
958
|
|
|
943
|
-
|
|
944
|
-
|
|
959
|
+
More information about the deprecation of lifecycles methods can be found here:
|
|
960
|
+
https://reactjs.org/blog/2018/03/29/react-v-16-3.html#component-lifecycle-changes
|
|
945
961
|
|
|
946
962
|
## 18.14.4
|
|
947
963
|
|
|
948
964
|
### Patch Changes
|
|
949
965
|
|
|
950
|
-
-
|
|
966
|
+
- [patch][097b696613](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/097b696613):
|
|
951
967
|
|
|
952
|
-
|
|
953
|
-
|
|
968
|
+
Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving
|
|
969
|
+
non-relative imports as relative imports
|
|
954
970
|
|
|
955
971
|
## 18.14.3
|
|
956
972
|
|
|
957
973
|
### Patch Changes
|
|
958
974
|
|
|
959
|
-
-
|
|
975
|
+
- [patch][ecca4d1dbb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ecca4d1dbb):
|
|
960
976
|
|
|
961
|
-
|
|
977
|
+
Upgraded Typescript to 3.3.x
|
|
962
978
|
|
|
963
979
|
## 18.14.2
|
|
964
980
|
|
|
965
981
|
### Patch Changes
|
|
966
982
|
|
|
967
|
-
-
|
|
983
|
+
- [patch][926b43142b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/926b43142b):
|
|
968
984
|
|
|
969
|
-
|
|
970
|
-
|
|
985
|
+
Analytics-next has been converted to Typescript. Typescript consumers will now get static type
|
|
986
|
+
safety. Flow types are no longer provided. No behavioural changes.
|
|
971
987
|
|
|
972
|
-
|
|
988
|
+
**Breaking changes**
|
|
973
989
|
|
|
974
|
-
|
|
975
|
-
|
|
990
|
+
- `withAnalyticsForSumTypeProps` alias has been removed, please use `withAnalyticsEvents`
|
|
991
|
+
- `AnalyticsContextWrappedComp` alias has been removed, please use `withAnalyticsContext`
|
|
976
992
|
|
|
977
|
-
|
|
993
|
+
**Breaking changes to TypeScript annotations**
|
|
978
994
|
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
+
- `withAnalyticsEvents` now infers proptypes automatically, consumers no longer need to provide
|
|
996
|
+
props as a generic type.
|
|
997
|
+
- `withAnalyticsContext` now infers proptypes automatically, consumers no longer need to provide
|
|
998
|
+
props as a generic type.
|
|
999
|
+
- Type `WithAnalyticsEventProps` has been renamed to `WithAnalyticsEventsProps` to match source
|
|
1000
|
+
code
|
|
1001
|
+
- Type `CreateUIAnalyticsEventSignature` has been renamed to `CreateUIAnalyticsEvent` to match
|
|
1002
|
+
source code
|
|
1003
|
+
- Type `UIAnalyticsEventHandlerSignature` has been renamed to `UIAnalyticsEventHandler` to match
|
|
1004
|
+
source code
|
|
1005
|
+
- Type `AnalyticsEventsPayload` has been renamed to `AnalyticsEventPayload`
|
|
1006
|
+
- Type `ObjectType` has been removed, please use `Record<string, any>` or `[key: string]: any`
|
|
1007
|
+
- Type `UIAnalyticsEventInterface` has been removed, please use `UIAnalyticsEvent`
|
|
1008
|
+
- Type `AnalyticsEventInterface` has been removed, please use `AnalyticsEvent`
|
|
1009
|
+
- Type `CreateAndFireEventFunction` removed and should now be inferred by TypeScript
|
|
1010
|
+
- Type `AnalyticsEventUpdater` removed and should now be inferred by TypeScript
|
|
995
1011
|
|
|
996
1012
|
## 18.14.1
|
|
997
1013
|
|
|
998
1014
|
### Patch Changes
|
|
999
1015
|
|
|
1000
|
-
-
|
|
1016
|
+
- [patch][84b795279d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/84b795279d):
|
|
1001
1017
|
|
|
1002
|
-
|
|
1018
|
+
TEAMS-626 : Adding translations for team mention spotlight
|
|
1003
1019
|
|
|
1004
1020
|
## 18.14.0
|
|
1005
1021
|
|
|
1006
1022
|
### Minor Changes
|
|
1007
1023
|
|
|
1008
|
-
-
|
|
1024
|
+
- [minor][a22fc8004f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a22fc8004f):
|
|
1009
1025
|
|
|
1010
|
-
|
|
1026
|
+
TEAMS-618 : Exporting Team mention spotlight with correct name
|
|
1011
1027
|
|
|
1012
1028
|
## 18.13.0
|
|
1013
1029
|
|
|
1014
1030
|
### Minor Changes
|
|
1015
1031
|
|
|
1016
|
-
-
|
|
1032
|
+
- [minor][9b83fdea35](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9b83fdea35):
|
|
1017
1033
|
|
|
1018
|
-
|
|
1034
|
+
TEAMS-618 : Rename Team mention spotlight to Team Mention Highlight
|
|
1019
1035
|
|
|
1020
1036
|
## 18.12.0
|
|
1021
1037
|
|
|
1022
1038
|
### Minor Changes
|
|
1023
1039
|
|
|
1024
|
-
-
|
|
1040
|
+
- [minor][fe1a882fbb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/fe1a882fbb):
|
|
1025
1041
|
|
|
1026
|
-
|
|
1027
|
-
|
|
1042
|
+
TEAMS-602 : Can pass the team creation link from confluence as an optional parameter to the Team
|
|
1043
|
+
Mention Spotlight
|
|
1028
1044
|
|
|
1029
1045
|
## 18.11.4
|
|
1030
1046
|
|
|
1031
1047
|
### Patch Changes
|
|
1032
1048
|
|
|
1033
|
-
-
|
|
1049
|
+
- [patch][2f62d55150](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2f62d55150):
|
|
1034
1050
|
|
|
1035
|
-
|
|
1036
|
-
|
|
1051
|
+
The mention spotlight can take a context path, and fixing a bug with on-click for the create team
|
|
1052
|
+
link
|
|
1037
1053
|
|
|
1038
1054
|
## 18.11.3
|
|
1039
1055
|
|
|
1040
1056
|
### Patch Changes
|
|
1041
1057
|
|
|
1042
|
-
-
|
|
1058
|
+
- [patch][c72cca2853](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c72cca2853):
|
|
1043
1059
|
|
|
1044
|
-
|
|
1060
|
+
Added analytics when user clicks the create team link
|
|
1045
1061
|
|
|
1046
1062
|
## 18.11.2
|
|
1047
1063
|
|
|
1048
1064
|
### Patch Changes
|
|
1049
1065
|
|
|
1050
|
-
-
|
|
1066
|
+
- [patch][b4d2284e01](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b4d2284e01):
|
|
1051
1067
|
|
|
1052
|
-
|
|
1068
|
+
Added analytics on spotlight viewed.
|
|
1053
1069
|
|
|
1054
1070
|
## 18.11.1
|
|
1055
1071
|
|
|
1056
1072
|
### Patch Changes
|
|
1057
1073
|
|
|
1058
|
-
-
|
|
1074
|
+
- [patch][23f9c8ff08](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/23f9c8ff08):
|
|
1059
1075
|
|
|
1060
|
-
|
|
1076
|
+
Added analytics on closing team mention spotlight
|
|
1061
1077
|
|
|
1062
1078
|
## 18.11.0
|
|
1063
1079
|
|
|
1064
1080
|
### Minor Changes
|
|
1065
1081
|
|
|
1066
|
-
-
|
|
1082
|
+
- [minor][cda47d4480](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cda47d4480):
|
|
1067
1083
|
|
|
1068
|
-
|
|
1069
|
-
|
|
1084
|
+
TEAMS-623 : Before this fix, when Spotlight was being rendered for the 5th time, it briefly
|
|
1085
|
+
appeared and then disappeared. This change fixes that.
|
|
1070
1086
|
|
|
1071
1087
|
## 18.10.0
|
|
1072
1088
|
|
|
1073
1089
|
### Minor Changes
|
|
1074
1090
|
|
|
1075
|
-
-
|
|
1091
|
+
- [minor][e81d32fe9a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e81d32fe9a):
|
|
1076
1092
|
|
|
1077
|
-
|
|
1078
|
-
|
|
1093
|
+
TEAMS-588 : Refactors the Team Spotlight ( which is used in mention typeahead for Fabric Editor
|
|
1094
|
+
and TinyMCE editor). Now can close the spotlight from Fabric Editor by clicking on the x button.
|
|
1079
1095
|
|
|
1080
1096
|
## 18.9.0
|
|
1081
1097
|
|
|
1082
1098
|
### Minor Changes
|
|
1083
1099
|
|
|
1084
|
-
-
|
|
1100
|
+
- [minor][06cfea0870](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/06cfea0870):
|
|
1085
1101
|
|
|
1086
|
-
|
|
1102
|
+
TEAMS-549 : Adding capability to show a spotlight in Fabric Editor
|
|
1087
1103
|
|
|
1088
1104
|
## 18.8.0
|
|
1089
1105
|
|
|
1090
1106
|
### Minor Changes
|
|
1091
1107
|
|
|
1092
|
-
-
|
|
1108
|
+
- [minor][2d8dd7bc30](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2d8dd7bc30):
|
|
1093
1109
|
|
|
1094
|
-
|
|
1110
|
+
Now able to take a prop that will show a feature highlight
|
|
1095
1111
|
|
|
1096
1112
|
## 18.7.3
|
|
1097
1113
|
|
|
1098
1114
|
### Patch Changes
|
|
1099
1115
|
|
|
1100
|
-
-
|
|
1116
|
+
- [patch][9f8ab1084b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9f8ab1084b):
|
|
1101
1117
|
|
|
1102
|
-
|
|
1118
|
+
Consume analytics-next ts type definitions as an ambient declaration.
|
|
1103
1119
|
|
|
1104
1120
|
## 18.7.2
|
|
1105
1121
|
|
|
1106
1122
|
### Patch Changes
|
|
1107
1123
|
|
|
1108
|
-
-
|
|
1124
|
+
- [patch][bbff8a7d87](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bbff8a7d87):
|
|
1109
1125
|
|
|
1110
|
-
|
|
1126
|
+
Fixes bug, missing version.json file
|
|
1111
1127
|
|
|
1112
1128
|
## 18.7.1
|
|
1113
1129
|
|
|
1114
1130
|
### Patch Changes
|
|
1115
1131
|
|
|
1116
|
-
-
|
|
1132
|
+
- [patch][18dfac7332](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/18dfac7332):
|
|
1117
1133
|
|
|
1118
|
-
|
|
1134
|
+
In this PR, we are:
|
|
1119
1135
|
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1136
|
+
- Re-introducing dist build folders
|
|
1137
|
+
- Adding back cjs
|
|
1138
|
+
- Replacing es5 by cjs and es2015 by esm
|
|
1139
|
+
- Creating folders at the root for entry-points
|
|
1140
|
+
- Removing the generation of the entry-points at the root Please see this
|
|
1141
|
+
[ticket](https://product-fabric.atlassian.net/browse/BUILDTOOLS-118) or this
|
|
1142
|
+
[page](https://hello.atlassian.net/wiki/spaces/FED/pages/452325500/Finishing+Atlaskit+multiple+entry+points)
|
|
1143
|
+
for further details
|
|
1128
1144
|
|
|
1129
1145
|
## 18.7.0
|
|
1130
1146
|
|
|
1131
1147
|
### Minor Changes
|
|
1132
1148
|
|
|
1133
|
-
-
|
|
1149
|
+
- [minor][64b87b4ecb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/64b87b4ecb):
|
|
1134
1150
|
|
|
1135
|
-
|
|
1151
|
+
TEAMS-544 : Releasing the initial version of the Mention Spotlight
|
|
1136
1152
|
|
|
1137
1153
|
## 18.6.3
|
|
1138
1154
|
|
|
1139
1155
|
### Patch Changes
|
|
1140
1156
|
|
|
1141
|
-
-
|
|
1157
|
+
- [patch][d0db01b410](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d0db01b410):
|
|
1142
1158
|
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1159
|
+
TypeScript users of withAnalyticsEvents and withAnalyticsContext are now required to provide props
|
|
1160
|
+
as a generic type. This is so that TypeScript can correctly calculate the props and defaultProps
|
|
1161
|
+
of the returned component.
|
|
1146
1162
|
|
|
1147
|
-
|
|
1163
|
+
Before:
|
|
1148
1164
|
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1165
|
+
```typescript
|
|
1166
|
+
withAnalyticsEvents()(Button) as ComponentClass<Props>;
|
|
1167
|
+
```
|
|
1152
1168
|
|
|
1153
|
-
|
|
1169
|
+
After:
|
|
1154
1170
|
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1171
|
+
```typescript
|
|
1172
|
+
withAnalyticsEvents<Props>()(Button);
|
|
1173
|
+
```
|
|
1158
1174
|
|
|
1159
1175
|
## 18.6.2
|
|
1160
1176
|
|
|
1161
|
-
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1177
|
+
- Updated dependencies
|
|
1178
|
+
[06326ef3f7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/06326ef3f7):
|
|
1179
|
+
- @atlaskit/docs@8.1.3
|
|
1180
|
+
- @atlaskit/avatar@16.0.6
|
|
1181
|
+
- @atlaskit/tooltip@15.0.2
|
|
1182
|
+
- @atlaskit/editor-test-helpers@9.5.2
|
|
1183
|
+
- @atlaskit/icon@19.0.0
|
|
1168
1184
|
|
|
1169
1185
|
## 18.6.1
|
|
1170
1186
|
|
|
1171
1187
|
### Patch Changes
|
|
1172
1188
|
|
|
1173
|
-
-
|
|
1189
|
+
- [patch][227431f9cb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/227431f9cb):
|
|
1174
1190
|
|
|
1175
|
-
|
|
1191
|
+
FS-4028 - Update translations for mention component
|
|
1176
1192
|
|
|
1177
1193
|
## 18.6.0
|
|
1178
1194
|
|
|
1179
1195
|
### Minor Changes
|
|
1180
1196
|
|
|
1181
|
-
-
|
|
1197
|
+
- [minor][58dd589a04](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/58dd589a04):
|
|
1182
1198
|
|
|
1183
|
-
|
|
1184
|
-
|
|
1199
|
+
Update TeamMentionResource to accept teamLinkResolver option which is used to construct a team
|
|
1200
|
+
link. Fix missing userId of user mentions in analytics in editor-core
|
|
1185
1201
|
|
|
1186
1202
|
## 18.5.0
|
|
1187
1203
|
|
|
1188
1204
|
### Minor Changes
|
|
1189
1205
|
|
|
1190
|
-
-
|
|
1206
|
+
- [minor][2d1c3db523](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2d1c3db523):
|
|
1191
1207
|
|
|
1192
|
-
|
|
1208
|
+
FS-3986 - Support analytics for mention hydration.
|
|
1193
1209
|
|
|
1194
1210
|
## 18.4.2
|
|
1195
1211
|
|
|
1196
1212
|
### Patch Changes
|
|
1197
1213
|
|
|
1198
|
-
-
|
|
1214
|
+
- [patch][b23479c7ba](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b23479c7ba):
|
|
1199
1215
|
|
|
1200
|
-
|
|
1216
|
+
fix i18n-tools validation error on try/catch
|
|
1201
1217
|
|
|
1202
1218
|
## 18.4.1
|
|
1203
1219
|
|
|
1204
1220
|
### Patch Changes
|
|
1205
1221
|
|
|
1206
|
-
-
|
|
1222
|
+
- [patch][434b2688af](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/434b2688af):
|
|
1207
1223
|
|
|
1208
|
-
|
|
1224
|
+
Update translation
|
|
1209
1225
|
|
|
1210
1226
|
## 18.4.0
|
|
1211
1227
|
|
|
1212
1228
|
### Minor Changes
|
|
1213
1229
|
|
|
1214
|
-
-
|
|
1230
|
+
- [minor][11cb8d8626](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/11cb8d8626):
|
|
1215
1231
|
|
|
1216
|
-
|
|
1232
|
+
- Remove @atlaskit/analytics dependency.
|
|
1217
1233
|
|
|
1218
1234
|
## 18.3.3
|
|
1219
1235
|
|
|
1220
1236
|
### Patch Changes
|
|
1221
1237
|
|
|
1222
|
-
-
|
|
1238
|
+
- [patch][ac95568398](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ac95568398):
|
|
1223
1239
|
|
|
1224
|
-
|
|
1225
|
-
|
|
1240
|
+
- Some messages are never pushed to Transifex so we need to run `yarn i18n:push && yarn i18n:pull`
|
|
1241
|
+
again
|
|
1226
1242
|
|
|
1227
1243
|
## 18.3.2
|
|
1228
1244
|
|
|
1229
|
-
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1245
|
+
- Updated dependencies
|
|
1246
|
+
[67f06f58dd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/67f06f58dd):
|
|
1247
|
+
- @atlaskit/avatar@16.0.4
|
|
1248
|
+
- @atlaskit/icon@18.0.1
|
|
1249
|
+
- @atlaskit/tooltip@15.0.0
|
|
1234
1250
|
|
|
1235
1251
|
## 18.3.1
|
|
1236
1252
|
|
|
1237
|
-
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1253
|
+
- Updated dependencies
|
|
1254
|
+
[cfc3c8adb3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cfc3c8adb3):
|
|
1255
|
+
- @atlaskit/docs@8.1.2
|
|
1256
|
+
- @atlaskit/avatar@16.0.3
|
|
1257
|
+
- @atlaskit/tooltip@14.0.3
|
|
1258
|
+
- @atlaskit/editor-test-helpers@9.3.9
|
|
1259
|
+
- @atlaskit/icon@18.0.0
|
|
1244
1260
|
|
|
1245
1261
|
## 18.3.0
|
|
1246
1262
|
|
|
1247
1263
|
### Minor Changes
|
|
1248
1264
|
|
|
1249
|
-
-
|
|
1265
|
+
- [minor][0b55c3b421](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0b55c3b421):
|
|
1250
1266
|
|
|
1251
|
-
|
|
1267
|
+
FS-3244 - Add support for resolving mention names client-side
|
|
1252
1268
|
|
|
1253
1269
|
## 18.2.1
|
|
1254
1270
|
|
|
1255
|
-
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1271
|
+
- Updated dependencies
|
|
1272
|
+
[ed41cac6ac](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ed41cac6ac):
|
|
1273
|
+
- @atlaskit/theme@9.0.3
|
|
1274
|
+
- @atlaskit/lozenge@9.0.0
|
|
1259
1275
|
|
|
1260
1276
|
## 18.2.0
|
|
1261
1277
|
|
|
1262
|
-
-
|
|
1278
|
+
- [minor][a0d5982270](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a0d5982270):
|
|
1263
1279
|
|
|
1264
|
-
|
|
1280
|
+
- Don't display nickname in mention list if it is the same as name.
|
|
1265
1281
|
|
|
1266
1282
|
## 18.1.0
|
|
1267
1283
|
|
|
1268
|
-
-
|
|
1284
|
+
- [minor][5e4ff01e4c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5e4ff01e4c):
|
|
1269
1285
|
|
|
1270
|
-
|
|
1286
|
+
- Fix typeahead re-rendering when moving mouse
|
|
1271
1287
|
|
|
1272
|
-
|
|
1288
|
+
Breaking change -> TypeAheadItem:
|
|
1273
1289
|
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1290
|
+
```ts
|
|
1291
|
+
export type TypeAheadItemRenderProps = {
|
|
1292
|
+
onClick: () => void;
|
|
1277
1293
|
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1294
|
+
// BREAKING CHANGE
|
|
1295
|
+
// onMouseMove -> onHover
|
|
1296
|
+
onHover: () => void;
|
|
1281
1297
|
|
|
1282
|
-
|
|
1283
|
-
|
|
1298
|
+
isSelected: boolean;
|
|
1299
|
+
};
|
|
1284
1300
|
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1301
|
+
export type TypeAheadItem = {
|
|
1302
|
+
/*...*/
|
|
1303
|
+
render?: (
|
|
1304
|
+
props: TypeAheadItemRenderProps,
|
|
1305
|
+
) => React.ReactElement<TypeAheadItemRenderProps> | null;
|
|
1306
|
+
/*...*/
|
|
1307
|
+
};
|
|
1308
|
+
```
|
|
1293
1309
|
|
|
1294
|
-
|
|
1295
|
-
|
|
1310
|
+
Items returned from `QuickInsertProvider#getItems` method that have custom `render` function will
|
|
1311
|
+
now get `onHover` instead of `onMouseMove`.
|
|
1296
1312
|
|
|
1297
1313
|
## 18.0.0
|
|
1298
1314
|
|
|
1299
|
-
-
|
|
1315
|
+
- [major][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
|
|
1300
1316
|
|
|
1301
|
-
|
|
1302
|
-
|
|
1317
|
+
- Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use
|
|
1318
|
+
this package, please ensure you use at least this version of react and react-dom.
|
|
1303
1319
|
|
|
1304
1320
|
## 17.6.9
|
|
1305
1321
|
|
|
1306
|
-
-
|
|
1322
|
+
- [patch][d3cad2622e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d3cad2622e):
|
|
1307
1323
|
|
|
1308
|
-
|
|
1324
|
+
- Removes babel-runtime in favour of @babel/runtime
|
|
1309
1325
|
|
|
1310
1326
|
## 17.6.8
|
|
1311
1327
|
|
|
1312
|
-
-
|
|
1328
|
+
- [patch][0a4ccaafae](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0a4ccaafae):
|
|
1313
1329
|
|
|
1314
|
-
|
|
1330
|
+
- Bump tslib
|
|
1315
1331
|
|
|
1316
1332
|
## 17.6.7
|
|
1317
1333
|
|
|
1318
|
-
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1334
|
+
- Updated dependencies
|
|
1335
|
+
[9c0b4744be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0b4744be):
|
|
1336
|
+
- @atlaskit/docs@7.0.3
|
|
1337
|
+
- @atlaskit/avatar@15.0.4
|
|
1338
|
+
- @atlaskit/icon@16.0.9
|
|
1339
|
+
- @atlaskit/lozenge@7.0.2
|
|
1340
|
+
- @atlaskit/tooltip@13.0.4
|
|
1341
|
+
- @atlaskit/theme@8.1.7
|
|
1326
1342
|
|
|
1327
1343
|
## 17.6.6
|
|
1328
1344
|
|
|
1329
|
-
-
|
|
1345
|
+
- [patch][3f28e6443c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3f28e6443c):
|
|
1330
1346
|
|
|
1331
|
-
|
|
1332
|
-
|
|
1347
|
+
- @atlaskit/analytics-next-types is deprecated. Now you can use types for @atlaskit/analytics-next
|
|
1348
|
+
supplied from itself.
|
|
1333
1349
|
|
|
1334
1350
|
## 17.6.5
|
|
1335
1351
|
|
|
1336
|
-
-
|
|
1352
|
+
- [patch][ddb3238b1c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ddb3238b1c):
|
|
1337
1353
|
|
|
1338
|
-
|
|
1354
|
+
- TEAMS-396 : Changing byline logic for mention
|
|
1339
1355
|
|
|
1340
1356
|
## 17.6.4
|
|
1341
1357
|
|
|
1342
|
-
-
|
|
1358
|
+
- [patch][d13fad66df](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d13fad66df):
|
|
1343
1359
|
|
|
1344
|
-
|
|
1360
|
+
- Enable esModuleInterop for typescript, this allows correct use of default exports
|
|
1345
1361
|
|
|
1346
1362
|
## 17.6.3
|
|
1347
1363
|
|
|
1348
|
-
-
|
|
1364
|
+
- [patch][14b89652d7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/14b89652d7):
|
|
1349
1365
|
|
|
1350
|
-
|
|
1366
|
+
- TEAMS-364 : Renaming the missed test files in the previous PR
|
|
1351
1367
|
|
|
1352
1368
|
## 17.6.2
|
|
1353
1369
|
|
|
1354
|
-
-
|
|
1370
|
+
- [patch][c8b669eaec](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c8b669eaec):
|
|
1355
1371
|
|
|
1356
|
-
|
|
1372
|
+
- TEAMS-364 : Renaming Team mention description highlight classes to Byline
|
|
1357
1373
|
|
|
1358
1374
|
## 17.6.1
|
|
1359
1375
|
|
|
1360
|
-
-
|
|
1376
|
+
- [patch][d26570e3b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d26570e3b5):
|
|
1361
1377
|
|
|
1362
|
-
|
|
1363
|
-
|
|
1378
|
+
- Update i18n for team mention
|
|
1379
|
+
- Fix a bug in team mention: missing https protocol in team link
|
|
1364
1380
|
|
|
1365
1381
|
## 17.6.0
|
|
1366
1382
|
|
|
1367
|
-
-
|
|
1383
|
+
- [minor][b31086fcf6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b31086fcf6):
|
|
1368
1384
|
|
|
1369
|
-
|
|
1385
|
+
- Add additional entry points for selective imports of mention components
|
|
1370
1386
|
|
|
1371
1387
|
## 17.5.0
|
|
1372
1388
|
|
|
1373
|
-
-
|
|
1389
|
+
- [minor][b0210d7ccc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b0210d7ccc):
|
|
1374
1390
|
|
|
1375
|
-
|
|
1391
|
+
- reset jest modules before hydration
|
|
1376
1392
|
|
|
1377
1393
|
## 17.4.0
|
|
1378
1394
|
|
|
1379
|
-
-
|
|
1395
|
+
- [minor][1affe17dc4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1affe17dc4):
|
|
1380
1396
|
|
|
1381
|
-
|
|
1397
|
+
- add analytics events for team mention
|
|
1382
1398
|
|
|
1383
1399
|
## 17.3.0
|
|
1384
1400
|
|
|
1385
|
-
-
|
|
1401
|
+
- [minor][073320a681](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/073320a681):
|
|
1386
1402
|
|
|
1387
|
-
|
|
1403
|
+
- Improve TeamMentionResource, both team and user requests are not blocked together
|
|
1388
1404
|
|
|
1389
1405
|
## 17.2.0
|
|
1390
1406
|
|
|
1391
|
-
-
|
|
1407
|
+
- [patch][5ca3696b14](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5ca3696b14):
|
|
1392
1408
|
|
|
1393
|
-
|
|
1409
|
+
- TEAMS-319 : Render member counts and whether team includes you in byline
|
|
1394
1410
|
|
|
1395
|
-
-
|
|
1411
|
+
- [minor][b8b55dc6ae](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b8b55dc6ae):
|
|
1396
1412
|
|
|
1397
|
-
|
|
1413
|
+
- TEAMS-319 : Render member counts and whether team includes you in byline
|
|
1398
1414
|
|
|
1399
1415
|
## 17.1.1
|
|
1400
1416
|
|
|
1401
|
-
-
|
|
1417
|
+
- [patch][1bcaa1b991](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1bcaa1b991):
|
|
1402
1418
|
|
|
1403
|
-
|
|
1404
|
-
index.js
|
|
1419
|
+
- Add npmignore for index.ts to prevent some jest tests from resolving that instead of index.js
|
|
1405
1420
|
|
|
1406
1421
|
## 17.1.0
|
|
1407
1422
|
|
|
1408
|
-
-
|
|
1423
|
+
- [minor][b684722884](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b684722884):
|
|
1409
1424
|
|
|
1410
|
-
|
|
1425
|
+
- improvement of SSR tests and examples for Fabric Elements
|
|
1411
1426
|
|
|
1412
1427
|
## 17.0.0
|
|
1413
1428
|
|
|
1414
|
-
-
|
|
1429
|
+
- [major][9d5cc39394](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d5cc39394):
|
|
1415
1430
|
|
|
1416
|
-
|
|
1431
|
+
- Dropped ES5 distributables from the typescript packages
|
|
1417
1432
|
|
|
1418
1433
|
## 16.4.0
|
|
1419
1434
|
|
|
1420
|
-
-
|
|
1435
|
+
- [minor][fb679d390f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/fb679d390f):
|
|
1421
1436
|
|
|
1422
|
-
|
|
1423
|
-
|
|
1437
|
+
- Add a new TeamMenioResource for @atlaskit/mention package. That allows to fetch teams data for
|
|
1438
|
+
mention from a team service (Legion service)
|
|
1424
1439
|
|
|
1425
1440
|
## 16.3.0
|
|
1426
1441
|
|
|
1427
|
-
-
|
|
1442
|
+
- [minor][7261577953](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7261577953):
|
|
1428
1443
|
|
|
1429
|
-
|
|
1444
|
+
- use @atlaskit/ssr to ssr/hydrate mention examples
|
|
1430
1445
|
|
|
1431
1446
|
## 16.2.2
|
|
1432
1447
|
|
|
1433
|
-
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1448
|
+
- Updated dependencies
|
|
1449
|
+
[76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
|
|
1450
|
+
- @atlaskit/icon@16.0.4
|
|
1451
|
+
- @atlaskit/analytics-gas-types@3.2.5
|
|
1452
|
+
- @atlaskit/util-data-test@10.2.3
|
|
1453
|
+
- @atlaskit/util-service-support@3.1.1
|
|
1454
|
+
- @atlaskit/docs@7.0.0
|
|
1455
|
+
- @atlaskit/analytics-next@4.0.0
|
|
1456
|
+
- @atlaskit/analytics@5.0.0
|
|
1457
|
+
- @atlaskit/avatar@15.0.0
|
|
1458
|
+
- @atlaskit/lozenge@7.0.0
|
|
1459
|
+
- @atlaskit/theme@8.0.0
|
|
1460
|
+
- @atlaskit/tooltip@13.0.0
|
|
1446
1461
|
|
|
1447
1462
|
## 16.2.1
|
|
1448
1463
|
|
|
1449
|
-
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1464
|
+
- Updated dependencies
|
|
1465
|
+
[4af5bd2a58](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4af5bd2a58):
|
|
1466
|
+
- @atlaskit/editor-test-helpers@7.0.0
|
|
1452
1467
|
|
|
1453
1468
|
## 16.2.0
|
|
1454
1469
|
|
|
1455
|
-
-
|
|
1470
|
+
- [minor][ef368572dc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ef368572dc):
|
|
1456
1471
|
|
|
1457
|
-
|
|
1472
|
+
- Update types for @atlaskit/mention
|
|
1458
1473
|
|
|
1459
1474
|
## 16.1.0
|
|
1460
1475
|
|
|
1461
|
-
-
|
|
1476
|
+
- [minor][0f3f9f0992](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0f3f9f0992):
|
|
1462
1477
|
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1478
|
+
- Fix context identifiers not being passed to mention provider's calls. MentionProvider interface
|
|
1479
|
+
was updated to include the optional contextIdentifier parameter in filter and
|
|
1480
|
+
recordMentionSelection methods.
|
|
1466
1481
|
|
|
1467
1482
|
## 16.0.1
|
|
1468
1483
|
|
|
1469
|
-
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1484
|
+
- Updated dependencies
|
|
1485
|
+
[d7ef59d432](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d7ef59d432):
|
|
1486
|
+
- @atlaskit/docs@6.0.1
|
|
1487
|
+
- @atlaskit/avatar@14.1.8
|
|
1488
|
+
- @atlaskit/tooltip@12.1.15
|
|
1489
|
+
- @atlaskit/icon@16.0.0
|
|
1475
1490
|
|
|
1476
1491
|
## 16.0.0
|
|
1477
1492
|
|
|
1478
|
-
-
|
|
1493
|
+
- [major][0c116d6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0c116d6):
|
|
1479
1494
|
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
them.
|
|
1495
|
+
- Removed client-side indexed cache of mention results. Also removed method 'getUsersInContext'
|
|
1496
|
+
from MentionResourceConfig, 'remoteSearch' from MentionStats and 'weight' from
|
|
1497
|
+
MentionDescription. If you used to use them, simply remove any references to them.
|
|
1484
1498
|
|
|
1485
1499
|
## 15.3.0
|
|
1486
1500
|
|
|
1487
|
-
-
|
|
1501
|
+
- [minor][c238c00](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c238c00):
|
|
1488
1502
|
|
|
1489
|
-
|
|
1503
|
+
- added i18n support to mentions
|
|
1490
1504
|
|
|
1491
|
-
-
|
|
1505
|
+
- [minor][3b1de17](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3b1de17):
|
|
1492
1506
|
|
|
1493
|
-
|
|
1507
|
+
- added i18n translated files
|
|
1494
1508
|
|
|
1495
1509
|
## 15.2.2
|
|
1496
1510
|
|
|
1497
|
-
-
|
|
1511
|
+
- [patch][0f19693](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0f19693):
|
|
1498
1512
|
|
|
1499
|
-
|
|
1513
|
+
- added tests for xregexp transformer, updated README and simplified code
|
|
1500
1514
|
|
|
1501
|
-
-
|
|
1515
|
+
- [patch][b789b3a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b789b3a):
|
|
1502
1516
|
|
|
1503
|
-
|
|
1504
|
-
|
|
1517
|
+
- removed xregexp library dependency from emoji and mention components, added xregexp-transformer
|
|
1518
|
+
package to compile xregexp expressions to unicode charsets
|
|
1505
1519
|
|
|
1506
1520
|
## 15.2.1
|
|
1507
1521
|
|
|
1508
|
-
-
|
|
1522
|
+
- [patch][cae5adb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cae5adb):
|
|
1509
1523
|
|
|
1510
|
-
|
|
1524
|
+
- UR-197: Add queryLength to mentionTypeahead rendered event
|
|
1511
1525
|
|
|
1512
1526
|
## 15.2.0
|
|
1513
1527
|
|
|
1514
|
-
-
|
|
1528
|
+
- [minor][f62557c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f62557c):
|
|
1515
1529
|
|
|
1516
|
-
|
|
1530
|
+
- ED-5888 Add dark mode for mention
|
|
1517
1531
|
|
|
1518
1532
|
## 15.1.9
|
|
1519
1533
|
|
|
1520
|
-
-
|
|
1534
|
+
- [patch][b81da9b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b81da9b):
|
|
1521
1535
|
|
|
1522
|
-
|
|
1536
|
+
- Fix typescript types to support strictFunctionTypes
|
|
1523
1537
|
|
|
1524
1538
|
## 15.1.8
|
|
1525
1539
|
|
|
1526
|
-
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1540
|
+
- Updated dependencies [58b84fa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/58b84fa):
|
|
1541
|
+
- @atlaskit/analytics@4.0.7
|
|
1542
|
+
- @atlaskit/analytics-next@3.1.2
|
|
1543
|
+
- @atlaskit/avatar@14.1.7
|
|
1544
|
+
- @atlaskit/icon@15.0.2
|
|
1545
|
+
- @atlaskit/lozenge@6.2.4
|
|
1546
|
+
- @atlaskit/theme@7.0.1
|
|
1547
|
+
- @atlaskit/tooltip@12.1.13
|
|
1548
|
+
- @atlaskit/analytics-gas-types@3.2.3
|
|
1549
|
+
- @atlaskit/util-data-test@10.0.25
|
|
1550
|
+
- @atlaskit/util-service-support@3.0.5
|
|
1551
|
+
- @atlaskit/docs@6.0.0
|
|
1538
1552
|
|
|
1539
1553
|
## 15.1.7
|
|
1540
1554
|
|
|
1541
|
-
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1555
|
+
- Updated dependencies [d13242d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d13242d):
|
|
1556
|
+
- @atlaskit/docs@5.2.3
|
|
1557
|
+
- @atlaskit/icon@15.0.1
|
|
1558
|
+
- @atlaskit/tooltip@12.1.12
|
|
1559
|
+
- @atlaskit/theme@7.0.0
|
|
1560
|
+
- @atlaskit/avatar@14.1.6
|
|
1561
|
+
- @atlaskit/lozenge@6.2.3
|
|
1548
1562
|
|
|
1549
1563
|
## 15.1.6
|
|
1550
1564
|
|
|
1551
|
-
-
|
|
1565
|
+
- [patch][90c4702](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/90c4702):
|
|
1552
1566
|
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1567
|
+
- FS-1734 Removed the try it out section from Emoji and Mentions documentation pages to match
|
|
1568
|
+
other pages. The section only contained a link to the same page, so was essentially redundant
|
|
1569
|
+
and potentially confusing.
|
|
1556
1570
|
|
|
1557
1571
|
## 15.1.5
|
|
1558
1572
|
|
|
1559
|
-
-
|
|
1573
|
+
- [patch][3061b52](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3061b52):
|
|
1560
1574
|
|
|
1561
|
-
|
|
1575
|
+
- AK-5723 - adjust files in package.json to ensure correct publishing of dist/package.json
|
|
1562
1576
|
|
|
1563
1577
|
## 15.1.4
|
|
1564
1578
|
|
|
1565
|
-
-
|
|
1579
|
+
- [patch][01edbde](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/01edbde):
|
|
1566
1580
|
|
|
1567
|
-
|
|
1581
|
+
- Force patch release
|
|
1568
1582
|
|
|
1569
1583
|
## 15.1.3
|
|
1570
1584
|
|
|
1571
|
-
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1585
|
+
- Updated dependencies [ab9b69c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ab9b69c):
|
|
1586
|
+
- @atlaskit/docs@5.2.2
|
|
1587
|
+
- @atlaskit/avatar@14.1.5
|
|
1588
|
+
- @atlaskit/tooltip@12.1.11
|
|
1589
|
+
- @atlaskit/icon@15.0.0
|
|
1576
1590
|
|
|
1577
1591
|
## 15.1.2
|
|
1578
1592
|
|
|
1579
|
-
-
|
|
1593
|
+
- [patch][36c362f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/36c362f):
|
|
1580
1594
|
|
|
1581
|
-
|
|
1595
|
+
- FS-3174 - Fix usage of gridSize() and borderRadius()
|
|
1582
1596
|
|
|
1583
1597
|
## 15.1.1
|
|
1584
1598
|
|
|
1585
|
-
-
|
|
1599
|
+
- [patch][527b954](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/527b954):
|
|
1586
1600
|
|
|
1587
|
-
|
|
1601
|
+
- FS-3174 - Remove usage of util-shared-styles from elements components
|
|
1588
1602
|
|
|
1589
1603
|
## 15.1.0
|
|
1590
1604
|
|
|
1591
|
-
-
|
|
1592
|
-
|
|
1605
|
+
- [minor] Use relative units for font size and paddings in Mention component
|
|
1606
|
+
[b711063](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b711063)
|
|
1593
1607
|
|
|
1594
1608
|
## 15.0.11
|
|
1595
1609
|
|
|
1596
|
-
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1610
|
+
- [patch] Analytics event's 'source' field from GasPayload type is now optional. In most cases, the
|
|
1611
|
+
'source' field is expected to be set by the integrator through AnalyticsContext. Thus it's
|
|
1612
|
+
recommended that components do not set it to avoid overriding the one provided by the integrating
|
|
1613
|
+
product. Analytics listeners are handling the case where the 'source' field couldn't be found by
|
|
1614
|
+
setting the default value "unknown" before sending the event through the client.
|
|
1615
|
+
[1c0ea95](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1c0ea95)
|
|
1602
1616
|
|
|
1603
1617
|
## 15.0.10
|
|
1604
1618
|
|
|
1605
|
-
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1619
|
+
- [patch] Updated dependencies
|
|
1620
|
+
[65c6514](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/65c6514)
|
|
1621
|
+
- @atlaskit/docs@5.0.8
|
|
1622
|
+
- @atlaskit/avatar@14.0.11
|
|
1623
|
+
- @atlaskit/tooltip@12.1.1
|
|
1624
|
+
- @atlaskit/icon@14.0.0
|
|
1611
1625
|
|
|
1612
1626
|
## 15.0.9
|
|
1613
1627
|
|
|
1614
|
-
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
[f68d367](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f68d367)
|
|
1628
|
+
- [patch] Update TS to 3.0 [f68d367](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f68d367)
|
|
1629
|
+
- [none] Updated dependencies
|
|
1630
|
+
[f68d367](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f68d367)
|
|
1618
1631
|
|
|
1619
1632
|
## 15.0.8
|
|
1620
1633
|
|
|
1621
|
-
-
|
|
1622
|
-
|
|
1634
|
+
- [patch] FS-2941 Stop using Request object and upgrade fetch-mock
|
|
1635
|
+
[dff332a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dff332a)
|
|
1623
1636
|
|
|
1624
1637
|
## 15.0.7
|
|
1625
1638
|
|
|
1626
|
-
-
|
|
1627
|
-
|
|
1639
|
+
- [patch] propagate sessionId to the mentionTypeahead rendered event and service endpoints
|
|
1640
|
+
[0c37666](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0c37666)
|
|
1628
1641
|
|
|
1629
1642
|
## 15.0.6
|
|
1630
1643
|
|
|
1631
|
-
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1644
|
+
- [patch] Updated dependencies
|
|
1645
|
+
[b12f7e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b12f7e6)
|
|
1646
|
+
- @atlaskit/util-data-test@10.0.7
|
|
1634
1647
|
|
|
1635
1648
|
## 15.0.5
|
|
1636
1649
|
|
|
1637
|
-
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
+
- [patch] update the dependency of react-dom to 16.4.2 due to vulnerability in previous versions
|
|
1651
|
+
read https://reactjs.org/blog/2018/08/01/react-v-16-4-2.html for details
|
|
1652
|
+
[a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
|
|
1653
|
+
- [none] Updated dependencies
|
|
1654
|
+
[a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
|
|
1655
|
+
- @atlaskit/util-data-test@10.0.4
|
|
1656
|
+
- @atlaskit/analytics-next-types@3.0.1
|
|
1657
|
+
- @atlaskit/tooltip@12.0.5
|
|
1658
|
+
- @atlaskit/analytics-next@3.0.4
|
|
1659
|
+
- @atlaskit/lozenge@6.1.4
|
|
1660
|
+
- @atlaskit/analytics@4.0.4
|
|
1661
|
+
- @atlaskit/icon@13.2.4
|
|
1662
|
+
- @atlaskit/avatar@14.0.6
|
|
1650
1663
|
|
|
1651
1664
|
## 15.0.4
|
|
1652
1665
|
|
|
1653
|
-
-
|
|
1654
|
-
|
|
1655
|
-
-
|
|
1656
|
-
|
|
1666
|
+
- [patch] FS-2049 add userIds attribute to rendered event
|
|
1667
|
+
[a5d05bc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a5d05bc)
|
|
1668
|
+
- [none] Updated dependencies
|
|
1669
|
+
[a5d05bc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a5d05bc)
|
|
1657
1670
|
|
|
1658
1671
|
## 15.0.3
|
|
1659
1672
|
|
|
1660
|
-
-
|
|
1661
|
-
-
|
|
1662
|
-
|
|
1663
|
-
-
|
|
1664
|
-
|
|
1665
|
-
-
|
|
1666
|
-
|
|
1667
|
-
-
|
|
1668
|
-
|
|
1669
|
-
-
|
|
1670
|
-
|
|
1671
|
-
-
|
|
1672
|
-
|
|
1673
|
-
-
|
|
1674
|
-
|
|
1673
|
+
- [patch] fixed TS errors [8eced90](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8eced90)
|
|
1674
|
+
- [patch] fixed broken tests and added test for util/analytics
|
|
1675
|
+
[57b9d1e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/57b9d1e)
|
|
1676
|
+
- [patch] code improvements and tests added
|
|
1677
|
+
[0bc5732](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0bc5732)
|
|
1678
|
+
- [patch] added mentionTypeAhead rendered analytics
|
|
1679
|
+
[c536e60](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c536e60)
|
|
1680
|
+
- [none] Updated dependencies
|
|
1681
|
+
[8eced90](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8eced90)
|
|
1682
|
+
- [none] Updated dependencies
|
|
1683
|
+
[57b9d1e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/57b9d1e)
|
|
1684
|
+
- [none] Updated dependencies
|
|
1685
|
+
[0bc5732](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0bc5732)
|
|
1686
|
+
- [none] Updated dependencies
|
|
1687
|
+
[c536e60](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c536e60)
|
|
1675
1688
|
|
|
1676
1689
|
## 15.0.2
|
|
1677
1690
|
|
|
1678
|
-
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1691
|
+
- [patch] Updated dependencies
|
|
1692
|
+
[acd86a1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/acd86a1)
|
|
1693
|
+
- @atlaskit/util-data-test@10.0.2
|
|
1694
|
+
- @atlaskit/tooltip@12.0.4
|
|
1695
|
+
- @atlaskit/icon@13.2.2
|
|
1696
|
+
- @atlaskit/lozenge@6.1.3
|
|
1697
|
+
- @atlaskit/analytics-next@3.0.3
|
|
1698
|
+
- @atlaskit/docs@5.0.2
|
|
1699
|
+
- @atlaskit/util-service-support@3.0.1
|
|
1700
|
+
- @atlaskit/analytics-gas-types@3.1.2
|
|
1701
|
+
- @atlaskit/analytics@4.0.3
|
|
1702
|
+
- @atlaskit/avatar@14.0.5
|
|
1690
1703
|
|
|
1691
1704
|
## 15.0.1
|
|
1692
1705
|
|
|
1693
|
-
-
|
|
1694
|
-
|
|
1695
|
-
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1706
|
+
- [patch] FS-2020 add session id to typeahead plugin inside editor
|
|
1707
|
+
[5ae463f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5ae463f)
|
|
1708
|
+
- [none] Updated dependencies
|
|
1709
|
+
[5ae463f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5ae463f)
|
|
1710
|
+
- @atlaskit/analytics-gas-types@3.1.1
|
|
1698
1711
|
|
|
1699
1712
|
## 15.0.0
|
|
1700
1713
|
|
|
1701
|
-
-
|
|
1702
|
-
|
|
1703
|
-
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1714
|
+
- [major] ED-4769: wrap mentions like inline text
|
|
1715
|
+
[f6bf6c8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f6bf6c8)
|
|
1716
|
+
- [none] Updated dependencies
|
|
1717
|
+
[f6bf6c8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f6bf6c8)
|
|
1718
|
+
- @atlaskit/util-data-test@10.0.1
|
|
1706
1719
|
|
|
1707
1720
|
## 14.0.2
|
|
1708
1721
|
|
|
1709
|
-
-
|
|
1710
|
-
|
|
1711
|
-
-
|
|
1712
|
-
|
|
1713
|
-
-
|
|
1714
|
-
|
|
1715
|
-
-
|
|
1716
|
-
|
|
1722
|
+
- [patch] Fallback to use containerId from MentionResourceConfig if ContextIdentifier promise fails
|
|
1723
|
+
[5ecb9a7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5ecb9a7)
|
|
1724
|
+
- [patch] add support for childObjectId in ContextIdentifiers and pass it to the mention service
|
|
1725
|
+
endpoints [6e31eb6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6e31eb6)
|
|
1726
|
+
- [none] Updated dependencies
|
|
1727
|
+
[5ecb9a7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5ecb9a7)
|
|
1728
|
+
- [none] Updated dependencies
|
|
1729
|
+
[6e31eb6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6e31eb6)
|
|
1717
1730
|
|
|
1718
1731
|
## 14.0.1
|
|
1719
1732
|
|
|
1720
|
-
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1733
|
+
- [patch] Updated dependencies
|
|
1734
|
+
[e6b1985](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e6b1985)
|
|
1735
|
+
- @atlaskit/tooltip@12.0.0
|
|
1736
|
+
- @atlaskit/icon@13.1.1
|
|
1737
|
+
- @atlaskit/avatar@14.0.1
|
|
1725
1738
|
|
|
1726
1739
|
## 14.0.0
|
|
1727
1740
|
|
|
1728
|
-
-
|
|
1729
|
-
|
|
1730
|
-
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1741
|
+
- [major] Updates to React ^16.4.0
|
|
1742
|
+
[7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
|
|
1743
|
+
- [major] Updated dependencies
|
|
1744
|
+
[563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
|
|
1745
|
+
- @atlaskit/tooltip@11.0.0
|
|
1746
|
+
- @atlaskit/util-data-test@10.0.0
|
|
1747
|
+
- @atlaskit/analytics-next@3.0.0
|
|
1748
|
+
- @atlaskit/lozenge@6.0.0
|
|
1749
|
+
- @atlaskit/docs@5.0.0
|
|
1750
|
+
- @atlaskit/util-service-support@3.0.0
|
|
1751
|
+
- @atlaskit/analytics-gas-types@3.0.0
|
|
1752
|
+
- @atlaskit/analytics@4.0.0
|
|
1753
|
+
- @atlaskit/icon@13.0.0
|
|
1754
|
+
- @atlaskit/avatar@14.0.0
|
|
1755
|
+
- [major] Updated dependencies
|
|
1756
|
+
[7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
|
|
1757
|
+
- @atlaskit/util-data-test@10.0.0
|
|
1758
|
+
- @atlaskit/tooltip@11.0.0
|
|
1759
|
+
- @atlaskit/analytics-next@3.0.0
|
|
1760
|
+
- @atlaskit/lozenge@6.0.0
|
|
1761
|
+
- @atlaskit/docs@5.0.0
|
|
1762
|
+
- @atlaskit/util-service-support@3.0.0
|
|
1763
|
+
- @atlaskit/analytics-gas-types@3.0.0
|
|
1764
|
+
- @atlaskit/analytics@4.0.0
|
|
1765
|
+
- @atlaskit/icon@13.0.0
|
|
1766
|
+
- @atlaskit/avatar@14.0.0
|
|
1754
1767
|
|
|
1755
1768
|
## 13.1.10
|
|
1756
1769
|
|
|
1757
|
-
-
|
|
1758
|
-
|
|
1759
|
-
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
-
|
|
1763
|
-
|
|
1764
|
-
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1770
|
+
- [patch] fixed typescript build errors
|
|
1771
|
+
[c98857e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c98857e)
|
|
1772
|
+
- [patch] code improvements and MentionContextIdentifier attributes made mandatory to sync with
|
|
1773
|
+
editor-common ContextIdentifier
|
|
1774
|
+
[8a125a7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8a125a7)
|
|
1775
|
+
- [patch] include containerId and objectId passed from editor-core into mention service requests
|
|
1776
|
+
[cacfb53](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cacfb53)
|
|
1777
|
+
- [patch] Updated dependencies
|
|
1778
|
+
[c98857e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c98857e)
|
|
1779
|
+
- @atlaskit/util-data-test@9.1.19
|
|
1780
|
+
- [patch] Updated dependencies
|
|
1781
|
+
[8a125a7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8a125a7)
|
|
1782
|
+
- @atlaskit/util-data-test@9.1.19
|
|
1783
|
+
- [patch] Updated dependencies
|
|
1784
|
+
[cacfb53](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cacfb53)
|
|
1785
|
+
- @atlaskit/util-data-test@9.1.19
|
|
1773
1786
|
|
|
1774
1787
|
## 13.1.9
|
|
1775
1788
|
|
|
1776
|
-
-
|
|
1777
|
-
|
|
1778
|
-
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1789
|
+
- [patch] Move the tests under src and club the tests under unit, integration and visual regression
|
|
1790
|
+
[f1a9069](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f1a9069)
|
|
1791
|
+
- [none] Updated dependencies
|
|
1792
|
+
[f1a9069](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f1a9069)
|
|
1793
|
+
- @atlaskit/util-service-support@2.0.12
|
|
1794
|
+
- @atlaskit/util-data-test@9.1.18
|
|
1795
|
+
- @atlaskit/analytics-gas-types@2.1.4
|
|
1783
1796
|
|
|
1784
1797
|
## 13.1.8
|
|
1785
1798
|
|
|
1786
|
-
-
|
|
1787
|
-
|
|
1788
|
-
-
|
|
1789
|
-
|
|
1799
|
+
- [patch] FS-2093 add mention insert analytics event
|
|
1800
|
+
[30bbe5a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/30bbe5a)
|
|
1801
|
+
- [none] Updated dependencies
|
|
1802
|
+
[30bbe5a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/30bbe5a)
|
|
1790
1803
|
|
|
1791
1804
|
## 13.1.7
|
|
1792
1805
|
|
|
1793
|
-
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1806
|
+
- [none] Updated dependencies
|
|
1807
|
+
[da63331](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/da63331)
|
|
1808
|
+
- @atlaskit/avatar@13.0.0
|
|
1809
|
+
- [patch] Updated dependencies
|
|
1810
|
+
[7724115](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7724115)
|
|
1811
|
+
- @atlaskit/avatar@13.0.0
|
|
1799
1812
|
|
|
1800
1813
|
## 13.1.6
|
|
1801
1814
|
|
|
1802
|
-
-
|
|
1803
|
-
|
|
1804
|
-
-
|
|
1805
|
-
|
|
1815
|
+
- [patch] FS-2092 add mention typeahead cancel analytics event
|
|
1816
|
+
[40bd3fb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/40bd3fb)
|
|
1817
|
+
- [none] Updated dependencies
|
|
1818
|
+
[40bd3fb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/40bd3fb)
|
|
1806
1819
|
|
|
1807
1820
|
## 13.1.5
|
|
1808
1821
|
|
|
1809
|
-
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1822
|
+
- [patch] Updated dependencies
|
|
1823
|
+
[8a01bcd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8a01bcd)
|
|
1824
|
+
- @atlaskit/avatar@12.0.0
|
|
1812
1825
|
|
|
1813
1826
|
## 13.1.4
|
|
1814
1827
|
|
|
1815
|
-
-
|
|
1816
|
-
|
|
1817
|
-
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1828
|
+
- [patch] added mention userId in the Mention lozenge analytics
|
|
1829
|
+
[d7dca64](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d7dca64)
|
|
1830
|
+
- [patch] Updated dependencies
|
|
1831
|
+
[d7dca64](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d7dca64)
|
|
1832
|
+
- @atlaskit/util-data-test@9.1.16
|
|
1820
1833
|
|
|
1821
1834
|
## 13.1.3
|
|
1822
1835
|
|
|
1823
|
-
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1836
|
+
- [patch] Updated dependencies
|
|
1837
|
+
[8d5053e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8d5053e)
|
|
1838
|
+
- @atlaskit/util-data-test@9.1.15
|
|
1826
1839
|
|
|
1827
1840
|
## 13.1.2
|
|
1828
1841
|
|
|
1829
|
-
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1842
|
+
- [patch] Updated dependencies
|
|
1843
|
+
[0cf2f52](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0cf2f52)
|
|
1844
|
+
- @atlaskit/util-data-test@9.1.14
|
|
1832
1845
|
|
|
1833
1846
|
## 13.1.1
|
|
1834
1847
|
|
|
1835
|
-
-
|
|
1836
|
-
|
|
1837
|
-
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1848
|
+
- [patch] Clean Changelogs - remove duplicates and empty entries
|
|
1849
|
+
[e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
|
|
1850
|
+
- [none] Updated dependencies
|
|
1851
|
+
[e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
|
|
1852
|
+
- @atlaskit/util-data-test@9.1.13
|
|
1853
|
+
- @atlaskit/tooltip@10.2.1
|
|
1854
|
+
- @atlaskit/lozenge@5.0.4
|
|
1855
|
+
- @atlaskit/icon@12.1.2
|
|
1843
1856
|
|
|
1844
1857
|
## 13.1.0
|
|
1845
1858
|
|
|
1846
|
-
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1859
|
+
- [none] Updated dependencies
|
|
1860
|
+
[7217164](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7217164)
|
|
1861
|
+
- @atlaskit/util-data-test@9.1.11
|
|
1849
1862
|
|
|
1850
1863
|
## 13.0.0
|
|
1851
1864
|
|
|
1852
|
-
-
|
|
1853
|
-
|
|
1854
|
-
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1865
|
+
- [major] makes styled-components a peer dependency and upgrades version range from 1.4.6 - 3 to
|
|
1866
|
+
^3.2.6 [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
|
|
1867
|
+
- [patch] Updated dependencies
|
|
1868
|
+
[1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
|
|
1869
|
+
- @atlaskit/util-data-test@9.1.10
|
|
1870
|
+
- @atlaskit/tooltip@10.0.0
|
|
1871
|
+
- @atlaskit/icon@12.0.0
|
|
1872
|
+
- @atlaskit/analytics-next@2.1.4
|
|
1873
|
+
- @atlaskit/lozenge@5.0.0
|
|
1874
|
+
- @atlaskit/docs@4.0.0
|
|
1875
|
+
- @atlaskit/util-service-support@2.0.8
|
|
1876
|
+
- @atlaskit/analytics-gas-types@2.1.1
|
|
1877
|
+
- @atlaskit/analytics@3.0.2
|
|
1878
|
+
- @atlaskit/avatar@11.0.0
|
|
1866
1879
|
|
|
1867
1880
|
## 12.0.3
|
|
1868
1881
|
|
|
1869
|
-
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1882
|
+
- [patch] Updated dependencies
|
|
1883
|
+
[1c87e5a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1c87e5a)
|
|
1884
|
+
- @atlaskit/util-data-test@9.1.9
|
|
1872
1885
|
|
|
1873
1886
|
## 12.0.2
|
|
1874
1887
|
|
|
1875
|
-
-
|
|
1876
|
-
|
|
1877
|
-
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1888
|
+
- [patch] Moved event tag to FabricElementsListener
|
|
1889
|
+
[639ae5e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/639ae5e)
|
|
1890
|
+
- [patch] Updated dependencies
|
|
1891
|
+
[639ae5e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/639ae5e)
|
|
1892
|
+
- @atlaskit/util-data-test@9.1.7
|
|
1880
1893
|
|
|
1881
1894
|
## 12.0.1
|
|
1882
1895
|
|
|
1883
|
-
-
|
|
1884
|
-
-
|
|
1885
|
-
|
|
1896
|
+
- [patch][f87724e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f87724e)
|
|
1897
|
+
- [none] Updated dependencies
|
|
1898
|
+
[f87724e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f87724e)
|
|
1886
1899
|
|
|
1887
1900
|
## 12.0.0
|
|
1888
1901
|
|
|
1889
|
-
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
- @atlaskit/util-data-test@9.1.6
|
|
1902
|
+
- [patch] code improvements [ba702bc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ba702bc)
|
|
1903
|
+
- [major] fixed/added tests for analytics-next and code improvements
|
|
1904
|
+
[db1bafa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/db1bafa)
|
|
1905
|
+
- [patch] upgrade to analytics-next and GAS V3
|
|
1906
|
+
[f150242](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f150242)
|
|
1907
|
+
- [patch] Updated dependencies
|
|
1908
|
+
[ba702bc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ba702bc)
|
|
1909
|
+
- @atlaskit/util-data-test@9.1.6
|
|
1910
|
+
- [major] Updated dependencies
|
|
1911
|
+
[db1bafa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/db1bafa)
|
|
1912
|
+
- @atlaskit/util-data-test@9.1.6
|
|
1913
|
+
- [patch] Updated dependencies
|
|
1914
|
+
[f150242](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f150242)
|
|
1915
|
+
- @atlaskit/util-data-test@9.1.6
|
|
1904
1916
|
|
|
1905
1917
|
## 11.1.5
|
|
1906
1918
|
|
|
1907
|
-
-
|
|
1908
|
-
|
|
1909
|
-
-
|
|
1910
|
-
|
|
1919
|
+
- [patch] revert ED-2551 wrong cursor on special mentions
|
|
1920
|
+
[1cf64a6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1cf64a6)
|
|
1921
|
+
- [none] Updated dependencies
|
|
1922
|
+
[1cf64a6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1cf64a6)
|
|
1911
1923
|
|
|
1912
1924
|
## 11.1.4
|
|
1913
1925
|
|
|
1914
|
-
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1926
|
+
- [none] Updated dependencies
|
|
1927
|
+
[8fd4dd1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8fd4dd1)
|
|
1928
|
+
- @atlaskit/util-data-test@9.1.3
|
|
1929
|
+
- [none] Updated dependencies
|
|
1930
|
+
[74f84c6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/74f84c6)
|
|
1931
|
+
- @atlaskit/util-data-test@9.1.3
|
|
1932
|
+
- [none] Updated dependencies
|
|
1933
|
+
[92cdf83](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/92cdf83)
|
|
1934
|
+
- @atlaskit/util-data-test@9.1.3
|
|
1935
|
+
- [none] Updated dependencies
|
|
1936
|
+
[4151cc5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4151cc5)
|
|
1937
|
+
- @atlaskit/util-data-test@9.1.3
|
|
1938
|
+
- [patch] Updated dependencies
|
|
1939
|
+
[d662caa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d662caa)
|
|
1940
|
+
- @atlaskit/util-data-test@9.1.3
|
|
1941
|
+
- @atlaskit/icon@11.3.0
|
|
1942
|
+
- @atlaskit/tooltip@9.2.1
|
|
1943
|
+
- @atlaskit/avatar@10.0.6
|
|
1944
|
+
- @atlaskit/docs@3.0.4
|
|
1945
|
+
- @atlaskit/util-service-support@2.0.7
|
|
1946
|
+
- @atlaskit/lozenge@4.0.1
|
|
1947
|
+
- @atlaskit/analytics@3.0.1
|
|
1948
|
+
- [patch] Updated dependencies
|
|
1949
|
+
[89146bf](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/89146bf)
|
|
1950
|
+
- @atlaskit/util-data-test@9.1.3
|
|
1939
1951
|
|
|
1940
1952
|
## 11.1.3
|
|
1941
1953
|
|
|
1942
|
-
-
|
|
1943
|
-
|
|
1944
|
-
-
|
|
1945
|
-
|
|
1954
|
+
- [patch] ED-2551 use default cursor on mention if no onClick is provided
|
|
1955
|
+
[e9cc83c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e9cc83c)
|
|
1956
|
+
- [patch] Updated dependencies
|
|
1957
|
+
[e9cc83c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e9cc83c)
|
|
1946
1958
|
|
|
1947
1959
|
## 11.1.2
|
|
1948
1960
|
|
|
1949
|
-
-
|
|
1950
|
-
|
|
1951
|
-
-
|
|
1952
|
-
|
|
1961
|
+
- [patch] Align font sizes for inline code, mentions and dates
|
|
1962
|
+
[d2ef1af](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d2ef1af)
|
|
1963
|
+
- [none] Updated dependencies
|
|
1964
|
+
[d2ef1af](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d2ef1af)
|
|
1953
1965
|
|
|
1954
1966
|
## 11.1.0
|
|
1955
1967
|
|
|
1956
|
-
-
|
|
1957
|
-
|
|
1968
|
+
- [minor] If a Mention item is a team then render a TEAM lozenge automatically
|
|
1969
|
+
[d4976d4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d4976d4)
|
|
1958
1970
|
|
|
1959
1971
|
## 11.0.0
|
|
1960
1972
|
|
|
1961
|
-
-
|
|
1962
|
-
|
|
1973
|
+
- [major] Bump to React 16.3.
|
|
1974
|
+
[4251858](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4251858)
|
|
1963
1975
|
|
|
1964
1976
|
## 10.0.0
|
|
1965
1977
|
|
|
1966
|
-
-
|
|
1967
|
-
|
|
1978
|
+
- [major] FS-1697 move elements packages to use util-data-test for test data
|
|
1979
|
+
[deb820a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/deb820a)
|
|
1968
1980
|
|
|
1969
1981
|
## 9.2.3
|
|
1970
1982
|
|
|
1971
|
-
-
|
|
1972
|
-
|
|
1983
|
+
- [patch] Add "sideEffects: false" to AKM2 packages to allow consumer's to tree-shake
|
|
1984
|
+
[c3b018a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c3b018a)
|
|
1973
1985
|
|
|
1974
1986
|
## 9.2.2
|
|
1975
1987
|
|
|
1976
|
-
-
|
|
1977
|
-
|
|
1988
|
+
- [patch] Update links in documentation
|
|
1989
|
+
[c4f7497](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c4f7497)
|
|
1978
1990
|
|
|
1979
1991
|
## 9.2.1
|
|
1980
1992
|
|
|
1981
|
-
-
|
|
1982
|
-
|
|
1993
|
+
- [patch] Fix for styled-components types to support v1.4.x
|
|
1994
|
+
[75a2375](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/75a2375)
|
|
1983
1995
|
|
|
1984
1996
|
## 9.2.0
|
|
1985
1997
|
|
|
1986
|
-
-
|
|
1987
|
-
|
|
1998
|
+
- [minor] Update styled-components dependency to support versions 1.4.6 - 3
|
|
1999
|
+
[ceccf30](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ceccf30)
|
|
1988
2000
|
|
|
1989
2001
|
## 9.1.5
|
|
1990
2002
|
|
|
1991
|
-
-
|
|
1992
|
-
|
|
2003
|
+
- [patch] fix mention and emoji bug related to MutationObserver API
|
|
2004
|
+
[dd0a69c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dd0a69c)
|
|
1993
2005
|
|
|
1994
2006
|
## 9.1.4
|
|
1995
2007
|
|
|
1996
|
-
-
|
|
1997
|
-
|
|
2008
|
+
- [patch] Disable browser's spell check in mention lozenge
|
|
2009
|
+
[c04bf36](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c04bf36)
|
|
1998
2010
|
|
|
1999
2011
|
## 9.1.3
|
|
2000
2012
|
|
|
2001
|
-
-
|
|
2002
|
-
|
|
2013
|
+
- [patch] FS-1091 remove direct dependency on url-search-params
|
|
2014
|
+
[e680d67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e680d67)
|
|
2003
2015
|
|
|
2004
2016
|
## 9.1.2
|
|
2005
2017
|
|
|
2006
|
-
-
|
|
2007
|
-
|
|
2018
|
+
- [patch] FS-1699 Fix mention sorting
|
|
2019
|
+
[ff33bef](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ff33bef)
|
|
2008
2020
|
|
|
2009
2021
|
## 9.1.1
|
|
2010
2022
|
|
|
2011
|
-
-
|
|
2012
|
-
|
|
2023
|
+
- [patch] fixed mention picker style typos
|
|
2024
|
+
[8bb40f0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8bb40f0)
|
|
2013
2025
|
|
|
2014
2026
|
## 9.1.0
|
|
2015
2027
|
|
|
2016
|
-
-
|
|
2017
|
-
|
|
2028
|
+
- [minor] FS-1633 Change the way we use getUsersInContext
|
|
2029
|
+
[86b615c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/86b615c)
|
|
2018
2030
|
|
|
2019
2031
|
## 9.0.0
|
|
2020
2032
|
|
|
2021
|
-
-
|
|
2022
|
-
|
|
2023
|
-
-
|
|
2024
|
-
|
|
2033
|
+
- [patch] Added eslint-disable to example file
|
|
2034
|
+
[49491a9](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/49491a9)
|
|
2035
|
+
- [major] Migrated mentions to new atlaskit-mk2
|
|
2036
|
+
[dad3ccc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dad3ccc)
|
|
2025
2037
|
|
|
2026
2038
|
## 8.5.1 (2018-01-09)
|
|
2027
2039
|
|
|
2028
|
-
-
|
|
2029
|
-
|
|
2040
|
+
- bug fix; removed chai and sinon from tests (issues closed: fs-1606)
|
|
2041
|
+
([f3a65cd](https://bitbucket.org/atlassian/atlaskit/commits/f3a65cd))
|
|
2030
2042
|
|
|
2031
2043
|
## 8.5.0 (2018-01-08)
|
|
2032
2044
|
|
|
2033
|
-
-
|
|
2034
|
-
|
|
2045
|
+
- feature; allow MentionResource to optionally exclude the credentials from the request (issues
|
|
2046
|
+
closed: fs-1602) ([cbf913c](https://bitbucket.org/atlassian/atlaskit/commits/cbf913c))
|
|
2035
2047
|
|
|
2036
2048
|
## 8.4.1 (2017-12-20)
|
|
2037
2049
|
|
|
2038
|
-
-
|
|
2039
|
-
|
|
2050
|
+
- bug fix; added minimum avatar dependency that has dist/esm folder for mention
|
|
2051
|
+
([c90fbfa](https://bitbucket.org/atlassian/atlaskit/commits/c90fbfa))
|
|
2040
2052
|
|
|
2041
2053
|
## 8.4.0 (2017-12-19)
|
|
2042
2054
|
|
|
2043
|
-
-
|
|
2044
|
-
|
|
2045
|
-
-
|
|
2046
|
-
|
|
2047
|
-
-
|
|
2048
|
-
|
|
2049
|
-
-
|
|
2050
|
-
|
|
2055
|
+
- feature; fS-1063 Code review remark
|
|
2056
|
+
([93ff21e](https://bitbucket.org/atlassian/atlaskit/commits/93ff21e))
|
|
2057
|
+
- bug fix; make sure root does not change whatever import we use
|
|
2058
|
+
([085d483](https://bitbucket.org/atlassian/atlaskit/commits/085d483))
|
|
2059
|
+
- feature; fS-1063 Fix code review remarks
|
|
2060
|
+
([a247fa6](https://bitbucket.org/atlassian/atlaskit/commits/a247fa6))
|
|
2061
|
+
- feature; fS-1063 When searching for mentionable users in a public room, I want users current
|
|
2062
|
+
([b5310c7](https://bitbucket.org/atlassian/atlaskit/commits/b5310c7))
|
|
2051
2063
|
|
|
2052
2064
|
## 8.3.4 (2017-12-19)
|
|
2053
2065
|
|
|
2054
|
-
-
|
|
2055
|
-
|
|
2056
|
-
-
|
|
2057
|
-
|
|
2066
|
+
- bug fix; bump packages to fixed version of analytics
|
|
2067
|
+
([615e41c](https://bitbucket.org/atlassian/atlaskit/commits/615e41c))
|
|
2068
|
+
- bug fix; explicit analytics bump in mentions
|
|
2069
|
+
([688ed80](https://bitbucket.org/atlassian/atlaskit/commits/688ed80))
|
|
2058
2070
|
|
|
2059
2071
|
## 8.3.3 (2017-12-19)
|
|
2060
2072
|
|
|
2061
|
-
-
|
|
2062
|
-
|
|
2073
|
+
- bug fix; reduce mention bundle size by referencing avatar directly from dist/esm folder
|
|
2074
|
+
([2a88ef0](https://bitbucket.org/atlassian/atlaskit/commits/2a88ef0))
|
|
2063
2075
|
|
|
2064
2076
|
## 8.3.2 (2017-12-18)
|
|
2065
2077
|
|
|
2066
|
-
-
|
|
2067
|
-
|
|
2078
|
+
- bug fix; fS-1587 fix TS errors in mention (issues closed: fs-1587)
|
|
2079
|
+
([8dd4b86](https://bitbucket.org/atlassian/atlaskit/commits/8dd4b86))
|
|
2068
2080
|
|
|
2069
2081
|
## 8.3.1 (2017-12-15)
|
|
2070
2082
|
|
|
2071
|
-
-
|
|
2072
|
-
|
|
2073
|
-
-
|
|
2074
|
-
|
|
2083
|
+
- bug fix; analytics now correctly a dep of the mention component
|
|
2084
|
+
([da6cd5d](https://bitbucket.org/atlassian/atlaskit/commits/da6cd5d))
|
|
2085
|
+
- bug fix; mention component no longer uses relative imports in one of the stories
|
|
2086
|
+
([1109ecc](https://bitbucket.org/atlassian/atlaskit/commits/1109ecc))
|
|
2075
2087
|
|
|
2076
2088
|
## 8.3.0 (2017-12-13)
|
|
2077
2089
|
|
|
2078
|
-
-
|
|
2079
|
-
|
|
2080
|
-
-
|
|
2081
|
-
|
|
2090
|
+
- bug fix; minor code improvements and fixed build error
|
|
2091
|
+
([56bc6bb](https://bitbucket.org/atlassian/atlaskit/commits/56bc6bb))
|
|
2092
|
+
- feature; added some mention front-end analytics
|
|
2093
|
+
([74b7ee6](https://bitbucket.org/atlassian/atlaskit/commits/74b7ee6))
|
|
2082
2094
|
|
|
2083
2095
|
## 8.2.1 (2017-12-08)
|
|
2084
2096
|
|
|
2085
|
-
-
|
|
2086
|
-
|
|
2097
|
+
- bug fix; update mock data under dist folder
|
|
2098
|
+
([615dfd3](https://bitbucket.org/atlassian/atlaskit/commits/615dfd3))
|
|
2087
2099
|
|
|
2088
2100
|
## 8.2.0 (2017-11-26)
|
|
2089
2101
|
|
|
2090
|
-
-
|
|
2091
|
-
|
|
2102
|
+
- feature; add more mock data to support integration tests
|
|
2103
|
+
([9520323](https://bitbucket.org/atlassian/atlaskit/commits/9520323))
|
|
2092
2104
|
|
|
2093
2105
|
## 8.1.1 (2017-11-20)
|
|
2094
2106
|
|
|
2095
|
-
-
|
|
2096
|
-
|
|
2107
|
+
- bug fix; presence client now actually requests stateMetadata to get focus mode (issues closed:
|
|
2108
|
+
fs-1487) ([7984774](https://bitbucket.org/atlassian/atlaskit/commits/7984774))
|
|
2097
2109
|
|
|
2098
2110
|
## 8.1.0 (2017-11-19)
|
|
2099
2111
|
|
|
2100
|
-
-
|
|
2101
|
-
|
|
2102
|
-
-
|
|
2103
|
-
|
|
2112
|
+
- feature; add support for showing focus state on mention picker's avatars (issues closed: fs-1487)
|
|
2113
|
+
([fe5b287](https://bitbucket.org/atlassian/atlaskit/commits/fe5b287))
|
|
2114
|
+
- feature; updated icon and tooltip dependencies
|
|
2115
|
+
([a10f196](https://bitbucket.org/atlassian/atlaskit/commits/a10f196))
|
|
2104
2116
|
|
|
2105
2117
|
## 8.0.1 (2017-10-22)
|
|
2106
2118
|
|
|
2107
|
-
-
|
|
2108
|
-
|
|
2119
|
+
- bug fix; update styled-components dep and react peerDep
|
|
2120
|
+
([6a67bf8](https://bitbucket.org/atlassian/atlaskit/commits/6a67bf8))
|
|
2109
2121
|
|
|
2110
2122
|
## 8.0.0 (2017-10-20)
|
|
2111
2123
|
|
|
2112
|
-
-
|
|
2113
|
-
|
|
2114
|
-
-
|
|
2115
|
-
|
|
2116
|
-
-
|
|
2117
|
-
|
|
2118
|
-
-
|
|
2119
|
-
|
|
2120
|
-
-
|
|
2121
|
-
|
|
2122
|
-
-
|
|
2123
|
-
|
|
2124
|
-
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
-
|
|
2128
|
-
|
|
2129
|
-
-
|
|
2130
|
-
|
|
2131
|
-
-
|
|
2132
|
-
|
|
2133
|
-
-
|
|
2134
|
-
|
|
2135
|
-
-
|
|
2136
|
-
|
|
2137
|
-
-
|
|
2138
|
-
|
|
2139
|
-
-
|
|
2140
|
-
|
|
2141
|
-
-
|
|
2142
|
-
|
|
2143
|
-
-
|
|
2144
|
-
|
|
2145
|
-
-
|
|
2146
|
-
|
|
2147
|
-
-
|
|
2148
|
-
|
|
2149
|
-
-
|
|
2150
|
-
|
|
2151
|
-
-
|
|
2152
|
-
|
|
2153
|
-
-
|
|
2154
|
-
|
|
2155
|
-
-
|
|
2156
|
-
|
|
2157
|
-
-
|
|
2158
|
-
|
|
2159
|
-
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
-
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
|
|
2175
|
-
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
-
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
-
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
-
|
|
2226
|
-
|
|
2227
|
-
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
-
|
|
2233
|
-
|
|
2234
|
-
-
|
|
2235
|
-
|
|
2236
|
-
-
|
|
2237
|
-
|
|
2238
|
-
-
|
|
2239
|
-
|
|
2240
|
-
-
|
|
2241
|
-
|
|
2242
|
-
-
|
|
2243
|
-
|
|
2244
|
-
-
|
|
2245
|
-
|
|
2246
|
-
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
-
|
|
2250
|
-
|
|
2251
|
-
-
|
|
2252
|
-
|
|
2253
|
-
-
|
|
2254
|
-
-
|
|
2255
|
-
|
|
2256
|
-
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
-
|
|
2260
|
-
|
|
2261
|
-
-
|
|
2262
|
-
|
|
2263
|
-
-
|
|
2264
|
-
|
|
2265
|
-
-
|
|
2266
|
-
|
|
2267
|
-
-
|
|
2268
|
-
|
|
2269
|
-
-
|
|
2270
|
-
|
|
2271
|
-
-
|
|
2272
|
-
|
|
2273
|
-
-
|
|
2274
|
-
|
|
2275
|
-
- bug fix; Updates package to use scoped ak packages
|
|
2276
|
-
([db5c2f6](https://bitbucket.org/atlassian/atlaskit/commits/db5c2f6))
|
|
2124
|
+
- bug fix; fixed unit test failure.
|
|
2125
|
+
([7878911](https://bitbucket.org/atlassian/atlaskit/commits/7878911))
|
|
2126
|
+
- bug fix; added missing \_notifyAllResultsListeners
|
|
2127
|
+
([28cbfb2](https://bitbucket.org/atlassian/atlaskit/commits/28cbfb2))
|
|
2128
|
+
- feature; expose MentionsResult interface from mention
|
|
2129
|
+
([a817c63](https://bitbucket.org/atlassian/atlaskit/commits/a817c63))
|
|
2130
|
+
- bug fix; added missing method \_notifyAllResultsListeners to mention mock service and fixed re
|
|
2131
|
+
([f057300](https://bitbucket.org/atlassian/atlaskit/commits/f057300))
|
|
2132
|
+
- feature; added a dummy data wit the same last name.
|
|
2133
|
+
([2ed7d4d](https://bitbucket.org/atlassian/atlaskit/commits/2ed7d4d))
|
|
2134
|
+
- feature; fS-1372 Show an APP flag for App users like Bot
|
|
2135
|
+
([0ff41fc](https://bitbucket.org/atlassian/atlaskit/commits/0ff41fc))
|
|
2136
|
+
- bug fix; Revert code splitting of mentions/task-decisions as it introduces a performance problem
|
|
2137
|
+
(issues closed: fs-1396 / hnw-3183)
|
|
2138
|
+
([bbecb14](https://bitbucket.org/atlassian/atlaskit/commits/bbecb14))
|
|
2139
|
+
- bug fix; code splitted avatar in mention and task-decision packages (issues closed: ed-2776)
|
|
2140
|
+
([19f8276](https://bitbucket.org/atlassian/atlaskit/commits/19f8276))
|
|
2141
|
+
- bug fix; update background of "no access" mention lozenge to be transparent (issues closed:
|
|
2142
|
+
fs-1160) ([abd124d](https://bitbucket.org/atlassian/atlaskit/commits/abd124d))
|
|
2143
|
+
- bug fix; update background colour of default mention lozenge (issues closed: fs-1319)
|
|
2144
|
+
([391d263](https://bitbucket.org/atlassian/atlaskit/commits/391d263))
|
|
2145
|
+
- bug fix; make mention lozenge 20px high to match rendering line height (issues closed: fs-1160)
|
|
2146
|
+
([9d02973](https://bitbucket.org/atlassian/atlaskit/commits/9d02973))
|
|
2147
|
+
- feature; update util-\* dependencies
|
|
2148
|
+
([eba115f](https://bitbucket.org/atlassian/atlaskit/commits/eba115f))
|
|
2149
|
+
- feature; update mention dependencies: avatar, icon, lozenge, tooltip (issues closed: fs-1309)
|
|
2150
|
+
([8686314](https://bitbucket.org/atlassian/atlaskit/commits/8686314))
|
|
2151
|
+
- bug fix; based on PR comment, update the variable name
|
|
2152
|
+
([4517be5](https://bitbucket.org/atlassian/atlaskit/commits/4517be5))
|
|
2153
|
+
- bug fix; the name of the variable was not correct - cf AK-1433 (issues closed: ak-1433)
|
|
2154
|
+
([85fe651](https://bitbucket.org/atlassian/atlaskit/commits/85fe651))
|
|
2155
|
+
- bug fix; publish only javascript files in dist/
|
|
2156
|
+
([367736a](https://bitbucket.org/atlassian/atlaskit/commits/367736a))
|
|
2157
|
+
- bug fix; fix .npm-ingore for fabric ts packages.
|
|
2158
|
+
([f6f2edd](https://bitbucket.org/atlassian/atlaskit/commits/f6f2edd))
|
|
2159
|
+
- bug fix; quick fix to avoid issues accessing support data via npm dependency
|
|
2160
|
+
([4f9eee7](https://bitbucket.org/atlassian/atlaskit/commits/4f9eee7))
|
|
2161
|
+
- bug fix; fix unused expression error throwing test
|
|
2162
|
+
([22b75b2](https://bitbucket.org/atlassian/atlaskit/commits/22b75b2))
|
|
2163
|
+
- feature; export test/story data for direct import. Not in bundle. (issues closed: fs-1205)
|
|
2164
|
+
([eaa98fb](https://bitbucket.org/atlassian/atlaskit/commits/eaa98fb))
|
|
2165
|
+
- bug fix; Merged in fix/FS-1051-copying-renderer-mention (pull request #3532) (issues closed:
|
|
2166
|
+
fs-1051) ([352f8eb](https://bitbucket.org/atlassian/atlaskit/commits/352f8eb))
|
|
2167
|
+
- bug fix; use class transform in loose mode in babel to improve load performance in apps
|
|
2168
|
+
([fde719a](https://bitbucket.org/atlassian/atlaskit/commits/fde719a))
|
|
2169
|
+
- bug fix; no user selection in mention list should result in the top item always being selecte
|
|
2170
|
+
(issues closed: fs-1178) ([07fc665](https://bitbucket.org/atlassian/atlaskit/commits/07fc665))
|
|
2171
|
+
- feature; fS-1125 Adding test ([af91b18](https://bitbucket.org/atlassian/atlaskit/commits/af91b18))
|
|
2172
|
+
- feature; fS-1125 Add callback parameter when subscribing to receive all results no just the
|
|
2173
|
+
([cf7636a](https://bitbucket.org/atlassian/atlaskit/commits/cf7636a))
|
|
2174
|
+
- bug fix; fS-1121 Don't return special mention when typing letter 'm'
|
|
2175
|
+
([6c2ddd3](https://bitbucket.org/atlassian/atlaskit/commits/6c2ddd3))
|
|
2176
|
+
- feature; restyle the Mentions error pop-up with a funkier exclamation sign and better wording
|
|
2177
|
+
(issues closed: fs-1115) ([8820193](https://bitbucket.org/atlassian/atlaskit/commits/8820193))
|
|
2178
|
+
- bug fix; fS-1090 Fix test ([4262bee](https://bitbucket.org/atlassian/atlaskit/commits/4262bee))
|
|
2179
|
+
- feature; fS-1090 Expose searchIndex so we can reuse it in test data + fix formatting
|
|
2180
|
+
([aab39e6](https://bitbucket.org/atlassian/atlaskit/commits/aab39e6))
|
|
2181
|
+
- breaking; New method isFiltering(query: string) on MentionProvider interface
|
|
2182
|
+
([6881c4b](https://bitbucket.org/atlassian/atlaskit/commits/6881c4b))
|
|
2183
|
+
- breaking; fS-1090 Expose isFiltering on MentionProvider interface && add query parameter in t
|
|
2184
|
+
([6881c4b](https://bitbucket.org/atlassian/atlaskit/commits/6881c4b))
|
|
2185
|
+
- bug fix; update avatar dependency
|
|
2186
|
+
([64f6640](https://bitbucket.org/atlassian/atlaskit/commits/64f6640))
|
|
2187
|
+
- breaking; The onOpen handlers will now be called when searches error. Previously they would only
|
|
2188
|
+
be called ([1380702](https://bitbucket.org/atlassian/atlaskit/commits/1380702))
|
|
2189
|
+
- breaking; fix the Promise handling when a search is performed locally and remotely. (issues
|
|
2190
|
+
closed: fa-910) ([1380702](https://bitbucket.org/atlassian/atlaskit/commits/1380702))
|
|
2191
|
+
- bug fix; fix for long standing react warning. :yakshave:
|
|
2192
|
+
([cf88128](https://bitbucket.org/atlassian/atlaskit/commits/cf88128))
|
|
2193
|
+
- bug fix; uncaught rejected provider promises, ui not updating. (issues closed: ed-1886)
|
|
2194
|
+
([237cd54](https://bitbucket.org/atlassian/atlaskit/commits/237cd54))
|
|
2195
|
+
- bug fix; fS-1073 Code review remarks + fix tests
|
|
2196
|
+
([7611a77](https://bitbucket.org/atlassian/atlaskit/commits/7611a77))
|
|
2197
|
+
- bug fix; fS-1073 Code review remarks
|
|
2198
|
+
([003dc28](https://bitbucket.org/atlassian/atlaskit/commits/003dc28))
|
|
2199
|
+
- bug fix; fS-1073 Reset search index on bootstrap
|
|
2200
|
+
([5582b3c](https://bitbucket.org/atlassian/atlaskit/commits/5582b3c))
|
|
2201
|
+
- bug fix; fS-1073 Filter mention locally from previous search results
|
|
2202
|
+
([0c4788a](https://bitbucket.org/atlassian/atlaskit/commits/0c4788a))
|
|
2203
|
+
- feature; enable the display of more specific error messages in the MentionList (issues closed:
|
|
2204
|
+
fs-910) ([db5efae](https://bitbucket.org/atlassian/atlaskit/commits/db5efae))
|
|
2205
|
+
- bug fix; fix correct usage of react lifecycle and controlled input component.
|
|
2206
|
+
([3ccd3ec](https://bitbucket.org/atlassian/atlaskit/commits/3ccd3ec))
|
|
2207
|
+
- bug fix; add AbstractMentionResource export to editor-core (issues closed: fs-1029)
|
|
2208
|
+
([308ad31](https://bitbucket.org/atlassian/atlaskit/commits/308ad31))
|
|
2209
|
+
- bug fix; style fix to render tooltip properly in Firefox
|
|
2210
|
+
([32d223d](https://bitbucket.org/atlassian/atlaskit/commits/32d223d))
|
|
2211
|
+
- bug fix; render tooltip on same line as Mention component
|
|
2212
|
+
([4b18886](https://bitbucket.org/atlassian/atlaskit/commits/4b18886))
|
|
2213
|
+
- bug fix; fixed positioning for tooltip rendered for non-permitted mention
|
|
2214
|
+
([83851e6](https://bitbucket.org/atlassian/atlaskit/commits/83851e6))
|
|
2215
|
+
- feature; mentionItem without nickname rendered only using name
|
|
2216
|
+
([b2fa672](https://bitbucket.org/atlassian/atlaskit/commits/b2fa672))
|
|
2217
|
+
- bug fix; fS-691 Change whoops style to white and use akicon
|
|
2218
|
+
([6f023d0](https://bitbucket.org/atlassian/atlaskit/commits/6f023d0))
|
|
2219
|
+
- feature; fS-1026 When displaying the mention typeahead, I want to see users who don't have a
|
|
2220
|
+
([a31d317](https://bitbucket.org/atlassian/atlaskit/commits/a31d317))
|
|
2221
|
+
- bug fix; remove 'graphql' url component from presence's config (issues closed: fs-1030)
|
|
2222
|
+
([b975e98](https://bitbucket.org/atlassian/atlaskit/commits/b975e98))
|
|
2223
|
+
- bug fix; restore classname for confluence selenium tests
|
|
2224
|
+
([e59c2f7](https://bitbucket.org/atlassian/atlaskit/commits/e59c2f7))
|
|
2225
|
+
- bug fix; add polyfills for all storybooks, use es6-promise, URLSearchParams, Fetch API and Elemen
|
|
2226
|
+
([db2f5cf](https://bitbucket.org/atlassian/atlaskit/commits/db2f5cf))
|
|
2227
|
+
- bug fix; move all polyfills into devDeps
|
|
2228
|
+
([d275563](https://bitbucket.org/atlassian/atlaskit/commits/d275563))
|
|
2229
|
+
- bug fix; fix remaining mention tests
|
|
2230
|
+
([d34d43b](https://bitbucket.org/atlassian/atlaskit/commits/d34d43b))
|
|
2231
|
+
- breaking; ED-1701, ED-1702, ED-1704
|
|
2232
|
+
([f47a58e](https://bitbucket.org/atlassian/atlaskit/commits/f47a58e))
|
|
2233
|
+
- breaking; remove polyfills from mention and emoji packages, use styled-components instead of t
|
|
2234
|
+
(issues closed: ed-1701, ed-1702, ed-1704)
|
|
2235
|
+
([f47a58e](https://bitbucket.org/atlassian/atlaskit/commits/f47a58e))
|
|
2236
|
+
- bug fix; fixed storybooks and bumped lozenge and avatar dependencies in mentions (issues closed:
|
|
2237
|
+
fs-902) ([71ddb2a](https://bitbucket.org/atlassian/atlaskit/commits/71ddb2a))
|
|
2238
|
+
- bug fix; update legal copy to be more clear. Not all modules include ADG license. (issues closed:
|
|
2239
|
+
ak-2035) ([f3a945e](https://bitbucket.org/atlassian/atlaskit/commits/f3a945e))
|
|
2240
|
+
- bug fix; update legal copy and fix broken links for component README on npm. New contribution and
|
|
2241
|
+
(issues closed: ak-2035) ([0b3e454](https://bitbucket.org/atlassian/atlaskit/commits/0b3e454))
|
|
2242
|
+
- feature; add a class to mention node
|
|
2243
|
+
([5996b7a](https://bitbucket.org/atlassian/atlaskit/commits/5996b7a))
|
|
2244
|
+
- bug fix; properly handle the case where mention provider is null or undefined
|
|
2245
|
+
([cf5dc91](https://bitbucket.org/atlassian/atlaskit/commits/cf5dc91))
|
|
2246
|
+
- feature; displays nickname rather than username in MentionItem if exists for user (issues closed:
|
|
2247
|
+
fs-824) ([d3f4a81](https://bitbucket.org/atlassian/atlaskit/commits/d3f4a81))
|
|
2248
|
+
- bug fix; updated avatar version from ^1.0.0 to ^2.0.0 in mention (issues closed: fab-2658)
|
|
2249
|
+
([4ef6a16](https://bitbucket.org/atlassian/atlaskit/commits/4ef6a16))
|
|
2250
|
+
- bug fix; resourcedMention component doesn't update provider correctly (issues closed: ed-1173)
|
|
2251
|
+
([fa0c8fc](https://bitbucket.org/atlassian/atlaskit/commits/fa0c8fc))
|
|
2252
|
+
- bug fix; maintainers for all the packages were added
|
|
2253
|
+
([261d00a](https://bitbucket.org/atlassian/atlaskit/commits/261d00a))
|
|
2254
|
+
- bug fix; upgrade TypeScript to 2.2.1 (issues closed: ed-1104)
|
|
2255
|
+
([2aa28fc](https://bitbucket.org/atlassian/atlaskit/commits/2aa28fc))
|
|
2256
|
+
- bug fix; merge branch 'master' into ED-738-ak-editor-shared-styles
|
|
2257
|
+
([b514e44](https://bitbucket.org/atlassian/atlaskit/commits/b514e44))
|
|
2258
|
+
- breaking; ([c99a94e](https://bitbucket.org/atlassian/atlaskit/commits/c99a94e))
|
|
2259
|
+
- breaking; rendering performance optimisations. (issues closed: fs-285)
|
|
2260
|
+
([c99a94e](https://bitbucket.org/atlassian/atlaskit/commits/c99a94e))
|
|
2261
|
+
- bug fix; fix some failing unit tests.
|
|
2262
|
+
([4a4e32c](https://bitbucket.org/atlassian/atlaskit/commits/4a4e32c))
|
|
2263
|
+
- breaking; ([8e48507](https://bitbucket.org/atlassian/atlaskit/commits/8e48507))
|
|
2264
|
+
- breaking; fS-214: Allow mentions to work with the session service; both using a header and a
|
|
2265
|
+
(issues closed: fs-214) ([8e48507](https://bitbucket.org/atlassian/atlaskit/commits/8e48507))
|
|
2266
|
+
- feature; adding a resourced mention-component that takes a mentionProvider-promise
|
|
2267
|
+
([aff9907](https://bitbucket.org/atlassian/atlaskit/commits/aff9907))
|
|
2268
|
+
- breaking; ([08a1291](https://bitbucket.org/atlassian/atlaskit/commits/08a1291))
|
|
2269
|
+
- breaking; adding method highlightning mentions
|
|
2270
|
+
([08a1291](https://bitbucket.org/atlassian/atlaskit/commits/08a1291))
|
|
2271
|
+
- bug fix; merged master into ED-738
|
|
2272
|
+
([8afd112](https://bitbucket.org/atlassian/atlaskit/commits/8afd112))
|
|
2273
|
+
- bug fix; select colour changed from dark to light
|
|
2274
|
+
([1dc44ec](https://bitbucket.org/atlassian/atlaskit/commits/1dc44ec))
|
|
2275
|
+
- bug fix; Query should be optional
|
|
2276
|
+
([4e05ce1](https://bitbucket.org/atlassian/atlaskit/commits/4e05ce1))
|
|
2277
|
+
- bug fix; refactor stories to use // rather than http://
|
|
2278
|
+
([a0826cf](https://bitbucket.org/atlassian/atlaskit/commits/a0826cf))
|
|
2279
|
+
- bug fix; Updates package to have correct dev-dependency for util-common-test
|
|
2280
|
+
([403d232](https://bitbucket.org/atlassian/atlaskit/commits/403d232))
|
|
2281
|
+
- bug fix; Updates docs to mention using yarn to install
|
|
2282
|
+
([5af03bf](https://bitbucket.org/atlassian/atlaskit/commits/5af03bf))
|
|
2283
|
+
- bug fix; Rearrange tsconfig.json organisation to allow per-package configuration.
|
|
2284
|
+
([6c6992d](https://bitbucket.org/atlassian/atlaskit/commits/6c6992d))
|
|
2285
|
+
- bug fix; Updates package to use scoped ak packages
|
|
2286
|
+
([db5c2f6](https://bitbucket.org/atlassian/atlaskit/commits/db5c2f6))
|
|
2277
2287
|
|
|
2278
2288
|
## 7.6.0 (2017-10-16)
|
|
2279
2289
|
|
|
2280
|
-
-
|
|
2281
|
-
|
|
2282
|
-
-
|
|
2283
|
-
|
|
2284
|
-
-
|
|
2285
|
-
|
|
2286
|
-
-
|
|
2287
|
-
|
|
2288
|
-
-
|
|
2289
|
-
|
|
2290
|
+
- bug fix; fixed unit test failure.
|
|
2291
|
+
([7878911](https://bitbucket.org/atlassian/atlaskit/commits/7878911))
|
|
2292
|
+
- bug fix; added missing \_notifyAllResultsListeners
|
|
2293
|
+
([28cbfb2](https://bitbucket.org/atlassian/atlaskit/commits/28cbfb2))
|
|
2294
|
+
- feature; expose MentionsResult interface from mention
|
|
2295
|
+
([a817c63](https://bitbucket.org/atlassian/atlaskit/commits/a817c63))
|
|
2296
|
+
- bug fix; added missing method \_notifyAllResultsListeners to mention mock service and fixed re
|
|
2297
|
+
([f057300](https://bitbucket.org/atlassian/atlaskit/commits/f057300))
|
|
2298
|
+
- feature; added a dummy data wit the same last name.
|
|
2299
|
+
([2ed7d4d](https://bitbucket.org/atlassian/atlaskit/commits/2ed7d4d))
|
|
2290
2300
|
|
|
2291
2301
|
## 7.5.0 (2017-09-26)
|
|
2292
2302
|
|
|
2293
|
-
-
|
|
2294
|
-
|
|
2303
|
+
- feature; fS-1372 Show an APP flag for App users like Bot
|
|
2304
|
+
([0ff41fc](https://bitbucket.org/atlassian/atlaskit/commits/0ff41fc))
|
|
2295
2305
|
|
|
2296
2306
|
## 7.4.3 (2017-09-21)
|
|
2297
2307
|
|
|
2298
|
-
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2308
|
+
- bug fix; Revert code splitting of mentions/task-decisions as it introduces a performance problem
|
|
2309
|
+
(issues closed: fs-1396 / hnw-3183)
|
|
2310
|
+
([bbecb14](https://bitbucket.org/atlassian/atlaskit/commits/bbecb14))
|
|
2301
2311
|
|
|
2302
2312
|
## 7.4.2 (2017-09-19)
|
|
2303
2313
|
|
|
2304
|
-
-
|
|
2305
|
-
|
|
2314
|
+
- bug fix; code splitted avatar in mention and task-decision packages (issues closed: ed-2776)
|
|
2315
|
+
([19f8276](https://bitbucket.org/atlassian/atlaskit/commits/19f8276))
|
|
2306
2316
|
|
|
2307
2317
|
## 7.4.1 (2017-09-13)
|
|
2308
2318
|
|
|
2309
|
-
-
|
|
2310
|
-
|
|
2311
|
-
-
|
|
2312
|
-
|
|
2313
|
-
-
|
|
2314
|
-
|
|
2319
|
+
- bug fix; update background of "no access" mention lozenge to be transparent (issues closed:
|
|
2320
|
+
fs-1160) ([abd124d](https://bitbucket.org/atlassian/atlaskit/commits/abd124d))
|
|
2321
|
+
- bug fix; update background colour of default mention lozenge (issues closed: fs-1319)
|
|
2322
|
+
([391d263](https://bitbucket.org/atlassian/atlaskit/commits/391d263))
|
|
2323
|
+
- bug fix; make mention lozenge 20px high to match rendering line height (issues closed: fs-1160)
|
|
2324
|
+
([9d02973](https://bitbucket.org/atlassian/atlaskit/commits/9d02973))
|
|
2315
2325
|
|
|
2316
2326
|
## 7.4.0 (2017-08-28)
|
|
2317
2327
|
|
|
2318
|
-
-
|
|
2319
|
-
|
|
2320
|
-
-
|
|
2321
|
-
|
|
2328
|
+
- feature; update util-\* dependencies
|
|
2329
|
+
([eba115f](https://bitbucket.org/atlassian/atlaskit/commits/eba115f))
|
|
2330
|
+
- feature; update mention dependencies: avatar, icon, lozenge, tooltip (issues closed: fs-1309)
|
|
2331
|
+
([8686314](https://bitbucket.org/atlassian/atlaskit/commits/8686314))
|
|
2322
2332
|
|
|
2323
2333
|
## 7.3.5 (2017-08-21)
|
|
2324
2334
|
|
|
2325
|
-
-
|
|
2326
|
-
|
|
2327
|
-
-
|
|
2328
|
-
|
|
2335
|
+
- bug fix; based on PR comment, update the variable name
|
|
2336
|
+
([4517be5](https://bitbucket.org/atlassian/atlaskit/commits/4517be5))
|
|
2337
|
+
- bug fix; the name of the variable was not correct - cf AK-1433 (issues closed: ak-1433)
|
|
2338
|
+
([85fe651](https://bitbucket.org/atlassian/atlaskit/commits/85fe651))
|
|
2329
2339
|
|
|
2330
2340
|
## 7.3.4 (2017-08-14)
|
|
2331
2341
|
|
|
2332
|
-
-
|
|
2333
|
-
|
|
2342
|
+
- bug fix; publish only javascript files in dist/
|
|
2343
|
+
([367736a](https://bitbucket.org/atlassian/atlaskit/commits/367736a))
|
|
2334
2344
|
|
|
2335
2345
|
## 7.3.3 (2017-08-10)
|
|
2336
2346
|
|
|
2337
|
-
-
|
|
2338
|
-
|
|
2347
|
+
- bug fix; fix .npm-ingore for fabric ts packages.
|
|
2348
|
+
([f6f2edd](https://bitbucket.org/atlassian/atlaskit/commits/f6f2edd))
|
|
2339
2349
|
|
|
2340
2350
|
## 7.3.2 (2017-08-10)
|
|
2341
2351
|
|
|
2342
|
-
-
|
|
2343
|
-
|
|
2352
|
+
- bug fix; quick fix to avoid issues accessing support data via npm dependency
|
|
2353
|
+
([4f9eee7](https://bitbucket.org/atlassian/atlaskit/commits/4f9eee7))
|
|
2344
2354
|
|
|
2345
2355
|
## 7.3.1 (2017-07-27)
|
|
2346
2356
|
|
|
2347
|
-
-
|
|
2348
|
-
|
|
2357
|
+
- fix; fix unused expression error throwing test
|
|
2358
|
+
([22b75b2](https://bitbucket.org/atlassian/atlaskit/commits/22b75b2))
|
|
2349
2359
|
|
|
2350
2360
|
## 7.3.0 (2017-07-25)
|
|
2351
2361
|
|
|
2352
|
-
-
|
|
2353
|
-
|
|
2362
|
+
- feature; export test/story data for direct import. Not in bundle.
|
|
2363
|
+
([eaa98fb](https://bitbucket.org/atlassian/atlaskit/commits/eaa98fb))
|
|
2354
2364
|
|
|
2355
2365
|
## 7.2.2 (2017-07-25)
|
|
2356
2366
|
|
|
2357
|
-
-
|
|
2358
|
-
|
|
2367
|
+
- fix; use class transform in loose mode in babel to improve load performance in apps
|
|
2368
|
+
([fde719a](https://bitbucket.org/atlassian/atlaskit/commits/fde719a))
|
|
2359
2369
|
|
|
2360
2370
|
## 7.2.1 (2017-07-20)
|
|
2361
2371
|
|
|
2362
|
-
-
|
|
2363
|
-
|
|
2372
|
+
- fix; no user selection in mention list should result in the top item always being selecte
|
|
2373
|
+
([07fc665](https://bitbucket.org/atlassian/atlaskit/commits/07fc665))
|
|
2364
2374
|
|
|
2365
2375
|
## 7.2.0 (2017-07-07)
|
|
2366
2376
|
|
|
2367
|
-
-
|
|
2368
|
-
|
|
2369
|
-
-
|
|
2370
|
-
([af91b18](https://bitbucket.org/atlassian/atlaskit/commits/af91b18))
|
|
2377
|
+
- feature; fS-1125 Add callback parameter when subscribing to receive all results no just the
|
|
2378
|
+
([cf7636a](https://bitbucket.org/atlassian/atlaskit/commits/cf7636a))
|
|
2379
|
+
- feature; fS-1125 Adding test ([af91b18](https://bitbucket.org/atlassian/atlaskit/commits/af91b18))
|
|
2371
2380
|
|
|
2372
2381
|
## 7.1.1 (2017-07-06)
|
|
2373
2382
|
|
|
2374
|
-
-
|
|
2375
|
-
|
|
2383
|
+
- fix; fS-1121 Don't return special mention when typing letter 'm'
|
|
2384
|
+
([6c2ddd3](https://bitbucket.org/atlassian/atlaskit/commits/6c2ddd3))
|
|
2376
2385
|
|
|
2377
2386
|
## 7.1.0 (2017-07-04)
|
|
2378
2387
|
|
|
2379
|
-
-
|
|
2380
|
-
|
|
2388
|
+
- feature; restyle the Mentions error pop-up with a funkier exclamation sign and better wording
|
|
2389
|
+
([8820193](https://bitbucket.org/atlassian/atlaskit/commits/8820193))
|
|
2381
2390
|
|
|
2382
2391
|
## 7.0.0 (2017-06-28)
|
|
2383
2392
|
|
|
2384
|
-
-
|
|
2385
|
-
-
|
|
2386
|
-
|
|
2393
|
+
- fix; fS-1090 Fix test ([4262bee](https://bitbucket.org/atlassian/atlaskit/commits/4262bee))
|
|
2394
|
+
- feature; fS-1090 Expose searchIndex so we can reuse it in test data + fix formatting
|
|
2395
|
+
([aab39e6](https://bitbucket.org/atlassian/atlaskit/commits/aab39e6))
|
|
2387
2396
|
|
|
2388
2397
|
## 6.0.1 (2017-06-28)
|
|
2389
2398
|
|
|
2390
|
-
-
|
|
2391
|
-
|
|
2392
|
-
-
|
|
2393
|
-
|
|
2394
|
-
-
|
|
2399
|
+
- fix; update avatar dependency
|
|
2400
|
+
([64f6640](https://bitbucket.org/atlassian/atlaskit/commits/64f6640))
|
|
2401
|
+
- feature; fS-1090 Expose isFiltering on MentionProvider interface && add query parameter in t
|
|
2402
|
+
([6881c4b](https://bitbucket.org/atlassian/atlaskit/commits/6881c4b))
|
|
2403
|
+
- breaking; New method isFiltering(query: string) on MentionProvider interface
|
|
2395
2404
|
|
|
2396
2405
|
## 6.0.0 (2017-06-27)
|
|
2397
2406
|
|
|
2398
|
-
-
|
|
2399
|
-
|
|
2400
|
-
-
|
|
2401
|
-
|
|
2402
|
-
-
|
|
2407
|
+
- fix; fix the Promise handling when a search is performed locally and remotely.
|
|
2408
|
+
([1380702](https://bitbucket.org/atlassian/atlaskit/commits/1380702))
|
|
2409
|
+
- breaking; The onOpen handlers will now be called when searches error. Previously they would only
|
|
2410
|
+
be called when there were search results.
|
|
2411
|
+
- ISSUES CLOSED: FA-910
|
|
2403
2412
|
|
|
2404
2413
|
## 5.3.2 (2017-06-22)
|
|
2405
2414
|
|
|
2406
|
-
-
|
|
2407
|
-
|
|
2408
|
-
-
|
|
2409
|
-
|
|
2415
|
+
- fix; fix for long standing react warning. :yakshave:
|
|
2416
|
+
([cf88128](https://bitbucket.org/atlassian/atlaskit/commits/cf88128))
|
|
2417
|
+
- fix; uncaught rejected provider promises, ui not updating.
|
|
2418
|
+
([237cd54](https://bitbucket.org/atlassian/atlaskit/commits/237cd54))
|
|
2410
2419
|
|
|
2411
2420
|
## 5.3.0 (2017-06-20)
|
|
2412
2421
|
|
|
2413
|
-
-
|
|
2414
|
-
|
|
2415
|
-
-
|
|
2416
|
-
|
|
2417
|
-
-
|
|
2418
|
-
|
|
2419
|
-
-
|
|
2420
|
-
|
|
2422
|
+
- fix; fS-1073 Code review remarks
|
|
2423
|
+
([003dc28](https://bitbucket.org/atlassian/atlaskit/commits/003dc28))
|
|
2424
|
+
- fix; fS-1073 Code review remarks + fix tests
|
|
2425
|
+
([7611a77](https://bitbucket.org/atlassian/atlaskit/commits/7611a77))
|
|
2426
|
+
- fix; fS-1073 Filter mention locally from previous search results
|
|
2427
|
+
([0c4788a](https://bitbucket.org/atlassian/atlaskit/commits/0c4788a))
|
|
2428
|
+
- fix; fS-1073 Reset search index on bootstrap
|
|
2429
|
+
([5582b3c](https://bitbucket.org/atlassian/atlaskit/commits/5582b3c))
|
|
2421
2430
|
|
|
2422
2431
|
## 5.2.0 (2017-06-19)
|
|
2423
2432
|
|
|
2424
|
-
-
|
|
2425
|
-
|
|
2433
|
+
- feature; enable the display of more specific error messages in the MentionList
|
|
2434
|
+
([db5efae](https://bitbucket.org/atlassian/atlaskit/commits/db5efae))
|
|
2426
2435
|
|
|
2427
2436
|
## 5.1.2 (2017-06-15)
|
|
2428
2437
|
|
|
2429
|
-
-
|
|
2430
|
-
|
|
2438
|
+
- fix; fix correct usage of react lifecycle and controlled input component.
|
|
2439
|
+
([3ccd3ec](https://bitbucket.org/atlassian/atlaskit/commits/3ccd3ec))
|
|
2431
2440
|
|
|
2432
2441
|
## 5.1.1 (2017-06-14)
|
|
2433
2442
|
|
|
2434
|
-
-
|
|
2435
|
-
|
|
2436
|
-
-
|
|
2437
|
-
|
|
2438
|
-
-
|
|
2439
|
-
|
|
2440
|
-
-
|
|
2441
|
-
|
|
2442
|
-
-
|
|
2443
|
-
|
|
2443
|
+
- fix; add AbstractMentionResource export to editor-core
|
|
2444
|
+
([308ad31](https://bitbucket.org/atlassian/atlaskit/commits/308ad31))
|
|
2445
|
+
- fix; fixed positioning for tooltip rendered for non-permitted mention
|
|
2446
|
+
([83851e6](https://bitbucket.org/atlassian/atlaskit/commits/83851e6))
|
|
2447
|
+
- fix; render tooltip on same line as Mention component
|
|
2448
|
+
([4b18886](https://bitbucket.org/atlassian/atlaskit/commits/4b18886))
|
|
2449
|
+
- fix; style fix to render tooltip properly in Firefox
|
|
2450
|
+
([32d223d](https://bitbucket.org/atlassian/atlaskit/commits/32d223d))
|
|
2451
|
+
- feature; mentionItem without nickname rendered only using name
|
|
2452
|
+
([b2fa672](https://bitbucket.org/atlassian/atlaskit/commits/b2fa672))
|
|
2444
2453
|
|
|
2445
2454
|
## 5.1.0 (2017-06-05)
|
|
2446
2455
|
|
|
2447
|
-
-
|
|
2448
|
-
|
|
2449
|
-
-
|
|
2450
|
-
|
|
2456
|
+
- fix; fS-691 Change whoops style to white and use akicon
|
|
2457
|
+
([6f023d0](https://bitbucket.org/atlassian/atlaskit/commits/6f023d0))
|
|
2458
|
+
- feature; fS-1026 When displaying the mention typeahead, I want to see users who don't have a
|
|
2459
|
+
([a31d317](https://bitbucket.org/atlassian/atlaskit/commits/a31d317))
|
|
2451
2460
|
|
|
2452
2461
|
## 5.0.1 (2017-06-01)
|
|
2453
2462
|
|
|
2454
|
-
-
|
|
2455
|
-
|
|
2463
|
+
- fix; remove 'graphql' url component from presence's config
|
|
2464
|
+
([b975e98](https://bitbucket.org/atlassian/atlaskit/commits/b975e98))
|
|
2456
2465
|
|
|
2457
2466
|
## 5.0.0 (2017-06-01)
|
|
2458
2467
|
|
|
2459
|
-
-
|
|
2460
|
-
|
|
2461
|
-
-
|
|
2462
|
-
|
|
2463
|
-
-
|
|
2464
|
-
|
|
2465
|
-
-
|
|
2466
|
-
|
|
2467
|
-
-
|
|
2468
|
-
|
|
2469
|
-
-
|
|
2470
|
-
-
|
|
2468
|
+
- fix; add polyfills for all storybooks, use es6-promise, URLSearchParams, Fetch API and Elemen
|
|
2469
|
+
([db2f5cf](https://bitbucket.org/atlassian/atlaskit/commits/db2f5cf))
|
|
2470
|
+
- fix; fix remaining mention tests
|
|
2471
|
+
([d34d43b](https://bitbucket.org/atlassian/atlaskit/commits/d34d43b))
|
|
2472
|
+
- fix; move all polyfills into devDeps
|
|
2473
|
+
([d275563](https://bitbucket.org/atlassian/atlaskit/commits/d275563))
|
|
2474
|
+
- fix; remove polyfills from mention and emoji packages, use styled-components instead of t
|
|
2475
|
+
([f47a58e](https://bitbucket.org/atlassian/atlaskit/commits/f47a58e))
|
|
2476
|
+
- fix; restore classname for confluence selenium tests
|
|
2477
|
+
([e59c2f7](https://bitbucket.org/atlassian/atlaskit/commits/e59c2f7))
|
|
2478
|
+
- breaking; ED-1701, ED-1702, ED-1704
|
|
2479
|
+
- ISSUES CLOSED: ED-1701, ED-1702, ED-1704
|
|
2471
2480
|
|
|
2472
2481
|
## 4.2.3 (2017-05-09)
|
|
2473
2482
|
|
|
2474
|
-
-
|
|
2475
|
-
|
|
2483
|
+
- fix; fixed storybooks and bumped lozenge and avatar dependencies in mentions
|
|
2484
|
+
([71ddb2a](https://bitbucket.org/atlassian/atlaskit/commits/71ddb2a))
|
|
2476
2485
|
|
|
2477
2486
|
## 4.2.2 (2017-04-27)
|
|
2478
2487
|
|
|
2479
|
-
-
|
|
2480
|
-
|
|
2488
|
+
- fix; update legal copy to be more clear. Not all modules include ADG license.
|
|
2489
|
+
([f3a945e](https://bitbucket.org/atlassian/atlaskit/commits/f3a945e))
|
|
2481
2490
|
|
|
2482
2491
|
## 4.2.1 (2017-04-26)
|
|
2483
2492
|
|
|
2484
|
-
-
|
|
2485
|
-
|
|
2493
|
+
- fix; update legal copy and fix broken links for component README on npm. New contribution and
|
|
2494
|
+
([0b3e454](https://bitbucket.org/atlassian/atlaskit/commits/0b3e454))
|
|
2486
2495
|
|
|
2487
2496
|
## 4.2.0 (2017-04-10)
|
|
2488
2497
|
|
|
2489
|
-
-
|
|
2490
|
-
|
|
2498
|
+
- feature; add a class to mention node
|
|
2499
|
+
([5996b7a](https://bitbucket.org/atlassian/atlaskit/commits/5996b7a))
|
|
2491
2500
|
|
|
2492
2501
|
## 4.1.1 (2017-04-07)
|
|
2493
2502
|
|
|
2494
|
-
-
|
|
2495
|
-
|
|
2503
|
+
- fix; properly handle the case where mention provider is null or undefined
|
|
2504
|
+
([cf5dc91](https://bitbucket.org/atlassian/atlaskit/commits/cf5dc91))
|
|
2496
2505
|
|
|
2497
2506
|
## 4.1.0 (2017-04-04)
|
|
2498
2507
|
|
|
2499
|
-
-
|
|
2500
|
-
|
|
2508
|
+
- feature; displays nickname rather than username in MentionItem if exists for user
|
|
2509
|
+
([d3f4a81](https://bitbucket.org/atlassian/atlaskit/commits/d3f4a81))
|
|
2501
2510
|
|
|
2502
2511
|
## 4.0.5 (2017-03-27)
|
|
2503
2512
|
|
|
2504
|
-
-
|
|
2505
|
-
|
|
2513
|
+
- fix; updated avatar version from ^1.0.0 to ^2.0.0 in mention
|
|
2514
|
+
([4ef6a16](https://bitbucket.org/atlassian/atlaskit/commits/4ef6a16))
|
|
2506
2515
|
|
|
2507
2516
|
## 4.0.4 (2017-03-23)
|
|
2508
2517
|
|
|
2509
|
-
-
|
|
2510
|
-
|
|
2518
|
+
- fix; resourcedMention component doesn't update provider correctly
|
|
2519
|
+
([fa0c8fc](https://bitbucket.org/atlassian/atlaskit/commits/fa0c8fc))
|
|
2511
2520
|
|
|
2512
2521
|
## 4.0.2 (2017-03-21)
|
|
2513
2522
|
|
|
2514
|
-
-
|
|
2515
|
-
|
|
2523
|
+
- fix; maintainers for all the packages were added
|
|
2524
|
+
([261d00a](https://bitbucket.org/atlassian/atlaskit/commits/261d00a))
|
|
2516
2525
|
|
|
2517
2526
|
## 4.0.1 (2017-03-17)
|
|
2518
2527
|
|
|
2519
|
-
-
|
|
2520
|
-
|
|
2528
|
+
- fix; upgrade TypeScript to 2.2.1
|
|
2529
|
+
([2aa28fc](https://bitbucket.org/atlassian/atlaskit/commits/2aa28fc))
|
|
2521
2530
|
|
|
2522
2531
|
## 4.0.0 (2017-03-13)
|
|
2523
2532
|
|
|
2524
|
-
-
|
|
2525
|
-
|
|
2526
|
-
-
|
|
2527
|
-
|
|
2528
|
-
-
|
|
2529
|
-
-
|
|
2530
|
-
-
|
|
2533
|
+
- feature; rendering performance optimisations.
|
|
2534
|
+
([c99a94e](https://bitbucket.org/atlassian/atlaskit/commits/c99a94e))
|
|
2535
|
+
- breaking; MentionItem no longer spreads Mention props as component props, moving to a single
|
|
2536
|
+
mention prop instead.
|
|
2537
|
+
- Mention no longer duplicates time and status. Now only in presence property object.
|
|
2538
|
+
- Event callbacks have changes, but in general should be code compatible.
|
|
2539
|
+
- ISSUES CLOSED: FS-285
|
|
2531
2540
|
|
|
2532
2541
|
## 3.0.0 (2017-03-08)
|
|
2533
2542
|
|
|
2534
|
-
-
|
|
2535
|
-
|
|
2536
|
-
-
|
|
2537
|
-
|
|
2538
|
-
-
|
|
2539
|
-
-
|
|
2543
|
+
- fix; fix some failing unit tests.
|
|
2544
|
+
([4a4e32c](https://bitbucket.org/atlassian/atlaskit/commits/4a4e32c))
|
|
2545
|
+
- feature; fS-214: Allow mentions to work with the session service; both using a header and a
|
|
2546
|
+
([8e48507](https://bitbucket.org/atlassian/atlaskit/commits/8e48507))
|
|
2547
|
+
- breaking; A different URL should be provided to the Mentions component
|
|
2548
|
+
- ISSUES CLOSED: FS-214
|
|
2540
2549
|
|
|
2541
2550
|
## 2.1.0 (2017-03-02)
|
|
2542
2551
|
|
|
2543
|
-
-
|
|
2544
|
-
|
|
2552
|
+
- feature; adding a resourced mention-component that takes a mentionProvider-promise
|
|
2553
|
+
([aff9907](https://bitbucket.org/atlassian/atlaskit/commits/aff9907))
|
|
2545
2554
|
|
|
2546
2555
|
## 2.0.0 (2017-03-01)
|
|
2547
2556
|
|
|
2548
|
-
-
|
|
2549
|
-
|
|
2550
|
-
-
|
|
2557
|
+
- feature; adding method highlightning mentions
|
|
2558
|
+
([08a1291](https://bitbucket.org/atlassian/atlaskit/commits/08a1291))
|
|
2559
|
+
- breaking; MentionProvider now expects a "shouldHighlightMention"-method
|
|
2551
2560
|
|
|
2552
2561
|
## 1.4.0 (2017-02-23)
|
|
2553
2562
|
|
|
2554
|
-
-
|
|
2555
|
-
|
|
2563
|
+
- Component for rendering mentions
|
|
2564
|
+
([7a83043](https://bitbucket.org/atlassian/atlaskit/commits/7a83043))
|
|
2556
2565
|
|
|
2557
2566
|
## 1.3.6 (2017-02-23)
|
|
2558
2567
|
|
|
2559
|
-
-
|
|
2560
|
-
|
|
2568
|
+
- Fixing internal types in MentionResource to reflect actual types.
|
|
2569
|
+
([6829ace](https://bitbucket.org/atlassian/atlaskit/commits/6829ace))
|
|
2561
2570
|
|
|
2562
2571
|
## 1.3.5 (2017-02-21)
|
|
2563
2572
|
|
|
2564
|
-
-
|
|
2565
|
-
|
|
2573
|
+
- Typescript configuration changes to match latest core configuration.
|
|
2574
|
+
([aa13d3f](https://bitbucket.org/atlassian/atlaskit/commits/aa13d3f))
|
|
2566
2575
|
|
|
2567
2576
|
## 1.3.4 (2017-02-17)
|
|
2568
2577
|
|
|
2569
|
-
-
|
|
2570
|
-
|
|
2571
|
-
-
|
|
2578
|
+
- fix; select colour changed from dark to light
|
|
2579
|
+
([1dc44ec](https://bitbucket.org/atlassian/atlaskit/commits/1dc44ec))
|
|
2580
|
+
- undo padding change ([3c1f0c6](https://bitbucket.org/atlassian/atlaskit/commits/3c1f0c6))
|
|
2572
2581
|
|
|
2573
2582
|
## 1.3.2 (2017-02-16)
|
|
2574
2583
|
|
|
2575
|
-
-
|
|
2576
|
-
|
|
2577
|
-
-
|
|
2578
|
-
|
|
2579
|
-
-
|
|
2580
|
-
|
|
2584
|
+
- fix; Query should be optional
|
|
2585
|
+
([4e05ce1](https://bitbucket.org/atlassian/atlaskit/commits/4e05ce1))
|
|
2586
|
+
- fix; refactor stories to use // rather than http://
|
|
2587
|
+
([a0826cf](https://bitbucket.org/atlassian/atlaskit/commits/a0826cf))
|
|
2588
|
+
- Fixing types in mention resource
|
|
2589
|
+
([60a3538](https://bitbucket.org/atlassian/atlaskit/commits/60a3538))
|
|
2581
2590
|
|
|
2582
2591
|
## 1.3.1 (2017-02-10)
|
|
2583
2592
|
|
|
2584
|
-
-
|
|
2585
|
-
|
|
2593
|
+
- fix; Updates package to have correct dev-dependency for util-common-test
|
|
2594
|
+
([403d232](https://bitbucket.org/atlassian/atlaskit/commits/403d232))
|
|
2586
2595
|
|
|
2587
2596
|
## 1.3.0 (2017-02-09)
|
|
2588
2597
|
|
|
2589
|
-
-
|
|
2590
|
-
|
|
2591
|
-
-
|
|
2592
|
-
|
|
2598
|
+
- Adding method for getting number of mentions and made positioning props optional again
|
|
2599
|
+
([51d0591](https://bitbucket.org/atlassian/atlaskit/commits/51d0591))
|
|
2600
|
+
- uncomment tests that turned out not that flakey
|
|
2601
|
+
([f100134](https://bitbucket.org/atlassian/atlaskit/commits/f100134))
|
|
2593
2602
|
|
|
2594
2603
|
## 1.2.0 (2017-02-07)
|
|
2595
2604
|
|
|
2596
|
-
-
|
|
2597
|
-
|
|
2605
|
+
- Disable failing test, remove unused file.
|
|
2606
|
+
([5075309](https://bitbucket.org/atlassian/atlaskit/commits/5075309))
|
|
2598
2607
|
|
|
2599
2608
|
## 1.1.1 (2017-02-07)
|
|
2600
2609
|
|
|
2601
|
-
-
|
|
2602
|
-
|
|
2603
|
-
-
|
|
2604
|
-
|
|
2605
|
-
-
|
|
2606
|
-
|
|
2607
|
-
-
|
|
2608
|
-
|
|
2609
|
-
-
|
|
2610
|
-
|
|
2610
|
+
- fix; Updates docs to mention using yarn to install
|
|
2611
|
+
([5af03bf](https://bitbucket.org/atlassian/atlaskit/commits/5af03bf))
|
|
2612
|
+
- fix; Rearrange tsconfig.json organisation to allow per-package configuration.
|
|
2613
|
+
([6c6992d](https://bitbucket.org/atlassian/atlaskit/commits/6c6992d))
|
|
2614
|
+
- Bump to a real version of lozenge
|
|
2615
|
+
([b77862d](https://bitbucket.org/atlassian/atlaskit/commits/b77862d))
|
|
2616
|
+
- Fix dependency on util-shared-styles
|
|
2617
|
+
([9b4e3c6](https://bitbucket.org/atlassian/atlaskit/commits/9b4e3c6))
|
|
2618
|
+
- Remove legacy .js file, add MentionItem export.
|
|
2619
|
+
([5c021e2](https://bitbucket.org/atlassian/atlaskit/commits/5c021e2))
|
|
2611
2620
|
|
|
2612
2621
|
## 1.1.0 (2017-02-06)
|
|
2613
2622
|
|
|
2614
|
-
-
|
|
2615
|
-
|
|
2616
|
-
-
|
|
2617
|
-
|
|
2618
|
-
-
|
|
2619
|
-
|
|
2620
|
-
-
|
|
2623
|
+
- fix; Updates package to use scoped ak packages
|
|
2624
|
+
([db5c2f6](https://bitbucket.org/atlassian/atlaskit/commits/db5c2f6))
|
|
2625
|
+
- Export MentionItem for not list/picker use cases.
|
|
2626
|
+
([7cdd17f](https://bitbucket.org/atlassian/atlaskit/commits/7cdd17f))
|
|
2627
|
+
- Expose selectIndex and selectId apis on the relevant components.
|
|
2628
|
+
([25d7ebf](https://bitbucket.org/atlassian/atlaskit/commits/25d7ebf))
|
|
2629
|
+
- Migrating to typescrypt ([1bff7bc](https://bitbucket.org/atlassian/atlaskit/commits/1bff7bc))
|