@atlaskit/reactions 22.7.1 → 22.7.2

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.
Files changed (117) hide show
  1. package/CHANGELOG.md +1179 -1179
  2. package/afm-cc/tsconfig.json +3 -0
  3. package/dist/cjs/analytics/index.js +1 -1
  4. package/dist/cjs/components/Counter/Counter.js +18 -4
  5. package/dist/cjs/components/Counter/styles.js +8 -0
  6. package/dist/cjs/components/EmojiButton/EmojiButton.js +21 -5
  7. package/dist/cjs/components/FlashAnimation/FlashAnimation.js +6 -1
  8. package/dist/cjs/components/FlashAnimation/styles.js +8 -0
  9. package/dist/cjs/components/Reaction/Reaction.js +45 -8
  10. package/dist/cjs/components/Reaction/styles.js +12 -0
  11. package/dist/cjs/components/ReactionDialog/ReactionView.js +40 -28
  12. package/dist/cjs/components/ReactionDialog/ReactionsDialog.js +2 -0
  13. package/dist/cjs/components/ReactionDialog/ReactionsList.js +6 -1
  14. package/dist/cjs/components/ReactionDialog/styles.js +40 -1
  15. package/dist/cjs/components/ReactionParticleEffect/ReactionParticleEffect.js +20 -12
  16. package/dist/cjs/components/ReactionParticleEffect/styles.js +9 -0
  17. package/dist/cjs/components/ReactionPicker/ReactionPicker.js +19 -10
  18. package/dist/cjs/components/ReactionPicker/styles.js +13 -0
  19. package/dist/cjs/components/ReactionTooltip/ReactionTooltip.js +6 -1
  20. package/dist/cjs/components/ReactionTooltip/styles.js +12 -0
  21. package/dist/cjs/components/Reactions/Reactions.js +57 -44
  22. package/dist/cjs/components/Reactions/styles.js +7 -0
  23. package/dist/cjs/components/Selector/Selector.js +60 -31
  24. package/dist/cjs/components/Selector/styles.js +13 -20
  25. package/dist/cjs/components/ShowMore/ShowMore.js +13 -31
  26. package/dist/cjs/components/ShowMore/index.js +0 -6
  27. package/dist/cjs/components/Trigger/Trigger.js +6 -1
  28. package/dist/cjs/components/Trigger/styles.js +3 -1
  29. package/dist/es2019/analytics/index.js +1 -1
  30. package/dist/es2019/components/Counter/Counter.js +17 -4
  31. package/dist/es2019/components/Counter/styles.js +8 -0
  32. package/dist/es2019/components/EmojiButton/EmojiButton.js +20 -5
  33. package/dist/es2019/components/FlashAnimation/FlashAnimation.js +5 -1
  34. package/dist/es2019/components/FlashAnimation/styles.js +8 -0
  35. package/dist/es2019/components/Reaction/Reaction.js +45 -9
  36. package/dist/es2019/components/Reaction/styles.js +12 -0
  37. package/dist/es2019/components/ReactionDialog/ReactionView.js +39 -28
  38. package/dist/es2019/components/ReactionDialog/ReactionsDialog.js +1 -0
  39. package/dist/es2019/components/ReactionDialog/ReactionsList.js +5 -1
  40. package/dist/es2019/components/ReactionDialog/styles.js +40 -1
  41. package/dist/es2019/components/ReactionParticleEffect/ReactionParticleEffect.js +15 -9
  42. package/dist/es2019/components/ReactionParticleEffect/styles.js +9 -0
  43. package/dist/es2019/components/ReactionPicker/ReactionPicker.js +19 -9
  44. package/dist/es2019/components/ReactionPicker/styles.js +13 -0
  45. package/dist/es2019/components/ReactionTooltip/ReactionTooltip.js +5 -1
  46. package/dist/es2019/components/ReactionTooltip/styles.js +12 -0
  47. package/dist/es2019/components/Reactions/Reactions.js +55 -43
  48. package/dist/es2019/components/Reactions/styles.js +7 -0
  49. package/dist/es2019/components/Selector/Selector.js +55 -24
  50. package/dist/es2019/components/Selector/styles.js +12 -16
  51. package/dist/es2019/components/ShowMore/ShowMore.js +9 -25
  52. package/dist/es2019/components/ShowMore/index.js +1 -1
  53. package/dist/es2019/components/Trigger/Trigger.js +5 -1
  54. package/dist/es2019/components/Trigger/styles.js +5 -0
  55. package/dist/esm/analytics/index.js +1 -1
  56. package/dist/esm/components/Counter/Counter.js +17 -4
  57. package/dist/esm/components/Counter/styles.js +8 -0
  58. package/dist/esm/components/EmojiButton/EmojiButton.js +20 -5
  59. package/dist/esm/components/FlashAnimation/FlashAnimation.js +5 -1
  60. package/dist/esm/components/FlashAnimation/styles.js +8 -0
  61. package/dist/esm/components/Reaction/Reaction.js +45 -9
  62. package/dist/esm/components/Reaction/styles.js +12 -0
  63. package/dist/esm/components/ReactionDialog/ReactionView.js +39 -28
  64. package/dist/esm/components/ReactionDialog/ReactionsDialog.js +1 -0
  65. package/dist/esm/components/ReactionDialog/ReactionsList.js +5 -1
  66. package/dist/esm/components/ReactionDialog/styles.js +40 -1
  67. package/dist/esm/components/ReactionParticleEffect/ReactionParticleEffect.js +19 -12
  68. package/dist/esm/components/ReactionParticleEffect/styles.js +9 -0
  69. package/dist/esm/components/ReactionPicker/ReactionPicker.js +19 -9
  70. package/dist/esm/components/ReactionPicker/styles.js +13 -0
  71. package/dist/esm/components/ReactionTooltip/ReactionTooltip.js +5 -1
  72. package/dist/esm/components/ReactionTooltip/styles.js +12 -0
  73. package/dist/esm/components/Reactions/Reactions.js +56 -44
  74. package/dist/esm/components/Reactions/styles.js +7 -0
  75. package/dist/esm/components/Selector/Selector.js +61 -33
  76. package/dist/esm/components/Selector/styles.js +13 -19
  77. package/dist/esm/components/ShowMore/ShowMore.js +10 -28
  78. package/dist/esm/components/ShowMore/index.js +1 -1
  79. package/dist/esm/components/Trigger/Trigger.js +5 -1
  80. package/dist/esm/components/Trigger/styles.js +3 -0
  81. package/dist/types/components/EmojiButton/EmojiButton.d.ts +1 -1
  82. package/dist/types/components/Reaction/Reaction.d.ts +1 -5
  83. package/dist/types/components/ReactionDialog/ReactionView.d.ts +1 -1
  84. package/dist/types/components/ReactionTooltip/index.d.ts +1 -1
  85. package/dist/types/components/Selector/styles.d.ts +0 -7
  86. package/dist/types/components/ShowMore/ShowMore.d.ts +3 -21
  87. package/dist/types/components/ShowMore/index.d.ts +1 -1
  88. package/dist/types/containers/index.d.ts +1 -1
  89. package/dist/types/hooks/useFocusTrap.d.ts +1 -1
  90. package/dist/types-ts4.5/components/EmojiButton/EmojiButton.d.ts +1 -1
  91. package/dist/types-ts4.5/components/Reaction/Reaction.d.ts +1 -5
  92. package/dist/types-ts4.5/components/ReactionDialog/ReactionView.d.ts +1 -1
  93. package/dist/types-ts4.5/components/ReactionTooltip/index.d.ts +1 -1
  94. package/dist/types-ts4.5/components/Selector/styles.d.ts +0 -7
  95. package/dist/types-ts4.5/components/ShowMore/ShowMore.d.ts +3 -21
  96. package/dist/types-ts4.5/components/ShowMore/index.d.ts +1 -1
  97. package/dist/types-ts4.5/containers/index.d.ts +1 -1
  98. package/dist/types-ts4.5/hooks/useFocusTrap.d.ts +1 -1
  99. package/docs/0-intro.tsx +42 -48
  100. package/docs/1-connected-reaction-picker.tsx +25 -25
  101. package/docs/2-connected-reactions-view.tsx +25 -25
  102. package/docs/3-reactions-store.tsx +29 -30
  103. package/docs/4-reaction-service-client.tsx +5 -5
  104. package/docs/5-graphql-support.tsx +24 -26
  105. package/local-config-example.ts +3 -3
  106. package/package.json +109 -110
  107. package/report.api.md +241 -273
  108. package/dist/cjs/components/EmojiButton/styles.js +0 -23
  109. package/dist/cjs/components/ShowMore/styles.js +0 -36
  110. package/dist/es2019/components/EmojiButton/styles.js +0 -16
  111. package/dist/es2019/components/ShowMore/styles.js +0 -29
  112. package/dist/esm/components/EmojiButton/styles.js +0 -16
  113. package/dist/esm/components/ShowMore/styles.js +0 -29
  114. package/dist/types/components/EmojiButton/styles.d.ts +0 -1
  115. package/dist/types/components/ShowMore/styles.d.ts +0 -3
  116. package/dist/types-ts4.5/components/EmojiButton/styles.d.ts +0 -1
  117. package/dist/types-ts4.5/components/ShowMore/styles.d.ts +0 -3
package/CHANGELOG.md CHANGED
@@ -1,2198 +1,2198 @@
1
1
  # @atlaskit/reactions
2
2
 
3
+ ## 22.7.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#112164](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/112164)
8
+ [`9483ff476c29c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9483ff476c29c) -
9
+ [ux] Migrated native HTML buttons to Pressable from `@atlaskit/primitives`.
10
+
3
11
  ## 22.7.1
4
12
 
5
13
  ### Patch Changes
6
14
 
7
- - Updated dependencies
15
+ - Updated dependencies
8
16
 
9
17
  ## 22.7.0
10
18
 
11
19
  ### Minor Changes
12
20
 
13
- - [#93855](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/93855)
14
- [`2c1bba58469b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2c1bba58469b) -
15
- [ux] Added Particle effect to reactions
21
+ - [#93855](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/93855)
22
+ [`2c1bba58469b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2c1bba58469b) -
23
+ [ux] Added Particle effect to reactions
16
24
 
17
25
  ## 22.6.3
18
26
 
19
27
  ### Patch Changes
20
28
 
21
- - [#92860](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92860)
22
- [`7af6143adb5c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7af6143adb5c) -
23
- Update owning team
29
+ - [#92860](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92860)
30
+ [`7af6143adb5c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7af6143adb5c) -
31
+ Update owning team
24
32
 
25
33
  ## 22.6.2
26
34
 
27
35
  ### Patch Changes
28
36
 
29
- - Updated dependencies
37
+ - Updated dependencies
30
38
 
31
39
  ## 22.6.1
32
40
 
33
41
  ### Patch Changes
34
42
 
35
- - [#92007](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92007)
36
- [`85525725cb0d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/85525725cb0d) -
37
- Migrated to the new button component
43
+ - [#92007](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92007)
44
+ [`85525725cb0d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/85525725cb0d) -
45
+ Migrated to the new button component
38
46
 
39
47
  ## 22.6.0
40
48
 
41
49
  ### Minor Changes
42
50
 
43
- - [#91586](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91586)
44
- [`b3135ab49e16`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b3135ab49e16) -
45
- Updated `@atlaskit/tabs` dependency which removed baked-in horizontal padding. There may be some
46
- very slight difference in padding after this change.
51
+ - [#91586](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91586)
52
+ [`b3135ab49e16`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b3135ab49e16) -
53
+ Updated `@atlaskit/tabs` dependency which removed baked-in horizontal padding. There may be some
54
+ very slight difference in padding after this change.
47
55
 
48
56
  ### Patch Changes
49
57
 
50
- - Updated dependencies
58
+ - Updated dependencies
51
59
 
52
60
  ## 22.5.13
53
61
 
54
62
  ### Patch Changes
55
63
 
56
- - [#91862](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91862)
57
- [`02c06e61c6f9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/02c06e61c6f9) -
58
- [ux] Update spacing styles to use tokens
64
+ - [#91862](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91862)
65
+ [`02c06e61c6f9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/02c06e61c6f9) -
66
+ [ux] Update spacing styles to use tokens
59
67
 
60
68
  ## 22.5.12
61
69
 
62
70
  ### Patch Changes
63
71
 
64
- - [#83297](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83297)
65
- [`6b1707c169e0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6b1707c169e0) -
66
- The internal composition of this component has changed. There is no expected change in
67
- behaviour.
72
+ - [#83297](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83297)
73
+ [`6b1707c169e0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6b1707c169e0) -
74
+ The internal composition of this component has changed. There is no expected change in behaviour.
68
75
 
69
76
  ## 22.5.11
70
77
 
71
78
  ### Patch Changes
72
79
 
73
- - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
74
- [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
75
- Upgrade Typescript from `4.9.5` to `5.4.2`
80
+ - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
81
+ [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
82
+ Upgrade Typescript from `4.9.5` to `5.4.2`
76
83
 
77
84
  ## 22.5.10
78
85
 
79
86
  ### Patch Changes
80
87
 
81
- - [#81006](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81006)
82
- [`d91d334a84c0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d91d334a84c0) -
83
- React 18 types for @atlaskit/reactions
88
+ - [#81006](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81006)
89
+ [`d91d334a84c0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d91d334a84c0) -
90
+ React 18 types for @atlaskit/reactions
84
91
 
85
92
  ## 22.5.9
86
93
 
87
94
  ### Patch Changes
88
95
 
89
- - [#80085](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80085)
90
- [`7febfed958dd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7febfed958dd) -
91
- Update usage of `React.FC` to explicity include `children`
96
+ - [#80085](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80085)
97
+ [`7febfed958dd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7febfed958dd) -
98
+ Update usage of `React.FC` to explicity include `children`
92
99
 
93
100
  ## 22.5.8
94
101
 
95
102
  ### Patch Changes
96
103
 
97
- - Updated dependencies
104
+ - Updated dependencies
98
105
 
99
106
  ## 22.5.7
100
107
 
101
108
  ### Patch Changes
102
109
 
103
- - Updated dependencies
110
+ - Updated dependencies
104
111
 
105
112
  ## 22.5.6
106
113
 
107
114
  ### Patch Changes
108
115
 
109
- - Updated dependencies
116
+ - Updated dependencies
110
117
 
111
118
  ## 22.5.5
112
119
 
113
120
  ### Patch Changes
114
121
 
115
- - Updated dependencies
122
+ - Updated dependencies
116
123
 
117
124
  ## 22.5.4
118
125
 
119
126
  ### Patch Changes
120
127
 
121
- - [#42502](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42502)
122
- [`d1298d300a5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d1298d300a5) - Remove
123
- export all declarations and import namespace specifiers
128
+ - [#42502](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42502)
129
+ [`d1298d300a5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d1298d300a5) - Remove
130
+ export all declarations and import namespace specifiers
124
131
 
125
132
  ## 22.5.3
126
133
 
127
134
  ### Patch Changes
128
135
 
129
- - [#39787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39787)
130
- [`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) -
131
- Internal changes to use space tokens. There is no expected visual or behaviour change.
136
+ - [#39787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39787)
137
+ [`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) - Internal
138
+ changes to use space tokens. There is no expected visual or behaviour change.
132
139
 
133
140
  ## 22.5.2
134
141
 
135
142
  ### Patch Changes
136
143
 
137
- - [#38162](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38162)
138
- [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete
139
- version.json
140
- - Updated dependencies
144
+ - [#38162](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38162)
145
+ [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete
146
+ version.json
147
+ - Updated dependencies
141
148
 
142
149
  ## 22.5.1
143
150
 
144
151
  ### Patch Changes
145
152
 
146
- - [#37925](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37925)
147
- [`f01deb5e6ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f01deb5e6ab) - Use
148
- injected env vars instead of version.json
153
+ - [#37925](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37925)
154
+ [`f01deb5e6ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f01deb5e6ab) - Use
155
+ injected env vars instead of version.json
149
156
 
150
157
  ## 22.5.0
151
158
 
152
159
  ### Minor Changes
153
160
 
154
- - [#34797](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34797)
155
- [`3920dcfd848`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3920dcfd848) - This
156
- removes the feature flag made for upgrading the `focus-trap` dependency and keeps `focus-trap`
157
- at it's original version.
161
+ - [#34797](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34797)
162
+ [`3920dcfd848`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3920dcfd848) - This
163
+ removes the feature flag made for upgrading the `focus-trap` dependency and keeps `focus-trap` at
164
+ it's original version.
158
165
 
159
166
  ## 22.4.0
160
167
 
161
168
  ### Minor Changes
162
169
 
163
- - [`ac5a05f5929`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac5a05f5929) - We are
164
- testing an upgrade to the `focus-trap` dependency behind a feature flag. If this fix is
165
- successful it will be available in a later release.
170
+ - [`ac5a05f5929`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac5a05f5929) - We are
171
+ testing an upgrade to the `focus-trap` dependency behind a feature flag. If this fix is successful
172
+ it will be available in a later release.
166
173
 
167
174
  ## 22.3.3
168
175
 
169
176
  ### Patch Changes
170
177
 
171
- - [#33870](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33870)
172
- [`82f7f9600a9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/82f7f9600a9) -
173
- Migrated to declarative entry points internally for emoji and reactions. Public API is
174
- unchanged.
178
+ - [#33870](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33870)
179
+ [`82f7f9600a9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/82f7f9600a9) - Migrated
180
+ to declarative entry points internally for emoji and reactions. Public API is unchanged.
175
181
 
176
182
  ## 22.3.2
177
183
 
178
184
  ### Patch Changes
179
185
 
180
- - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
181
- [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
182
- legacy types are published for TS 4.5-4.8
186
+ - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
187
+ [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
188
+ legacy types are published for TS 4.5-4.8
183
189
 
184
190
  ## 22.3.1
185
191
 
186
192
  ### Patch Changes
187
193
 
188
- - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
189
- [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) -
190
- Upgrade Typescript from `4.5.5` to `4.9.5`
194
+ - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
195
+ [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade
196
+ Typescript from `4.5.5` to `4.9.5`
191
197
 
192
198
  ## 22.3.0
193
199
 
194
200
  ### Minor Changes
195
201
 
196
- - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
197
- [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
198
- minor dependency bump
202
+ - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
203
+ [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
204
+ minor dependency bump
199
205
 
200
206
  ### Patch Changes
201
207
 
202
- - Updated dependencies
208
+ - Updated dependencies
203
209
 
204
210
  ## 22.2.9
205
211
 
206
212
  ### Patch Changes
207
213
 
208
- - [#33004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33004)
209
- [`50e0e3c23bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/50e0e3c23bd) - fix
210
- error handling for get reactions
214
+ - [#33004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33004)
215
+ [`50e0e3c23bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/50e0e3c23bd) - fix
216
+ error handling for get reactions
211
217
 
212
218
  ## 22.2.8
213
219
 
214
220
  ### Patch Changes
215
221
 
216
- - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424)
217
- [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY
218
- remove before merging to master; dupe adf-schema via adf-utils
222
+ - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424)
223
+ [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY
224
+ remove before merging to master; dupe adf-schema via adf-utils
219
225
 
220
226
  ## 22.2.7
221
227
 
222
228
  ### Patch Changes
223
229
 
224
- - [#31891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31891)
225
- [`419eaff2c03`](https://bitbucket.org/atlassian/atlassian-frontend/commits/419eaff2c03) - fix
226
- focus trap not deactivated issue in reaction picker
227
- - Updated dependencies
230
+ - [#31891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31891)
231
+ [`419eaff2c03`](https://bitbucket.org/atlassian/atlassian-frontend/commits/419eaff2c03) - fix
232
+ focus trap not deactivated issue in reaction picker
233
+ - Updated dependencies
228
234
 
229
235
  ## 22.2.6
230
236
 
231
237
  ### Patch Changes
232
238
 
233
- - [#31299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31299)
234
- [`6b5bf5505b6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b5bf5505b6) - revert
235
- atlaskit popup refactor in reaction picker
236
- - [`db658265a45`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db658265a45) - add
237
- sampling for reaction view analytics
238
- - [`c84afc8fbd8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c84afc8fbd8) - [ux]
239
- add focus trap to reaction picker
240
- - [`ed219dee1bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ed219dee1bd) -
241
- refactor reactions picker with @atlaskit/popup
242
- - Updated dependencies
239
+ - [#31299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31299)
240
+ [`6b5bf5505b6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b5bf5505b6) - revert
241
+ atlaskit popup refactor in reaction picker
242
+ - [`db658265a45`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db658265a45) - add
243
+ sampling for reaction view analytics
244
+ - [`c84afc8fbd8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c84afc8fbd8) - [ux] add
245
+ focus trap to reaction picker
246
+ - [`ed219dee1bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ed219dee1bd) - refactor
247
+ reactions picker with @atlaskit/popup
248
+ - Updated dependencies
243
249
 
244
250
  ## 22.2.5
245
251
 
246
252
  ### Patch Changes
247
253
 
248
- - [#30248](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30248)
249
- [`dfbecb4aa7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dfbecb4aa7c) - [ux]
250
- [COLLAB-2263] allow `Enter` to open Show more to show emoji picker, allow `ESC` to close emoji
251
- picker / reaction selector.
252
- - Updated dependencies
254
+ - [#30248](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30248)
255
+ [`dfbecb4aa7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dfbecb4aa7c) - [ux]
256
+ [COLLAB-2263] allow `Enter` to open Show more to show emoji picker, allow `ESC` to close emoji
257
+ picker / reaction selector.
258
+ - Updated dependencies
253
259
 
254
260
  ## 22.2.4
255
261
 
256
262
  ### Patch Changes
257
263
 
258
- - [#29990](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29990)
259
- [`c78b97a8b2b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c78b97a8b2b) - Remove
260
- explicit width from reaction counter container
264
+ - [#29990](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29990)
265
+ [`c78b97a8b2b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c78b97a8b2b) - Remove
266
+ explicit width from reaction counter container
261
267
 
262
268
  ## 22.2.3
263
269
 
264
270
  ### Patch Changes
265
271
 
266
- - [#29470](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29470)
267
- [`3592739fb5b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3592739fb5b) - [ux]
268
- hide tooltip of add reaction when reaction picker is opened
269
- - Updated dependencies
272
+ - [#29470](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29470)
273
+ [`3592739fb5b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3592739fb5b) - [ux]
274
+ hide tooltip of add reaction when reaction picker is opened
275
+ - Updated dependencies
270
276
 
271
277
  ## 22.2.2
272
278
 
273
279
  ### Patch Changes
274
280
 
275
- - [#29667](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29667)
276
- [`d16c7d57428`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d16c7d57428) - Update
277
- teams.json to reflect current team
281
+ - [#29667](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29667)
282
+ [`d16c7d57428`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d16c7d57428) - Update
283
+ teams.json to reflect current team
278
284
 
279
285
  ## 22.2.1
280
286
 
281
287
  ### Patch Changes
282
288
 
283
- - [#27634](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27634)
284
- [`718d5ad3044`](https://bitbucket.org/atlassian/atlassian-frontend/commits/718d5ad3044) -
285
- Updates to support the new `@atlaskit/tokens` theming API.
286
- - Updated dependencies
289
+ - [#27634](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27634)
290
+ [`718d5ad3044`](https://bitbucket.org/atlassian/atlassian-frontend/commits/718d5ad3044) - Updates
291
+ to support the new `@atlaskit/tokens` theming API.
292
+ - Updated dependencies
287
293
 
288
294
  ## 22.2.0
289
295
 
290
296
  ### Minor Changes
291
297
 
292
- - [#28932](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28932)
293
- [`c3868fc0d7a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c3868fc0d7a) - [ux]
294
- remove extra spacing around reactions
298
+ - [#28932](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28932)
299
+ [`c3868fc0d7a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c3868fc0d7a) - [ux]
300
+ remove extra spacing around reactions
295
301
 
296
302
  ### Patch Changes
297
303
 
298
- - [`545e6461ac1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/545e6461ac1) - Fixed
299
- incorrect trigger click behaviour
304
+ - [`545e6461ac1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/545e6461ac1) - Fixed
305
+ incorrect trigger click behaviour
300
306
 
301
307
  ## 22.1.0
302
308
 
303
309
  ### Minor Changes
304
310
 
305
- - [#28374](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28374)
306
- [`14258b03842`](https://bitbucket.org/atlassian/atlassian-frontend/commits/14258b03842) - make
307
- reaction buttons more compact, and introduce miniMode for add reaction button
311
+ - [#28374](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28374)
312
+ [`14258b03842`](https://bitbucket.org/atlassian/atlassian-frontend/commits/14258b03842) - make
313
+ reaction buttons more compact, and introduce miniMode for add reaction button
308
314
 
309
315
  ## 22.0.4
310
316
 
311
317
  ### Patch Changes
312
318
 
313
- - [#28324](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28324)
314
- [`6455cf006b3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6455cf006b3) - Builds
315
- for this package now pass through a tokens babel plugin, removing runtime invocations of the
316
- tokens() function and improving performance.
319
+ - [#28324](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28324)
320
+ [`6455cf006b3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6455cf006b3) - Builds
321
+ for this package now pass through a tokens babel plugin, removing runtime invocations of the
322
+ tokens() function and improving performance.
317
323
 
318
324
  ## 22.0.3
319
325
 
320
326
  ### Patch Changes
321
327
 
322
- - [#28090](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28090)
323
- [`16aa7646472`](https://bitbucket.org/atlassian/atlassian-frontend/commits/16aa7646472) - update
324
- ufo sampling rate due to change of sampling algorithm
325
- - Updated dependencies
328
+ - [#28090](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28090)
329
+ [`16aa7646472`](https://bitbucket.org/atlassian/atlassian-frontend/commits/16aa7646472) - update
330
+ ufo sampling rate due to change of sampling algorithm
331
+ - Updated dependencies
326
332
 
327
333
  ## 22.0.2
328
334
 
329
335
  ### Patch Changes
330
336
 
331
- - Updated dependencies
337
+ - Updated dependencies
332
338
 
333
339
  ## 22.0.1
334
340
 
335
341
  ### Patch Changes
336
342
 
337
- - Updated dependencies
343
+ - Updated dependencies
338
344
 
339
345
  ## 22.0.0
340
346
 
341
347
  ### Major Changes
342
348
 
343
- - [#26712](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26712)
344
- [`0617b7ef2aa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0617b7ef2aa) - [ux]
345
- Created a new prop, allowUserDialog, that enables an actionable tooltip link to see a detailed
346
- breakdown of reacted users. The reactions dialog shows the complete user list for the currently
347
- selected reaction, as well as, the user list for all other reactions. Can tab or click through
348
- the reactions list to see all reactions and user lists.
349
+ - [#26712](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26712)
350
+ [`0617b7ef2aa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0617b7ef2aa) - [ux]
351
+ Created a new prop, allowUserDialog, that enables an actionable tooltip link to see a detailed
352
+ breakdown of reacted users. The reactions dialog shows the complete user list for the currently
353
+ selected reaction, as well as, the user list for all other reactions. Can tab or click through the
354
+ reactions list to see all reactions and user lists.
349
355
 
350
- Allow handling of numbers up to 999M and truncate them accordingly. 1000 => 1K, 1,500 => 1.5K,
351
- 1,000,000 => 1M
356
+ Allow handling of numbers up to 999M and truncate them accordingly. 1000 => 1K, 1,500 => 1.5K,
357
+ 1,000,000 => 1M
352
358
 
353
359
  ### Minor Changes
354
360
 
355
- - [`cf558ddee28`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf558ddee28) - [ux]
356
- add see who reacted button to view all reacted users in a modal, and make reactions more
357
- friendly to keyboard users
358
- - [`4f5ecac139f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f5ecac139f) - [ux]
359
- Provide `emojiPickerSize` option for reaction picker, including `small`, `medium`, and `large`.
360
- Emoji picker will be `medium` size by default, which will show more emojis.
361
+ - [`cf558ddee28`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf558ddee28) - [ux] add
362
+ see who reacted button to view all reacted users in a modal, and make reactions more friendly to
363
+ keyboard users
364
+ - [`4f5ecac139f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f5ecac139f) - [ux]
365
+ Provide `emojiPickerSize` option for reaction picker, including `small`, `medium`, and `large`.
366
+ Emoji picker will be `medium` size by default, which will show more emojis.
361
367
 
362
368
  ### Patch Changes
363
369
 
364
- - [`7cfd0383741`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7cfd0383741) - Add
365
- UFO metrics for the Reactions Dialog
366
- - [`ac2824857ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac2824857ec) -
367
- Reactionspicker - fix onClose event gets triggered on each click inside document
368
- - [`f84d560bdbd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f84d560bdbd) - make
369
- onReactionHover depreacted so it's backwards compatible
370
- - [`99b7758e403`](https://bitbucket.org/atlassian/atlassian-frontend/commits/99b7758e403) -
371
- support pluralization for reactions count message in reactions dialog
372
- - [`b1e9279b174`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b1e9279b174) - Fixing
373
- the closing animation for Reactions dialog window
374
- - Updated dependencies
370
+ - [`7cfd0383741`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7cfd0383741) - Add UFO
371
+ metrics for the Reactions Dialog
372
+ - [`ac2824857ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac2824857ec) -
373
+ Reactionspicker - fix onClose event gets triggered on each click inside document
374
+ - [`f84d560bdbd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f84d560bdbd) - make
375
+ onReactionHover depreacted so it's backwards compatible
376
+ - [`99b7758e403`](https://bitbucket.org/atlassian/atlassian-frontend/commits/99b7758e403) - support
377
+ pluralization for reactions count message in reactions dialog
378
+ - [`b1e9279b174`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b1e9279b174) - Fixing
379
+ the closing animation for Reactions dialog window
380
+ - Updated dependencies
375
381
 
376
382
  ## 21.8.1
377
383
 
378
384
  ### Patch Changes
379
385
 
380
- - Updated dependencies
386
+ - Updated dependencies
381
387
 
382
388
  ## 21.8.0
383
389
 
384
390
  ### Minor Changes
385
391
 
386
- - [#25860](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25860)
387
- [`cb37ece1f9e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb37ece1f9e) - Add
388
- aria expanded and aria cotrols to reaction picker toggle
392
+ - [#25860](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25860)
393
+ [`cb37ece1f9e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb37ece1f9e) - Add aria
394
+ expanded and aria cotrols to reaction picker toggle
389
395
 
390
396
  ### Patch Changes
391
397
 
392
- - [`d74d5065a25`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d74d5065a25) - minor
393
- analytics update
394
- - [`2d0d8c066d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2d0d8c066d4) -
395
- Upgrade emotion library inside Reactions to use version 11
396
- - [`ee2a087d647`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ee2a087d647) -
397
- Reducing Enzyme dependencies across reactions unit tests and move the testint-library
398
- - Updated dependencies
398
+ - [`d74d5065a25`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d74d5065a25) - minor
399
+ analytics update
400
+ - [`2d0d8c066d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2d0d8c066d4) - Upgrade
401
+ emotion library inside Reactions to use version 11
402
+ - [`ee2a087d647`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ee2a087d647) - Reducing
403
+ Enzyme dependencies across reactions unit tests and move the testint-library
404
+ - Updated dependencies
399
405
 
400
406
  ## 21.7.0
401
407
 
402
408
  ### Minor Changes
403
409
 
404
- - [#24710](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24710)
405
- [`e2635f36d53`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e2635f36d53) - Adds
406
- new optional prop to <ReactionPicker /> component to setup the content for the tooltip on the
407
- add new reaction element [ux] This adds a border around the Add reaction button according with
408
- new design requirements
409
- - [`ce1ceee9114`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ce1ceee9114) -
410
- Refactor props of <Reactions /> component to better infer types from quickReactionEmojiIds to
411
- quickReactionEmojis
410
+ - [#24710](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24710)
411
+ [`e2635f36d53`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e2635f36d53) - Adds new
412
+ optional prop to <ReactionPicker /> component to setup the content for the tooltip on the add new
413
+ reaction element [ux] This adds a border around the Add reaction button according with new design
414
+ requirements
415
+ - [`ce1ceee9114`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ce1ceee9114) - Refactor
416
+ props of <Reactions /> component to better infer types from quickReactionEmojiIds to
417
+ quickReactionEmojis
412
418
 
413
419
  ### Patch Changes
414
420
 
415
- - [`4b6f775e6c0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4b6f775e6c0) - update
416
- reaction picker position at the edge of window
417
- - [`b2be1d1c8d2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b2be1d1c8d2) -
418
- removing title of reaction buttons
419
- - [`458aabb9add`](https://bitbucket.org/atlassian/atlassian-frontend/commits/458aabb9add) - Remove
420
- tooltip when reactions are disabled
421
- - [`a62cf3c2b49`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a62cf3c2b49) - fix
422
- emoji upload in reaction picker
423
- - Updated dependencies
421
+ - [`4b6f775e6c0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4b6f775e6c0) - update
422
+ reaction picker position at the edge of window
423
+ - [`b2be1d1c8d2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b2be1d1c8d2) - removing
424
+ title of reaction buttons
425
+ - [`458aabb9add`](https://bitbucket.org/atlassian/atlassian-frontend/commits/458aabb9add) - Remove
426
+ tooltip when reactions are disabled
427
+ - [`a62cf3c2b49`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a62cf3c2b49) - fix
428
+ emoji upload in reaction picker
429
+ - Updated dependencies
424
430
 
425
431
  ## 21.6.2
426
432
 
427
433
  ### Patch Changes
428
434
 
429
- - Updated dependencies
435
+ - Updated dependencies
430
436
 
431
437
  ## 21.6.1
432
438
 
433
439
  ### Patch Changes
434
440
 
435
- - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874)
436
- [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) -
437
- Upgrade Typescript from `4.3.5` to `4.5.5`
441
+ - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874)
442
+ [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade
443
+ Typescript from `4.3.5` to `4.5.5`
438
444
 
439
445
  ## 21.6.0
440
446
 
441
447
  ### Minor Changes
442
448
 
443
- - [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004)
444
- [`41d75524c76`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41d75524c76) -
445
- Upgrade @atlaskit/reactions to use functional components, add comments and cleanup outdated
446
- legacy code
447
- - [`d840e9e5c90`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d840e9e5c90) - show
448
- proper error message in tooltip if failed to get reactions
449
+ - [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004)
450
+ [`41d75524c76`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41d75524c76) - Upgrade
451
+ @atlaskit/reactions to use functional components, add comments and cleanup outdated legacy code
452
+ - [`d840e9e5c90`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d840e9e5c90) - show
453
+ proper error message in tooltip if failed to get reactions
449
454
 
450
455
  ### Patch Changes
451
456
 
452
- - Updated dependencies
457
+ - Updated dependencies
453
458
 
454
459
  ## 21.5.1
455
460
 
456
461
  ### Patch Changes
457
462
 
458
- - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492)
459
- [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) -
460
- Upgrade Typescript from `4.2.4` to `4.3.5`.
463
+ - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492)
464
+ [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade
465
+ Typescript from `4.2.4` to `4.3.5`.
461
466
 
462
467
  ## 21.5.0
463
468
 
464
469
  ### Minor Changes
465
470
 
466
- - [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381)
467
- [`e3192fc9dc2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e3192fc9dc2) - Fix
468
- add own emoji in reaction picker
471
+ - [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381)
472
+ [`e3192fc9dc2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e3192fc9dc2) - Fix add
473
+ own emoji in reaction picker
469
474
 
470
475
  ### Patch Changes
471
476
 
472
- - [`ac51581fc14`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac51581fc14) - Update
473
- the examples, docs descriptions and added tsdoc comments to relevant components and objects
474
- - Updated dependencies
477
+ - [`ac51581fc14`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac51581fc14) - Update
478
+ the examples, docs descriptions and added tsdoc comments to relevant components and objects
479
+ - Updated dependencies
475
480
 
476
481
  ## 21.4.0
477
482
 
478
483
  ### Minor Changes
479
484
 
480
- - [#22642](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22642)
481
- [`34155ee7563`](https://bitbucket.org/atlassian/atlassian-frontend/commits/34155ee7563) - add
482
- sampling for 2 ufo experiences to reduce volume of analytics
485
+ - [#22642](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22642)
486
+ [`34155ee7563`](https://bitbucket.org/atlassian/atlassian-frontend/commits/34155ee7563) - add
487
+ sampling for 2 ufo experiences to reduce volume of analytics
483
488
 
484
489
  ### Patch Changes
485
490
 
486
- - Updated dependencies
491
+ - Updated dependencies
487
492
 
488
493
  ## 21.3.4
489
494
 
490
495
  ### Patch Changes
491
496
 
492
- - [#22029](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22029)
493
- [`c3f9e9bce1c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c3f9e9bce1c) - Add
494
- custom information to failure and abort events for UFO experiences
495
- - Updated dependencies
497
+ - [#22029](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22029)
498
+ [`c3f9e9bce1c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c3f9e9bce1c) - Add
499
+ custom information to failure and abort events for UFO experiences
500
+ - Updated dependencies
496
501
 
497
502
  ## 21.3.3
498
503
 
499
504
  ### Patch Changes
500
505
 
501
- - [#22299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22299)
502
- [`7f1dd280229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f1dd280229) - Fix
503
- styling issue in the reaction emoji while hovering on it for the first time
506
+ - [#22299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22299)
507
+ [`7f1dd280229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f1dd280229) - Fix
508
+ styling issue in the reaction emoji while hovering on it for the first time
504
509
 
505
510
  ## 21.3.2
506
511
 
507
512
  ### Patch Changes
508
513
 
509
- - [#21570](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21570)
510
- [`1940b04de7d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1940b04de7d) - Adding
511
- new UFO experience for contents list of reacted users should be able to be fetched reliably
512
- - Updated dependencies
514
+ - [#21570](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21570)
515
+ [`1940b04de7d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1940b04de7d) - Adding
516
+ new UFO experience for contents list of reacted users should be able to be fetched reliably
517
+ - Updated dependencies
513
518
 
514
519
  ## 21.3.1
515
520
 
516
521
  ### Patch Changes
517
522
 
518
- - Updated dependencies
523
+ - Updated dependencies
519
524
 
520
525
  ## 21.3.0
521
526
 
522
527
  ### Minor Changes
523
528
 
524
- - [#20721](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20721)
525
- [`8db47b60a8f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8db47b60a8f) - [ux]
526
- Updated reactions count color to be accessible, pluralize the more emojis tooltip, and stopped
527
- the reactions button click event from propagating into the reactions tooltip.
529
+ - [#20721](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20721)
530
+ [`8db47b60a8f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8db47b60a8f) - [ux]
531
+ Updated reactions count color to be accessible, pluralize the more emojis tooltip, and stopped the
532
+ reactions button click event from propagating into the reactions tooltip.
528
533
 
529
534
  ### Patch Changes
530
535
 
531
- - Updated dependencies
536
+ - Updated dependencies
532
537
 
533
538
  ## 21.2.5
534
539
 
535
540
  ### Patch Changes
536
541
 
537
- - [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650)
538
- [`a424e62b264`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a424e62b264) -
539
- Changes to support Node 16 Typescript definitions from `@types/node`.
542
+ - [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650)
543
+ [`a424e62b264`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a424e62b264) - Changes
544
+ to support Node 16 Typescript definitions from `@types/node`.
540
545
 
541
546
  ## 21.2.4
542
547
 
543
548
  ### Patch Changes
544
549
 
545
- - [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) -
546
- Upgrade to TypeScript 4.2.4
547
- - Updated dependencies
550
+ - [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade
551
+ to TypeScript 4.2.4
552
+ - Updated dependencies
548
553
 
549
554
  ## 21.2.3
550
555
 
551
556
  ### Patch Changes
552
557
 
553
- - [#20033](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20033)
554
- [`d64aafec153`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d64aafec153) - Fixed
555
- bug where clicking on tooltip triggered a reaction
556
- - Updated dependencies
558
+ - [#20033](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20033)
559
+ [`d64aafec153`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d64aafec153) - Fixed
560
+ bug where clicking on tooltip triggered a reaction
561
+ - Updated dependencies
557
562
 
558
563
  ## 21.2.2
559
564
 
560
565
  ### Patch Changes
561
566
 
562
- - [#20484](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20484)
563
- [`58a563ece8f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58a563ece8f) - Add
564
- ComponentName as part of the exported enum collection for easier consumption inside products
567
+ - [#20484](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20484)
568
+ [`58a563ece8f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58a563ece8f) - Add
569
+ ComponentName as part of the exported enum collection for easier consumption inside products
565
570
 
566
571
  ## 21.2.1
567
572
 
568
573
  ### Patch Changes
569
574
 
570
- - [#20447](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20447)
571
- [`783c8c02335`](https://bitbucket.org/atlassian/atlassian-frontend/commits/783c8c02335) - Update
572
- the reactions rendered UFO type
575
+ - [#20447](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20447)
576
+ [`783c8c02335`](https://bitbucket.org/atlassian/atlassian-frontend/commits/783c8c02335) - Update
577
+ the reactions rendered UFO type
573
578
 
574
579
  ## 21.2.0
575
580
 
576
581
  ### Minor Changes
577
582
 
578
- - [#20002](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20002)
579
- [`ed9ab4d82a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ed9ab4d82a3) - Adds
580
- "reactions-rendered", "reactions-picker-opened", "reaction-added" and "reaction-removed" to UFO
581
- experiences
583
+ - [#20002](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20002)
584
+ [`ed9ab4d82a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ed9ab4d82a3) - Adds
585
+ "reactions-rendered", "reactions-picker-opened", "reaction-added" and "reaction-removed" to UFO
586
+ experiences
582
587
 
583
588
  ## 21.1.0
584
589
 
585
590
  ### Minor Changes
586
591
 
587
- - [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618)
588
- [`f0c986fe03a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f0c986fe03a) -
589
- Migrated styles to emotion and removed typestyle dependency from atlassian-frontend
590
- dependencies.
592
+ - [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618)
593
+ [`f0c986fe03a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f0c986fe03a) - Migrated
594
+ styles to emotion and removed typestyle dependency from atlassian-frontend dependencies.
591
595
 
592
596
  ### Patch Changes
593
597
 
594
- - [`876cae9c606`](https://bitbucket.org/atlassian/atlassian-frontend/commits/876cae9c606) -
595
- Changed selector first-child to first-of-type to better support SSR
596
- - [`62edf20ab1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62edf20ab1e) -
597
- Migrates all usage of brand tokens to either selected or information tokens. This change is
598
- purely for semantic reasons, there are no visual or behavioural changes.
599
- - Updated dependencies
598
+ - [`876cae9c606`](https://bitbucket.org/atlassian/atlassian-frontend/commits/876cae9c606) - Changed
599
+ selector first-child to first-of-type to better support SSR
600
+ - [`62edf20ab1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62edf20ab1e) - Migrates
601
+ all usage of brand tokens to either selected or information tokens. This change is purely for
602
+ semantic reasons, there are no visual or behavioural changes.
603
+ - Updated dependencies
600
604
 
601
605
  ## 21.0.5
602
606
 
603
607
  ### Patch Changes
604
608
 
605
- - [#19019](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19019)
606
- [`63f11b8ade4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/63f11b8ade4) -
607
- support proxy via webpack config cli
608
- - Updated dependencies
609
+ - [#19019](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19019)
610
+ [`63f11b8ade4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/63f11b8ade4) - support
611
+ proxy via webpack config cli
612
+ - Updated dependencies
609
613
 
610
614
  ## 21.0.4
611
615
 
612
616
  ### Patch Changes
613
617
 
614
- - [#18526](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18526)
615
- [`62a37c2a5c8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62a37c2a5c8) -
616
- replace `react-transition-group` with `@atlaskit/motion` and improve Counter component
617
- - [`696ba6c465d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/696ba6c465d) - The
618
- Reaction component now fires only one request to the service when being hovered.
619
- - [`95015909035`](https://bitbucket.org/atlassian/atlassian-frontend/commits/95015909035) - Fixed
620
- issue where some of the examples where crashing.
621
- - Updated dependencies
618
+ - [#18526](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18526)
619
+ [`62a37c2a5c8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62a37c2a5c8) - replace
620
+ `react-transition-group` with `@atlaskit/motion` and improve Counter component
621
+ - [`696ba6c465d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/696ba6c465d) - The
622
+ Reaction component now fires only one request to the service when being hovered.
623
+ - [`95015909035`](https://bitbucket.org/atlassian/atlassian-frontend/commits/95015909035) - Fixed
624
+ issue where some of the examples where crashing.
625
+ - Updated dependencies
622
626
 
623
627
  ## 21.0.3
624
628
 
625
629
  ### Patch Changes
626
630
 
627
- - Updated dependencies
631
+ - Updated dependencies
628
632
 
629
633
  ## 21.0.2
630
634
 
631
635
  ### Patch Changes
632
636
 
633
- - Updated dependencies
637
+ - Updated dependencies
634
638
 
635
639
  ## 21.0.1
636
640
 
637
641
  ### Patch Changes
638
642
 
639
- - [#17798](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17798)
640
- [`b44aa6749c0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b44aa6749c0) - [ux]
641
- Changed the token usage for emoji name to make it visible in the reaction tooltip.
643
+ - [#17798](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17798)
644
+ [`b44aa6749c0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b44aa6749c0) - [ux]
645
+ Changed the token usage for emoji name to make it visible in the reaction tooltip.
642
646
 
643
647
  ## 21.0.0
644
648
 
645
649
  ### Major Changes
646
650
 
647
- - [#14810](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14810)
648
- [`47f58da5946`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47f58da5946) -
649
- ED-13322, ED-13324, ED-13326, ED-13323, ED-13204: Upgrade and support react-intl@^5.18.1
650
- including breaking API changes, types and tests in atlassian-frontend packages
651
-
652
- What changed: Upgraded our react-intl support from ^2.6.0 to ^5.18.1. This means editor packages
653
- now rely on consumers installing ^5.18.1, otherwise editor usage of react-intl will mismatch
654
- with actual installed react-intl APIs. Why change was made: As part of a coordinated upgrade
655
- effort across AF packages, as react-intl v2 is quite dated. How consumer should update their
656
- code: Ensure react-intl ^5.18.1 is installed in consuming applications.
657
-
658
- Upgrade guide: To consume atlassian-frontend packages that use react-intl5 setup a second
659
- provider for the new version, using an npm alias
660
-
661
- ```js
662
- "react-intl": "^2.6.0",
663
- "react-intl-next": "npm:react-intl@^5.18.1",
664
- ```
665
-
666
- ```js
667
- import { IntlProvider } from 'react-intl';
668
- import { IntlProvider as IntlNextProvider } from 'react-intl-next';
669
-
670
- return (
671
- <IntlProvider
672
- key={locale}
673
- data-test-language={locale}
674
- locale={locale}
675
- defaultLocale={DEFAULT_LOCALE}
676
- messages={messages}
677
- >
678
- <IntlNextProvider
679
- key={locale}
680
- data-test-language={locale}
681
- locale={locale}
682
- defaultLocale={DEFAULT_LOCALE}
683
- messages={messages}
684
- >
685
- {children}
686
- </IntlNextProvider>
687
- </IntlProvider>
688
- );
689
- ```
690
-
691
- ### Patch Changes
692
-
693
- - Updated dependencies
651
+ - [#14810](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14810)
652
+ [`47f58da5946`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47f58da5946) -
653
+ ED-13322, ED-13324, ED-13326, ED-13323, ED-13204: Upgrade and support react-intl@^5.18.1 including
654
+ breaking API changes, types and tests in atlassian-frontend packages
655
+
656
+ What changed: Upgraded our react-intl support from ^2.6.0 to ^5.18.1. This means editor packages
657
+ now rely on consumers installing ^5.18.1, otherwise editor usage of react-intl will mismatch with
658
+ actual installed react-intl APIs. Why change was made: As part of a coordinated upgrade effort
659
+ across AF packages, as react-intl v2 is quite dated. How consumer should update their code: Ensure
660
+ react-intl ^5.18.1 is installed in consuming applications.
661
+
662
+ Upgrade guide: To consume atlassian-frontend packages that use react-intl5 setup a second provider
663
+ for the new version, using an npm alias
664
+
665
+ ```js
666
+ "react-intl": "^2.6.0",
667
+ "react-intl-next": "npm:react-intl@^5.18.1",
668
+ ```
669
+
670
+ ```js
671
+ import { IntlProvider } from 'react-intl';
672
+ import { IntlProvider as IntlNextProvider } from 'react-intl-next';
673
+
674
+ return (
675
+ <IntlProvider
676
+ key={locale}
677
+ data-test-language={locale}
678
+ locale={locale}
679
+ defaultLocale={DEFAULT_LOCALE}
680
+ messages={messages}
681
+ >
682
+ <IntlNextProvider
683
+ key={locale}
684
+ data-test-language={locale}
685
+ locale={locale}
686
+ defaultLocale={DEFAULT_LOCALE}
687
+ messages={messages}
688
+ >
689
+ {children}
690
+ </IntlNextProvider>
691
+ </IntlProvider>
692
+ );
693
+ ```
694
+
695
+ ### Patch Changes
696
+
697
+ - Updated dependencies
694
698
 
695
699
  ## 20.1.0
696
700
 
697
701
  ### Minor Changes
698
702
 
699
- - [#16668](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16668)
700
- [`e82f9588eff`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e82f9588eff) -
701
- Instrumented `@atlaskit/reactions` with the new theming package, `@atlaskit/tokens`. New tokens
702
- will be visible only in applications configured to use the new Tokens API (currently in
703
- alpha).These changes are intended to be interoperable with the legacy theme implementation.
704
- Legacy dark mode users should expect no visual or breaking changes.
703
+ - [#16668](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16668)
704
+ [`e82f9588eff`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e82f9588eff) -
705
+ Instrumented `@atlaskit/reactions` with the new theming package, `@atlaskit/tokens`. New tokens
706
+ will be visible only in applications configured to use the new Tokens API (currently in
707
+ alpha).These changes are intended to be interoperable with the legacy theme implementation. Legacy
708
+ dark mode users should expect no visual or breaking changes.
705
709
 
706
710
  ## 20.0.0
707
711
 
708
712
  ### Major Changes
709
713
 
710
- - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998)
711
- [`814356508d3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/814356508d3) - [ux]
712
- Design changes to help distinguish reactions and users. User list tooltip now shows the emoji
713
- name in grey and the additional users past the first five users in grey.Reactions that you have
714
- reacted to now have a blue border and slightly blue transparent background.Updated the heart
715
- emoji in the default emoji set.
714
+ - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998)
715
+ [`814356508d3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/814356508d3) - [ux]
716
+ Design changes to help distinguish reactions and users. User list tooltip now shows the emoji name
717
+ in grey and the additional users past the first five users in grey.Reactions that you have reacted
718
+ to now have a blue border and slightly blue transparent background.Updated the heart emoji in the
719
+ default emoji set.
716
720
 
717
721
  ### Minor Changes
718
722
 
719
- - [`ef61c4df3e5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ef61c4df3e5) - Add
720
- metadata when creating reaction store and pass it down to client
723
+ - [`ef61c4df3e5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ef61c4df3e5) - Add
724
+ metadata when creating reaction store and pass it down to client
721
725
 
722
726
  ## 19.1.5
723
727
 
724
728
  ### Patch Changes
725
729
 
726
- - Updated dependencies
730
+ - Updated dependencies
727
731
 
728
732
  ## 19.1.4
729
733
 
730
734
  ### Patch Changes
731
735
 
732
- - [#13864](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13864)
733
- [`b90c0237824`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b90c0237824) - Update
734
- package.jsons to remove unused dependencies.
735
- - Updated dependencies
736
+ - [#13864](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13864)
737
+ [`b90c0237824`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b90c0237824) - Update
738
+ package.jsons to remove unused dependencies.
739
+ - Updated dependencies
736
740
 
737
741
  ## 19.1.3
738
742
 
739
743
  ### Patch Changes
740
744
 
741
- - Updated dependencies
745
+ - Updated dependencies
742
746
 
743
747
  ## 19.1.2
744
748
 
745
749
  ### Patch Changes
746
750
 
747
- - [#12328](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12328)
748
- [`4adcd7f3f2b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4adcd7f3f2b) - Fixing
749
- small bug related to 19.0.0 change
750
- - Updated dependencies
751
+ - [#12328](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12328)
752
+ [`4adcd7f3f2b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4adcd7f3f2b) - Fixing
753
+ small bug related to 19.0.0 change
754
+ - Updated dependencies
751
755
 
752
756
  ## 19.1.1
753
757
 
754
758
  ### Patch Changes
755
759
 
756
- - [#12295](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12295)
757
- [`b15d1cda72e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b15d1cda72e) - Fixing
758
- small bug related to 19.0.0 change
760
+ - [#12295](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12295)
761
+ [`b15d1cda72e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b15d1cda72e) - Fixing
762
+ small bug related to 19.0.0 change
759
763
 
760
764
  ## 19.1.0
761
765
 
762
766
  ### Minor Changes
763
767
 
764
- - [#10569](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10569)
765
- [`7de0b9572f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7de0b9572f0) - [ux]
766
- Updated reactions so that if there is a reaction with count 0, it will now render as just the
767
- emoji with no counter (now an empty string). Previously in this scenario it would show the emoji
768
- with the number 0 next to it. This should only affect direct usages of the standalone Reactions
769
- components, anyone using ConnectedReactionsView (the standard use case) should see no difference
770
- as this component already filters out any reactions with a count of 0.
768
+ - [#10569](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10569)
769
+ [`7de0b9572f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7de0b9572f0) - [ux]
770
+ Updated reactions so that if there is a reaction with count 0, it will now render as just the
771
+ emoji with no counter (now an empty string). Previously in this scenario it would show the emoji
772
+ with the number 0 next to it. This should only affect direct usages of the standalone Reactions
773
+ components, anyone using ConnectedReactionsView (the standard use case) should see no difference
774
+ as this component already filters out any reactions with a count of 0.
771
775
 
772
776
  ### Patch Changes
773
777
 
774
- - Updated dependencies
778
+ - Updated dependencies
775
779
 
776
780
  ## 19.0.0
777
781
 
778
782
  ### Major Changes
779
783
 
780
- - [#10230](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10230)
781
- [`2f55d66e464`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2f55d66e464) - [ux]
782
- Updated the default emoji set that pops up when adding a new reaction and created a pill shaped
783
- outline around the reaction.
784
+ - [#10230](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10230)
785
+ [`2f55d66e464`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2f55d66e464) - [ux]
786
+ Updated the default emoji set that pops up when adding a new reaction and created a pill shaped
787
+ outline around the reaction.
784
788
 
785
- Default emoji set: replaced thumsdown with clap, heart_eyes with hearts, joy with astonished,
786
- and cry with thinking.
789
+ Default emoji set: replaced thumsdown with clap, heart_eyes with hearts, joy with astonished, and
790
+ cry with thinking.
787
791
 
788
- Pill shape outline: reactions outlined with a pill shape, there is a smaller gap between the
789
- emoji and the emoji count, a smaller set width, and the emoji and emoji count are centered.
792
+ Pill shape outline: reactions outlined with a pill shape, there is a smaller gap between the emoji
793
+ and the emoji count, a smaller set width, and the emoji and emoji count are centered.
790
794
 
791
795
  ### Patch Changes
792
796
 
793
- - Updated dependencies
797
+ - Updated dependencies
794
798
 
795
799
  ## 18.2.2
796
800
 
797
801
  ### Patch Changes
798
802
 
799
- - [#9083](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9083)
800
- [`87d5fffa13c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87d5fffa13c) - [ux]
801
- Fixed an issue where the Reaction trigger resizes and causes flickering
802
- - Updated dependencies
803
+ - [#9083](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9083)
804
+ [`87d5fffa13c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87d5fffa13c) - [ux]
805
+ Fixed an issue where the Reaction trigger resizes and causes flickering
806
+ - Updated dependencies
803
807
 
804
808
  ## 18.2.1
805
809
 
806
810
  ### Patch Changes
807
811
 
808
- - Updated dependencies
812
+ - Updated dependencies
809
813
 
810
814
  ## 18.2.0
811
815
 
812
816
  ### Minor Changes
813
817
 
814
- - [#7762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7762)
815
- [`7ddbf962bd9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ddbf962bd9) - [ux]
816
- Updated and added new translations
818
+ - [#7762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7762)
819
+ [`7ddbf962bd9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ddbf962bd9) - [ux]
820
+ Updated and added new translations
817
821
 
818
822
  ### Patch Changes
819
823
 
820
- - Updated dependencies
824
+ - Updated dependencies
821
825
 
822
826
  ## 18.1.9
823
827
 
824
828
  ### Patch Changes
825
829
 
826
- - [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857)
827
- [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) -
828
- Transpile packages using babel rather than tsc
830
+ - [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857)
831
+ [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile
832
+ packages using babel rather than tsc
829
833
 
830
834
  ## 18.1.8
831
835
 
832
836
  ### Patch Changes
833
837
 
834
- - [#5516](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5516)
835
- [`99abe1f917`](https://bitbucket.org/atlassian/atlassian-frontend/commits/99abe1f917) - Fix SLO
836
- of get reactions
837
- - Updated dependencies
838
+ - [#5516](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5516)
839
+ [`99abe1f917`](https://bitbucket.org/atlassian/atlassian-frontend/commits/99abe1f917) - Fix SLO of
840
+ get reactions
841
+ - Updated dependencies
838
842
 
839
843
  ## 18.1.7
840
844
 
841
845
  ### Patch Changes
842
846
 
843
- - [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497)
844
- [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export
845
- types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules
846
- compiler option. This requires version 3.8 of Typescript, read more about how we handle
847
- Typescript versions here: https://atlaskit.atlassian.com/get-started Also add `typescript` to
848
- `devDependencies` to denote version that the package was built with.
847
+ - [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497)
848
+ [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export
849
+ types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules
850
+ compiler option. This requires version 3.8 of Typescript, read more about how we handle Typescript
851
+ versions here: https://atlaskit.atlassian.com/get-started Also add `typescript` to
852
+ `devDependencies` to denote version that the package was built with.
849
853
 
850
854
  ## 18.1.6
851
855
 
852
856
  ### Patch Changes
853
857
 
854
- - Updated dependencies
858
+ - Updated dependencies
855
859
 
856
860
  ## 18.1.5
857
861
 
858
862
  ### Patch Changes
859
863
 
860
- - [#4749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4749)
861
- [`c0533f4b35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0533f4b35) - Upgrade
862
- analytics-next to prevent event loss
863
- (https://hello.atlassian.net/wiki/spaces/AFP/blog/2020/08/26/828144759/ACTION+REQUIRED+-+upgrade+analytics-next+to+prevent+event+loss)
864
- - Updated dependencies
864
+ - [#4749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4749)
865
+ [`c0533f4b35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0533f4b35) - Upgrade
866
+ analytics-next to prevent event loss
867
+ (https://hello.atlassian.net/wiki/spaces/AFP/blog/2020/08/26/828144759/ACTION+REQUIRED+-+upgrade+analytics-next+to+prevent+event+loss)
868
+ - Updated dependencies
865
869
 
866
870
  ## 18.1.4
867
871
 
868
872
  ### Patch Changes
869
873
 
870
- - [#4932](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4932)
871
- [`bee2157c1b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bee2157c1b) - Remove
872
- usage of @atlaskit/util-common-test package
874
+ - [#4932](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4932)
875
+ [`bee2157c1b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bee2157c1b) - Remove
876
+ usage of @atlaskit/util-common-test package
873
877
 
874
878
  ## 18.1.3
875
879
 
876
880
  ### Patch Changes
877
881
 
878
- - Updated dependencies
882
+ - Updated dependencies
879
883
 
880
884
  ## 18.1.2
881
885
 
882
886
  ### Patch Changes
883
887
 
884
- - [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885)
885
- [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded
886
- to TypeScript 3.9.6 and tslib to 2.0.0
888
+ - [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885)
889
+ [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded
890
+ to TypeScript 3.9.6 and tslib to 2.0.0
887
891
 
888
- Since tslib is a dependency for all our packages we recommend that products also follow this
889
- tslib upgrade to prevent duplicates of tslib being bundled.
892
+ Since tslib is a dependency for all our packages we recommend that products also follow this tslib
893
+ upgrade to prevent duplicates of tslib being bundled.
890
894
 
891
895
  ## 18.1.1
892
896
 
893
897
  ### Patch Changes
894
898
 
895
- - [#4393](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4393)
896
- [`76165ad82f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76165ad82f) - Bump
897
- required because of conflicts on wadmal release
899
+ - [#4393](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4393)
900
+ [`76165ad82f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76165ad82f) - Bump
901
+ required because of conflicts on wadmal release
898
902
 
899
903
  ## 18.1.0
900
904
 
901
905
  ### Minor Changes
902
906
 
903
- - [#3823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3823)
904
- [`940cde5773`](https://bitbucket.org/atlassian/atlassian-frontend/commits/940cde5773) - - The
905
- Reactions popup menu has been moved from the now-deprecated `@atlaskit/layer` to
906
- `@atlaskit/popper`.
907
- - (bugfix) The full emoji picker now repositions to stay in the window boundaries.
907
+ - [#3823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3823)
908
+ [`940cde5773`](https://bitbucket.org/atlassian/atlassian-frontend/commits/940cde5773) - - The
909
+ Reactions popup menu has been moved from the now-deprecated `@atlaskit/layer` to
910
+ `@atlaskit/popper`.
911
+ - (bugfix) The full emoji picker now repositions to stay in the window boundaries.
908
912
 
909
913
  ### Patch Changes
910
914
 
911
- - Updated dependencies
915
+ - Updated dependencies
912
916
 
913
917
  ## 18.0.1
914
918
 
915
919
  ### Patch Changes
916
920
 
917
- - [#3369](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3369)
918
- [`d03bff2147`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d03bff2147) - updated
919
- translations
921
+ - [#3369](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3369)
922
+ [`d03bff2147`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d03bff2147) - updated
923
+ translations
920
924
 
921
925
  ## 18.0.0
922
926
 
923
927
  ### Major Changes
924
928
 
925
- - [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335)
926
- [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) -
927
- Officially dropping IE11 support, from this version onwards there are no warranties of the
928
- package working in IE11. For more information see:
929
- https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
929
+ - [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335)
930
+ [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially
931
+ dropping IE11 support, from this version onwards there are no warranties of the package working in
932
+ IE11. For more information see:
933
+ https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
930
934
 
931
935
  ### Patch Changes
932
936
 
933
- - Updated dependencies
937
+ - Updated dependencies
934
938
 
935
939
  ## 17.3.4
936
940
 
937
941
  ### Patch Changes
938
942
 
939
- - [#2576](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2576)
940
- [`fc83c36503`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fc83c36503) - Update
941
- translation files via Traduki build
943
+ - [#2576](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2576)
944
+ [`fc83c36503`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fc83c36503) - Update
945
+ translation files via Traduki build
942
946
 
943
947
  ## 17.3.3
944
948
 
945
949
  ### Patch Changes
946
950
 
947
- - [#2677](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2677)
948
- [`4560b65a4f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4560b65a4f) - upgrade
949
- react-transition-group to latest
951
+ - [#2677](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2677)
952
+ [`4560b65a4f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4560b65a4f) - upgrade
953
+ react-transition-group to latest
950
954
 
951
955
  ## 17.3.2
952
956
 
953
957
  ### Patch Changes
954
958
 
955
- - [patch][778b27a380](https://bitbucket.org/atlassian/atlassian-frontend/commits/778b27a380):
959
+ - [patch][778b27a380](https://bitbucket.org/atlassian/atlassian-frontend/commits/778b27a380):
956
960
 
957
- Fix tooltip bug- Updated dependencies
958
- [3940bd71f1](https://bitbucket.org/atlassian/atlassian-frontend/commits/3940bd71f1):
961
+ Fix tooltip bug- Updated dependencies
962
+ [3940bd71f1](https://bitbucket.org/atlassian/atlassian-frontend/commits/3940bd71f1):
959
963
 
960
- - Updated dependencies
961
- [6b8e60827e](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b8e60827e):
962
- - Updated dependencies
963
- [449ef134b3](https://bitbucket.org/atlassian/atlassian-frontend/commits/449ef134b3):
964
- - Updated dependencies
965
- [57c0487a02](https://bitbucket.org/atlassian/atlassian-frontend/commits/57c0487a02):
966
- - @atlaskit/tooltip@15.2.6
967
- - @atlaskit/button@13.3.11
968
- - @atlaskit/icon@20.1.1
969
- - @atlaskit/editor-test-helpers@11.1.1
964
+ - Updated dependencies
965
+ [6b8e60827e](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b8e60827e):
966
+ - Updated dependencies
967
+ [449ef134b3](https://bitbucket.org/atlassian/atlassian-frontend/commits/449ef134b3):
968
+ - Updated dependencies
969
+ [57c0487a02](https://bitbucket.org/atlassian/atlassian-frontend/commits/57c0487a02):
970
+ - @atlaskit/tooltip@15.2.6
971
+ - @atlaskit/button@13.3.11
972
+ - @atlaskit/icon@20.1.1
973
+ - @atlaskit/editor-test-helpers@11.1.1
970
974
 
971
975
  ## 17.3.1
972
976
 
973
977
  ### Patch Changes
974
978
 
975
- - Updated dependencies
976
- [4d3749c9e6](https://bitbucket.org/atlassian/atlassian-frontend/commits/4d3749c9e6):
977
- - Updated dependencies
978
- [8126e7648c](https://bitbucket.org/atlassian/atlassian-frontend/commits/8126e7648c):
979
- - Updated dependencies
980
- [4bec09aa74](https://bitbucket.org/atlassian/atlassian-frontend/commits/4bec09aa74):
981
- - Updated dependencies
982
- [d63888b5e5](https://bitbucket.org/atlassian/atlassian-frontend/commits/d63888b5e5):
983
- - Updated dependencies
984
- [8c9e4f1ec6](https://bitbucket.org/atlassian/atlassian-frontend/commits/8c9e4f1ec6):
985
- - Updated dependencies
986
- [bdf25b1c4c](https://bitbucket.org/atlassian/atlassian-frontend/commits/bdf25b1c4c):
987
- - Updated dependencies
988
- [645918eda6](https://bitbucket.org/atlassian/atlassian-frontend/commits/645918eda6):
989
- - Updated dependencies
990
- [fad8a16962](https://bitbucket.org/atlassian/atlassian-frontend/commits/fad8a16962):
991
- - @atlaskit/layer@8.0.2
992
- - @atlaskit/emoji@62.7.1
993
- - @atlaskit/editor-test-helpers@11.0.0
994
- - @atlaskit/docs@8.5.0
979
+ - Updated dependencies
980
+ [4d3749c9e6](https://bitbucket.org/atlassian/atlassian-frontend/commits/4d3749c9e6):
981
+ - Updated dependencies
982
+ [8126e7648c](https://bitbucket.org/atlassian/atlassian-frontend/commits/8126e7648c):
983
+ - Updated dependencies
984
+ [4bec09aa74](https://bitbucket.org/atlassian/atlassian-frontend/commits/4bec09aa74):
985
+ - Updated dependencies
986
+ [d63888b5e5](https://bitbucket.org/atlassian/atlassian-frontend/commits/d63888b5e5):
987
+ - Updated dependencies
988
+ [8c9e4f1ec6](https://bitbucket.org/atlassian/atlassian-frontend/commits/8c9e4f1ec6):
989
+ - Updated dependencies
990
+ [bdf25b1c4c](https://bitbucket.org/atlassian/atlassian-frontend/commits/bdf25b1c4c):
991
+ - Updated dependencies
992
+ [645918eda6](https://bitbucket.org/atlassian/atlassian-frontend/commits/645918eda6):
993
+ - Updated dependencies
994
+ [fad8a16962](https://bitbucket.org/atlassian/atlassian-frontend/commits/fad8a16962):
995
+ - @atlaskit/layer@8.0.2
996
+ - @atlaskit/emoji@62.7.1
997
+ - @atlaskit/editor-test-helpers@11.0.0
998
+ - @atlaskit/docs@8.5.0
995
999
 
996
1000
  ## 17.3.0
997
1001
 
998
1002
  ### Minor Changes
999
1003
 
1000
- - [minor][a7d82e32f9](https://bitbucket.org/atlassian/atlassian-frontend/commits/a7d82e32f9):
1001
-
1002
- added SLI analytics when a reaction is added to an object to measure success/failure of service
1003
- requests-
1004
- [minor][000cba629f](https://bitbucket.org/atlassian/atlassian-frontend/commits/000cba629f):
1005
-
1006
- added SLI analytics when reactions are fetched for a container to measure success/failure of
1007
- service requests
1008
-
1009
- ### Patch Changes
1010
-
1011
- - Updated dependencies
1012
- [66dcced7a0](https://bitbucket.org/atlassian/atlassian-frontend/commits/66dcced7a0):
1013
- - Updated dependencies
1014
- [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1015
- - Updated dependencies
1016
- [0732eedea7](https://bitbucket.org/atlassian/atlassian-frontend/commits/0732eedea7):
1017
- - Updated dependencies
1018
- [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1019
- - Updated dependencies
1020
- [eea5e9bd8c](https://bitbucket.org/atlassian/atlassian-frontend/commits/eea5e9bd8c):
1021
- - Updated dependencies
1022
- [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1023
- - Updated dependencies
1024
- [5e3aab8e77](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e3aab8e77):
1025
- - @atlaskit/docs@8.4.0
1026
- - @atlaskit/icon@20.1.0
1027
- - @atlaskit/util-data-test@13.1.2
1028
- - @atlaskit/editor-test-helpers@10.6.1
1029
- - @atlaskit/button@13.3.9
1030
- - @atlaskit/tooltip@15.2.5
1004
+ - [minor][a7d82e32f9](https://bitbucket.org/atlassian/atlassian-frontend/commits/a7d82e32f9):
1005
+
1006
+ added SLI analytics when a reaction is added to an object to measure success/failure of service
1007
+ requests-
1008
+ [minor][000cba629f](https://bitbucket.org/atlassian/atlassian-frontend/commits/000cba629f):
1009
+
1010
+ added SLI analytics when reactions are fetched for a container to measure success/failure of
1011
+ service requests
1012
+
1013
+ ### Patch Changes
1014
+
1015
+ - Updated dependencies
1016
+ [66dcced7a0](https://bitbucket.org/atlassian/atlassian-frontend/commits/66dcced7a0):
1017
+ - Updated dependencies
1018
+ [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1019
+ - Updated dependencies
1020
+ [0732eedea7](https://bitbucket.org/atlassian/atlassian-frontend/commits/0732eedea7):
1021
+ - Updated dependencies
1022
+ [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1023
+ - Updated dependencies
1024
+ [eea5e9bd8c](https://bitbucket.org/atlassian/atlassian-frontend/commits/eea5e9bd8c):
1025
+ - Updated dependencies
1026
+ [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1027
+ - Updated dependencies
1028
+ [5e3aab8e77](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e3aab8e77):
1029
+ - @atlaskit/docs@8.4.0
1030
+ - @atlaskit/icon@20.1.0
1031
+ - @atlaskit/util-data-test@13.1.2
1032
+ - @atlaskit/editor-test-helpers@10.6.1
1033
+ - @atlaskit/button@13.3.9
1034
+ - @atlaskit/tooltip@15.2.5
1031
1035
 
1032
1036
  ## 17.2.8
1033
1037
 
1034
1038
  ### Patch Changes
1035
1039
 
1036
- - [patch][6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
1040
+ - [patch][6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
1037
1041
 
1038
- Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
1039
- [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
1042
+ Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
1043
+ [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
1040
1044
 
1041
- - @atlaskit/docs@8.3.2
1042
- - @atlaskit/analytics-next@6.3.5
1043
- - @atlaskit/button@13.3.7
1044
- - @atlaskit/icon@20.0.1
1045
- - @atlaskit/layer@8.0.1
1046
- - @atlaskit/theme@9.5.1
1047
- - @atlaskit/tooltip@15.2.3
1048
- - @atlaskit/editor-test-helpers@10.5.1
1049
- - @atlaskit/analytics-gas-types@4.0.13
1050
- - @atlaskit/analytics-namespaced-context@4.1.11
1051
- - @atlaskit/analytics-viewer@0.3.9
1052
- - @atlaskit/elements-test-helpers@0.6.7
1053
- - @atlaskit/emoji@62.6.3
1054
- - @atlaskit/util-data-test@13.1.1
1055
- - @atlaskit/util-service-support@5.0.1
1045
+ - @atlaskit/docs@8.3.2
1046
+ - @atlaskit/analytics-next@6.3.5
1047
+ - @atlaskit/button@13.3.7
1048
+ - @atlaskit/icon@20.0.1
1049
+ - @atlaskit/layer@8.0.1
1050
+ - @atlaskit/theme@9.5.1
1051
+ - @atlaskit/tooltip@15.2.3
1052
+ - @atlaskit/editor-test-helpers@10.5.1
1053
+ - @atlaskit/analytics-gas-types@4.0.13
1054
+ - @atlaskit/analytics-namespaced-context@4.1.11
1055
+ - @atlaskit/analytics-viewer@0.3.9
1056
+ - @atlaskit/elements-test-helpers@0.6.7
1057
+ - @atlaskit/emoji@62.6.3
1058
+ - @atlaskit/util-data-test@13.1.1
1059
+ - @atlaskit/util-service-support@5.0.1
1056
1060
 
1057
1061
  ## 17.2.7
1058
1062
 
1059
1063
  ### Patch Changes
1060
1064
 
1061
- - Updated dependencies
1062
- [3b19e30129](https://bitbucket.org/atlassian/atlassian-frontend/commits/3b19e30129):
1063
- - Updated dependencies
1064
- [fe4eaf06fc](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe4eaf06fc):
1065
- - Updated dependencies
1066
- [c0102a3ea2](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0102a3ea2):
1067
- - @atlaskit/editor-test-helpers@10.5.0
1068
- - @atlaskit/icon@20.0.0
1069
- - @atlaskit/layer@8.0.0
1070
- - @atlaskit/emoji@62.6.2
1071
- - @atlaskit/docs@8.3.1
1072
- - @atlaskit/button@13.3.6
1073
- - @atlaskit/tooltip@15.2.2
1065
+ - Updated dependencies
1066
+ [3b19e30129](https://bitbucket.org/atlassian/atlassian-frontend/commits/3b19e30129):
1067
+ - Updated dependencies
1068
+ [fe4eaf06fc](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe4eaf06fc):
1069
+ - Updated dependencies
1070
+ [c0102a3ea2](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0102a3ea2):
1071
+ - @atlaskit/editor-test-helpers@10.5.0
1072
+ - @atlaskit/icon@20.0.0
1073
+ - @atlaskit/layer@8.0.0
1074
+ - @atlaskit/emoji@62.6.2
1075
+ - @atlaskit/docs@8.3.1
1076
+ - @atlaskit/button@13.3.6
1077
+ - @atlaskit/tooltip@15.2.2
1074
1078
 
1075
1079
  ## 17.2.6
1076
1080
 
1077
1081
  ### Patch Changes
1078
1082
 
1079
- - [patch][ce21161796](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ce21161796):
1083
+ - [patch][ce21161796](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ce21161796):
1080
1084
 
1081
- Fix some types that were being transpiled to 'any'
1085
+ Fix some types that were being transpiled to 'any'
1082
1086
 
1083
1087
  ## 17.2.5
1084
1088
 
1085
- - Updated dependencies
1086
- [42a92cad4e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/42a92cad4e):
1087
- - @atlaskit/emoji@62.5.5
1088
- - @atlaskit/util-data-test@13.0.1
1089
- - @atlaskit/util-service-support@5.0.0
1089
+ - Updated dependencies
1090
+ [42a92cad4e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/42a92cad4e):
1091
+ - @atlaskit/emoji@62.5.5
1092
+ - @atlaskit/util-data-test@13.0.1
1093
+ - @atlaskit/util-service-support@5.0.0
1090
1094
 
1091
1095
  ## 17.2.4
1092
1096
 
1093
- - Updated dependencies
1094
- [bd94b1d552](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bd94b1d552):
1095
- - Updated dependencies
1096
- [ae4f336a3a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ae4f336a3a):
1097
- - @atlaskit/emoji@62.5.4
1098
- - @atlaskit/util-data-test@13.0.0
1099
- - @atlaskit/i18n-tools@0.6.0
1100
- - @atlaskit/util-service-support@4.1.0
1101
- - @atlaskit/editor-test-helpers@10.1.2
1102
- - @atlaskit/analytics-namespaced-context@4.1.10
1097
+ - Updated dependencies
1098
+ [bd94b1d552](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bd94b1d552):
1099
+ - Updated dependencies
1100
+ [ae4f336a3a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ae4f336a3a):
1101
+ - @atlaskit/emoji@62.5.4
1102
+ - @atlaskit/util-data-test@13.0.0
1103
+ - @atlaskit/i18n-tools@0.6.0
1104
+ - @atlaskit/util-service-support@4.1.0
1105
+ - @atlaskit/editor-test-helpers@10.1.2
1106
+ - @atlaskit/analytics-namespaced-context@4.1.10
1103
1107
 
1104
1108
  ## 17.2.3
1105
1109
 
1106
1110
  ### Patch Changes
1107
1111
 
1108
- - [patch][35d2229b2a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/35d2229b2a):
1112
+ - [patch][35d2229b2a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/35d2229b2a):
1109
1113
 
1110
- Adding missing license to packages and update to Copyright 2019 Atlassian Pty Ltd.
1114
+ Adding missing license to packages and update to Copyright 2019 Atlassian Pty Ltd.
1111
1115
 
1112
1116
  ## 17.2.2
1113
1117
 
1114
1118
  ### Patch Changes
1115
1119
 
1116
- - [patch][a2d0043716](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a2d0043716):
1120
+ - [patch][a2d0043716](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a2d0043716):
1117
1121
 
1118
- Updated version of analytics-next to fix potential incompatibilities with TS 3.6
1122
+ Updated version of analytics-next to fix potential incompatibilities with TS 3.6
1119
1123
 
1120
1124
  ## 17.2.1
1121
1125
 
1122
- - Updated dependencies
1123
- [80adfefba2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/80adfefba2):
1124
- - @atlaskit/emoji@62.5.1
1125
- - @atlaskit/editor-test-helpers@10.0.0
1126
+ - Updated dependencies
1127
+ [80adfefba2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/80adfefba2):
1128
+ - @atlaskit/emoji@62.5.1
1129
+ - @atlaskit/editor-test-helpers@10.0.0
1126
1130
 
1127
1131
  ## 17.2.0
1128
1132
 
1129
1133
  ### Minor Changes
1130
1134
 
1131
- - [minor][c6efb2f5b6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c6efb2f5b6):
1135
+ - [minor][c6efb2f5b6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c6efb2f5b6):
1132
1136
 
1133
- Prefix the legacy lifecycle methods with UNSAFE\_\* to avoid warning in React 16.9+
1137
+ Prefix the legacy lifecycle methods with UNSAFE\_\* to avoid warning in React 16.9+
1134
1138
 
1135
- More information about the deprecation of lifecycles methods can be found here:
1136
- https://reactjs.org/blog/2018/03/29/react-v-16-3.html#component-lifecycle-changes
1139
+ More information about the deprecation of lifecycles methods can be found here:
1140
+ https://reactjs.org/blog/2018/03/29/react-v-16-3.html#component-lifecycle-changes
1137
1141
 
1138
1142
  ## 17.1.10
1139
1143
 
1140
1144
  ### Patch Changes
1141
1145
 
1142
- - [patch][097b696613](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/097b696613):
1146
+ - [patch][097b696613](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/097b696613):
1143
1147
 
1144
- Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving
1145
- non-relative imports as relative imports
1148
+ Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving
1149
+ non-relative imports as relative imports
1146
1150
 
1147
1151
  ## 17.1.9
1148
1152
 
1149
1153
  ### Patch Changes
1150
1154
 
1151
- - [patch][ecca4d1dbb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ecca4d1dbb):
1155
+ - [patch][ecca4d1dbb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ecca4d1dbb):
1152
1156
 
1153
- Upgraded Typescript to 3.3.x
1157
+ Upgraded Typescript to 3.3.x
1154
1158
 
1155
1159
  ## 17.1.8
1156
1160
 
1157
1161
  ### Patch Changes
1158
1162
 
1159
- - [patch][926b43142b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/926b43142b):
1163
+ - [patch][926b43142b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/926b43142b):
1160
1164
 
1161
- Analytics-next has been converted to Typescript. Typescript consumers will now get static type
1162
- safety. Flow types are no longer provided. No behavioural changes.
1165
+ Analytics-next has been converted to Typescript. Typescript consumers will now get static type
1166
+ safety. Flow types are no longer provided. No behavioural changes.
1163
1167
 
1164
- **Breaking changes**
1168
+ **Breaking changes**
1165
1169
 
1166
- - `withAnalyticsForSumTypeProps` alias has been removed, please use `withAnalyticsEvents`
1167
- - `AnalyticsContextWrappedComp` alias has been removed, please use `withAnalyticsContext`
1170
+ - `withAnalyticsForSumTypeProps` alias has been removed, please use `withAnalyticsEvents`
1171
+ - `AnalyticsContextWrappedComp` alias has been removed, please use `withAnalyticsContext`
1168
1172
 
1169
- **Breaking changes to TypeScript annotations**
1173
+ **Breaking changes to TypeScript annotations**
1170
1174
 
1171
- - `withAnalyticsEvents` now infers proptypes automatically, consumers no longer need to
1172
- provide props as a generic type.
1173
- - `withAnalyticsContext` now infers proptypes automatically, consumers no longer need to
1174
- provide props as a generic type.
1175
- - Type `WithAnalyticsEventProps` has been renamed to `WithAnalyticsEventsProps` to match
1176
- source code
1177
- - Type `CreateUIAnalyticsEventSignature` has been renamed to `CreateUIAnalyticsEvent` to match
1178
- source code
1179
- - Type `UIAnalyticsEventHandlerSignature` has been renamed to `UIAnalyticsEventHandler` to
1180
- match source code
1181
- - Type `AnalyticsEventsPayload` has been renamed to `AnalyticsEventPayload`
1182
- - Type `ObjectType` has been removed, please use `Record<string, any>` or `[key: string]: any`
1183
- - Type `UIAnalyticsEventInterface` has been removed, please use `UIAnalyticsEvent`
1184
- - Type `AnalyticsEventInterface` has been removed, please use `AnalyticsEvent`
1185
- - Type `CreateAndFireEventFunction` removed and should now be inferred by TypeScript
1186
- - Type `AnalyticsEventUpdater` removed and should now be inferred by TypeScript
1175
+ - `withAnalyticsEvents` now infers proptypes automatically, consumers no longer need to provide
1176
+ props as a generic type.
1177
+ - `withAnalyticsContext` now infers proptypes automatically, consumers no longer need to provide
1178
+ props as a generic type.
1179
+ - Type `WithAnalyticsEventProps` has been renamed to `WithAnalyticsEventsProps` to match source
1180
+ code
1181
+ - Type `CreateUIAnalyticsEventSignature` has been renamed to `CreateUIAnalyticsEvent` to match
1182
+ source code
1183
+ - Type `UIAnalyticsEventHandlerSignature` has been renamed to `UIAnalyticsEventHandler` to match
1184
+ source code
1185
+ - Type `AnalyticsEventsPayload` has been renamed to `AnalyticsEventPayload`
1186
+ - Type `ObjectType` has been removed, please use `Record<string, any>` or `[key: string]: any`
1187
+ - Type `UIAnalyticsEventInterface` has been removed, please use `UIAnalyticsEvent`
1188
+ - Type `AnalyticsEventInterface` has been removed, please use `AnalyticsEvent`
1189
+ - Type `CreateAndFireEventFunction` removed and should now be inferred by TypeScript
1190
+ - Type `AnalyticsEventUpdater` removed and should now be inferred by TypeScript
1187
1191
 
1188
1192
  ## 17.1.7
1189
1193
 
1190
1194
  ### Patch Changes
1191
1195
 
1192
- - [patch][9f8ab1084b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9f8ab1084b):
1196
+ - [patch][9f8ab1084b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9f8ab1084b):
1193
1197
 
1194
- Consume analytics-next ts type definitions as an ambient declaration.
1198
+ Consume analytics-next ts type definitions as an ambient declaration.
1195
1199
 
1196
1200
  ## 17.1.6
1197
1201
 
1198
1202
  ### Patch Changes
1199
1203
 
1200
- - [patch][bbff8a7d87](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bbff8a7d87):
1204
+ - [patch][bbff8a7d87](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bbff8a7d87):
1201
1205
 
1202
- Fixes bug, missing version.json file
1206
+ Fixes bug, missing version.json file
1203
1207
 
1204
1208
  ## 17.1.5
1205
1209
 
1206
1210
  ### Patch Changes
1207
1211
 
1208
- - [patch][18dfac7332](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/18dfac7332):
1212
+ - [patch][18dfac7332](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/18dfac7332):
1209
1213
 
1210
- In this PR, we are:
1214
+ In this PR, we are:
1211
1215
 
1212
- - Re-introducing dist build folders
1213
- - Adding back cjs
1214
- - Replacing es5 by cjs and es2015 by esm
1215
- - Creating folders at the root for entry-points
1216
- - Removing the generation of the entry-points at the root Please see this
1217
- [ticket](https://product-fabric.atlassian.net/browse/BUILDTOOLS-118) or this
1218
- [page](https://hello.atlassian.net/wiki/spaces/FED/pages/452325500/Finishing+Atlaskit+multiple+entry+points)
1219
- for further details
1216
+ - Re-introducing dist build folders
1217
+ - Adding back cjs
1218
+ - Replacing es5 by cjs and es2015 by esm
1219
+ - Creating folders at the root for entry-points
1220
+ - Removing the generation of the entry-points at the root Please see this
1221
+ [ticket](https://product-fabric.atlassian.net/browse/BUILDTOOLS-118) or this
1222
+ [page](https://hello.atlassian.net/wiki/spaces/FED/pages/452325500/Finishing+Atlaskit+multiple+entry+points)
1223
+ for further details
1220
1224
 
1221
1225
  ## 17.1.4
1222
1226
 
1223
1227
  ### Patch Changes
1224
1228
 
1225
- - [patch][d0db01b410](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d0db01b410):
1229
+ - [patch][d0db01b410](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d0db01b410):
1226
1230
 
1227
- TypeScript users of withAnalyticsEvents and withAnalyticsContext are now required to provide
1228
- props as a generic type. This is so that TypeScript can correctly calculate the props and
1229
- defaultProps of the returned component.
1231
+ TypeScript users of withAnalyticsEvents and withAnalyticsContext are now required to provide props
1232
+ as a generic type. This is so that TypeScript can correctly calculate the props and defaultProps
1233
+ of the returned component.
1230
1234
 
1231
- Before:
1235
+ Before:
1232
1236
 
1233
- ```typescript
1234
- withAnalyticsEvents()(Button) as ComponentClass<Props>;
1235
- ```
1237
+ ```typescript
1238
+ withAnalyticsEvents()(Button) as ComponentClass<Props>;
1239
+ ```
1236
1240
 
1237
- After:
1241
+ After:
1238
1242
 
1239
- ```typescript
1240
- withAnalyticsEvents<Props>()(Button);
1241
- ```
1243
+ ```typescript
1244
+ withAnalyticsEvents<Props>()(Button);
1245
+ ```
1242
1246
 
1243
1247
  ## 17.1.3
1244
1248
 
1245
- - Updated dependencies
1246
- [06326ef3f7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/06326ef3f7):
1247
- - @atlaskit/docs@8.1.3
1248
- - @atlaskit/button@13.0.9
1249
- - @atlaskit/tooltip@15.0.2
1250
- - @atlaskit/editor-test-helpers@9.5.2
1251
- - @atlaskit/emoji@62.2.1
1252
- - @atlaskit/icon@19.0.0
1249
+ - Updated dependencies
1250
+ [06326ef3f7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/06326ef3f7):
1251
+ - @atlaskit/docs@8.1.3
1252
+ - @atlaskit/button@13.0.9
1253
+ - @atlaskit/tooltip@15.0.2
1254
+ - @atlaskit/editor-test-helpers@9.5.2
1255
+ - @atlaskit/emoji@62.2.1
1256
+ - @atlaskit/icon@19.0.0
1253
1257
 
1254
1258
  ## 17.1.2
1255
1259
 
1256
- - Updated dependencies
1257
- [67f06f58dd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/67f06f58dd):
1258
- - @atlaskit/icon@18.0.1
1259
- - @atlaskit/emoji@62.1.7
1260
- - @atlaskit/tooltip@15.0.0
1260
+ - Updated dependencies
1261
+ [67f06f58dd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/67f06f58dd):
1262
+ - @atlaskit/icon@18.0.1
1263
+ - @atlaskit/emoji@62.1.7
1264
+ - @atlaskit/tooltip@15.0.0
1261
1265
 
1262
1266
  ## 17.1.1
1263
1267
 
1264
- - Updated dependencies
1265
- [cfc3c8adb3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cfc3c8adb3):
1266
- - @atlaskit/docs@8.1.2
1267
- - @atlaskit/button@13.0.8
1268
- - @atlaskit/tooltip@14.0.3
1269
- - @atlaskit/editor-test-helpers@9.3.9
1270
- - @atlaskit/emoji@62.1.6
1271
- - @atlaskit/icon@18.0.0
1268
+ - Updated dependencies
1269
+ [cfc3c8adb3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cfc3c8adb3):
1270
+ - @atlaskit/docs@8.1.2
1271
+ - @atlaskit/button@13.0.8
1272
+ - @atlaskit/tooltip@14.0.3
1273
+ - @atlaskit/editor-test-helpers@9.3.9
1274
+ - @atlaskit/emoji@62.1.6
1275
+ - @atlaskit/icon@18.0.0
1272
1276
 
1273
1277
  ## 17.1.0
1274
1278
 
1275
- - [minor][21f5217343](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/21f5217343):
1279
+ - [minor][21f5217343](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/21f5217343):
1276
1280
 
1277
- - consume emoji new entrypoints in AK
1281
+ - consume emoji new entrypoints in AK
1278
1282
 
1279
1283
  ## 17.0.1
1280
1284
 
1281
- - [patch][5e00c40c32](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5e00c40c32):
1285
+ - [patch][5e00c40c32](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5e00c40c32):
1282
1286
 
1283
- - Remove the Reactions component's white background
1287
+ - Remove the Reactions component's white background
1284
1288
 
1285
1289
  ## 17.0.0
1286
1290
 
1287
- - [major][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
1291
+ - [major][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
1288
1292
 
1289
- - Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use
1290
- this package, please ensure you use at least this version of react and react-dom.
1293
+ - Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use
1294
+ this package, please ensure you use at least this version of react and react-dom.
1291
1295
 
1292
1296
  ## 16.1.10
1293
1297
 
1294
- - Updated dependencies
1295
- [a1192ef860](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a1192ef860):
1296
- - @atlaskit/emoji@61.0.0
1297
- - @atlaskit/editor-test-helpers@8.0.8
1298
- - @atlaskit/util-data-test@11.1.9
1298
+ - Updated dependencies
1299
+ [a1192ef860](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a1192ef860):
1300
+ - @atlaskit/emoji@61.0.0
1301
+ - @atlaskit/editor-test-helpers@8.0.8
1302
+ - @atlaskit/util-data-test@11.1.9
1299
1303
 
1300
1304
  ## 16.1.9
1301
1305
 
1302
- - Updated dependencies
1303
- [e7292ab444](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7292ab444):
1304
- - @atlaskit/emoji@60.0.0
1305
- - @atlaskit/editor-test-helpers@8.0.7
1306
- - @atlaskit/util-data-test@11.1.8
1306
+ - Updated dependencies
1307
+ [e7292ab444](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7292ab444):
1308
+ - @atlaskit/emoji@60.0.0
1309
+ - @atlaskit/editor-test-helpers@8.0.7
1310
+ - @atlaskit/util-data-test@11.1.8
1307
1311
 
1308
1312
  ## 16.1.8
1309
1313
 
1310
- - [patch][0a4ccaafae](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0a4ccaafae):
1314
+ - [patch][0a4ccaafae](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0a4ccaafae):
1311
1315
 
1312
- - Bump tslib
1316
+ - Bump tslib
1313
1317
 
1314
1318
  ## 16.1.7
1315
1319
 
1316
- - Updated dependencies
1317
- [9c0b4744be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0b4744be):
1318
- - @atlaskit/docs@7.0.3
1319
- - @atlaskit/button@12.0.3
1320
- - @atlaskit/icon@16.0.9
1321
- - @atlaskit/tooltip@13.0.4
1322
- - @atlaskit/emoji@59.2.3
1323
- - @atlaskit/theme@8.1.7
1320
+ - Updated dependencies
1321
+ [9c0b4744be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0b4744be):
1322
+ - @atlaskit/docs@7.0.3
1323
+ - @atlaskit/button@12.0.3
1324
+ - @atlaskit/icon@16.0.9
1325
+ - @atlaskit/tooltip@13.0.4
1326
+ - @atlaskit/emoji@59.2.3
1327
+ - @atlaskit/theme@8.1.7
1324
1328
 
1325
1329
  ## 16.1.6
1326
1330
 
1327
- - [patch][3f28e6443c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3f28e6443c):
1331
+ - [patch][3f28e6443c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3f28e6443c):
1328
1332
 
1329
- - @atlaskit/analytics-next-types is deprecated. Now you can use types for
1330
- @atlaskit/analytics-next supplied from itself.
1333
+ - @atlaskit/analytics-next-types is deprecated. Now you can use types for @atlaskit/analytics-next
1334
+ supplied from itself.
1331
1335
 
1332
1336
  ## 16.1.5
1333
1337
 
1334
- - Updated dependencies
1335
- [1e826b2966](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e826b2966):
1336
- - @atlaskit/docs@7.0.2
1337
- - @atlaskit/analytics-next@4.0.3
1338
- - @atlaskit/icon@16.0.8
1339
- - @atlaskit/theme@8.1.6
1340
- - @atlaskit/tooltip@13.0.3
1341
- - @atlaskit/emoji@59.2.1
1342
- - @atlaskit/button@12.0.0
1338
+ - Updated dependencies
1339
+ [1e826b2966](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e826b2966):
1340
+ - @atlaskit/docs@7.0.2
1341
+ - @atlaskit/analytics-next@4.0.3
1342
+ - @atlaskit/icon@16.0.8
1343
+ - @atlaskit/theme@8.1.6
1344
+ - @atlaskit/tooltip@13.0.3
1345
+ - @atlaskit/emoji@59.2.1
1346
+ - @atlaskit/button@12.0.0
1343
1347
 
1344
1348
  ## 16.1.4
1345
1349
 
1346
- - [patch][d13fad66df](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d13fad66df):
1350
+ - [patch][d13fad66df](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d13fad66df):
1347
1351
 
1348
- - Enable esModuleInterop for typescript, this allows correct use of default exports
1352
+ - Enable esModuleInterop for typescript, this allows correct use of default exports
1349
1353
 
1350
1354
  ## 16.1.3
1351
1355
 
1352
- - Updated dependencies
1353
- [c2c36de22b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c2c36de22b):
1354
- - @atlaskit/emoji@59.0.0
1355
- - @atlaskit/editor-test-helpers@8.0.3
1356
- - @atlaskit/util-data-test@11.1.5
1356
+ - Updated dependencies
1357
+ [c2c36de22b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c2c36de22b):
1358
+ - @atlaskit/emoji@59.0.0
1359
+ - @atlaskit/editor-test-helpers@8.0.3
1360
+ - @atlaskit/util-data-test@11.1.5
1357
1361
 
1358
1362
  ## 16.1.2
1359
1363
 
1360
- - Updated dependencies
1361
- [b0210d7ccc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b0210d7ccc):
1362
- - @atlaskit/elements-test-helpers@0.5.0
1363
- - @atlaskit/emoji@58.2.0
1364
+ - Updated dependencies
1365
+ [b0210d7ccc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b0210d7ccc):
1366
+ - @atlaskit/elements-test-helpers@0.5.0
1367
+ - @atlaskit/emoji@58.2.0
1364
1368
 
1365
1369
  ## 16.1.1
1366
1370
 
1367
- - [patch][1bcaa1b991](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1bcaa1b991):
1371
+ - [patch][1bcaa1b991](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1bcaa1b991):
1368
1372
 
1369
- - Add npmignore for index.ts to prevent some jest tests from resolving that instead of
1370
- index.js
1373
+ - Add npmignore for index.ts to prevent some jest tests from resolving that instead of index.js
1371
1374
 
1372
1375
  ## 16.1.0
1373
1376
 
1374
- - [minor][b684722884](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b684722884):
1377
+ - [minor][b684722884](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b684722884):
1375
1378
 
1376
- - improvement of SSR tests and examples for Fabric Elements
1379
+ - improvement of SSR tests and examples for Fabric Elements
1377
1380
 
1378
1381
  ## 16.0.0
1379
1382
 
1380
- - [major][9d5cc39394](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d5cc39394):
1383
+ - [major][9d5cc39394](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d5cc39394):
1381
1384
 
1382
- - Dropped ES5 distributables from the typescript packages
1385
+ - Dropped ES5 distributables from the typescript packages
1383
1386
 
1384
1387
  ## 15.6.3
1385
1388
 
1386
- - Updated dependencies
1387
- [7261577953](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7261577953):
1388
- - @atlaskit/emoji@57.0.1
1389
- - @atlaskit/elements-test-helpers@0.3.0
1389
+ - Updated dependencies
1390
+ [7261577953](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7261577953):
1391
+ - @atlaskit/emoji@57.0.1
1392
+ - @atlaskit/elements-test-helpers@0.3.0
1390
1393
 
1391
1394
  ## 15.6.2
1392
1395
 
1393
- - Updated dependencies
1394
- [7ab3e93996](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7ab3e93996):
1395
- - @atlaskit/editor-test-helpers@7.0.6
1396
- - @atlaskit/emoji@57.0.0
1397
- - @atlaskit/util-data-test@10.2.5
1396
+ - Updated dependencies
1397
+ [7ab3e93996](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7ab3e93996):
1398
+ - @atlaskit/editor-test-helpers@7.0.6
1399
+ - @atlaskit/emoji@57.0.0
1400
+ - @atlaskit/util-data-test@10.2.5
1398
1401
 
1399
1402
  ## 15.6.1
1400
1403
 
1401
- - Updated dependencies
1402
- [76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
1403
- - @atlaskit/button@10.1.3
1404
- - @atlaskit/icon@16.0.4
1405
- - @atlaskit/analytics-gas-types@3.2.5
1406
- - @atlaskit/analytics-namespaced-context@2.2.1
1407
- - @atlaskit/emoji@56.2.1
1408
- - @atlaskit/util-data-test@10.2.3
1409
- - @atlaskit/util-service-support@3.1.1
1410
- - @atlaskit/analytics-viewer@0.1.7
1411
- - @atlaskit/docs@7.0.0
1412
- - @atlaskit/analytics-next@4.0.0
1413
- - @atlaskit/layer@6.0.0
1414
- - @atlaskit/theme@8.0.0
1415
- - @atlaskit/tooltip@13.0.0
1404
+ - Updated dependencies
1405
+ [76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
1406
+ - @atlaskit/button@10.1.3
1407
+ - @atlaskit/icon@16.0.4
1408
+ - @atlaskit/analytics-gas-types@3.2.5
1409
+ - @atlaskit/analytics-namespaced-context@2.2.1
1410
+ - @atlaskit/emoji@56.2.1
1411
+ - @atlaskit/util-data-test@10.2.3
1412
+ - @atlaskit/util-service-support@3.1.1
1413
+ - @atlaskit/analytics-viewer@0.1.7
1414
+ - @atlaskit/docs@7.0.0
1415
+ - @atlaskit/analytics-next@4.0.0
1416
+ - @atlaskit/layer@6.0.0
1417
+ - @atlaskit/theme@8.0.0
1418
+ - @atlaskit/tooltip@13.0.0
1416
1419
 
1417
1420
  ## 15.6.0
1418
1421
 
1419
- - [minor][aa6176aad1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/aa6176aad1):
1422
+ - [minor][aa6176aad1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/aa6176aad1):
1420
1423
 
1421
- - added SSR tests to reactions
1424
+ - added SSR tests to reactions
1422
1425
 
1423
1426
  ## 15.5.1
1424
1427
 
1425
- - Updated dependencies
1426
- [4aee5f3cec](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4aee5f3cec):
1427
- - @atlaskit/emoji@56.0.0
1428
- - @atlaskit/editor-test-helpers@7.0.2
1429
- - @atlaskit/util-data-test@10.2.2
1428
+ - Updated dependencies
1429
+ [4aee5f3cec](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4aee5f3cec):
1430
+ - @atlaskit/emoji@56.0.0
1431
+ - @atlaskit/editor-test-helpers@7.0.2
1432
+ - @atlaskit/util-data-test@10.2.2
1430
1433
 
1431
1434
  ## 15.5.0
1432
1435
 
1433
- - [minor][9ab9e467d2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9ab9e467d2):
1436
+ - [minor][9ab9e467d2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9ab9e467d2):
1434
1437
 
1435
- - Bump version of typestyle for ssr compatibility
1438
+ - Bump version of typestyle for ssr compatibility
1436
1439
 
1437
1440
  ## 15.4.2
1438
1441
 
1439
- - Updated dependencies
1440
- [4af5bd2a58](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4af5bd2a58):
1441
- - @atlaskit/emoji@55.0.1
1442
- - @atlaskit/editor-test-helpers@7.0.0
1442
+ - Updated dependencies
1443
+ [4af5bd2a58](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4af5bd2a58):
1444
+ - @atlaskit/emoji@55.0.1
1445
+ - @atlaskit/editor-test-helpers@7.0.0
1443
1446
 
1444
1447
  ## 15.4.1
1445
1448
 
1446
- - Updated dependencies
1447
- [fc6164c8c2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/fc6164c8c2):
1448
- - @atlaskit/emoji@55.0.0
1449
- - @atlaskit/editor-test-helpers@6.3.22
1450
- - @atlaskit/util-data-test@10.2.1
1449
+ - Updated dependencies
1450
+ [fc6164c8c2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/fc6164c8c2):
1451
+ - @atlaskit/emoji@55.0.0
1452
+ - @atlaskit/editor-test-helpers@6.3.22
1453
+ - @atlaskit/util-data-test@10.2.1
1451
1454
 
1452
1455
  ## 15.4.0
1453
1456
 
1454
- - [minor][68ef17af8b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/68ef17af8b):
1457
+ - [minor][68ef17af8b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/68ef17af8b):
1455
1458
 
1456
- - Enable noImplicitAny for reactions, fix type issues.
1459
+ - Enable noImplicitAny for reactions, fix type issues.
1457
1460
 
1458
1461
  ## 15.3.4
1459
1462
 
1460
- - Updated dependencies
1461
- [69c8d0c19c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/69c8d0c19c):
1462
- - @atlaskit/editor-test-helpers@6.3.17
1463
- - @atlaskit/emoji@54.0.0
1464
- - @atlaskit/util-data-test@10.0.36
1463
+ - Updated dependencies
1464
+ [69c8d0c19c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/69c8d0c19c):
1465
+ - @atlaskit/editor-test-helpers@6.3.17
1466
+ - @atlaskit/emoji@54.0.0
1467
+ - @atlaskit/util-data-test@10.0.36
1465
1468
 
1466
1469
  ## 15.3.3
1467
1470
 
1468
- - Updated dependencies
1469
- [d7ef59d432](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d7ef59d432):
1470
- - @atlaskit/docs@6.0.1
1471
- - @atlaskit/button@10.1.2
1472
- - @atlaskit/tooltip@12.1.15
1473
- - @atlaskit/editor-test-helpers@6.3.13
1474
- - @atlaskit/emoji@53.0.1
1475
- - @atlaskit/icon@16.0.0
1471
+ - Updated dependencies
1472
+ [d7ef59d432](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d7ef59d432):
1473
+ - @atlaskit/docs@6.0.1
1474
+ - @atlaskit/button@10.1.2
1475
+ - @atlaskit/tooltip@12.1.15
1476
+ - @atlaskit/editor-test-helpers@6.3.13
1477
+ - @atlaskit/emoji@53.0.1
1478
+ - @atlaskit/icon@16.0.0
1476
1479
 
1477
1480
  ## 15.3.2
1478
1481
 
1479
- - Updated dependencies
1480
- [85d5d168fd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/85d5d168fd):
1481
- - @atlaskit/emoji@53.0.0
1482
- - @atlaskit/editor-test-helpers@6.3.12
1483
- - @atlaskit/util-data-test@10.0.34
1482
+ - Updated dependencies
1483
+ [85d5d168fd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/85d5d168fd):
1484
+ - @atlaskit/emoji@53.0.0
1485
+ - @atlaskit/editor-test-helpers@6.3.12
1486
+ - @atlaskit/util-data-test@10.0.34
1484
1487
 
1485
1488
  ## 15.3.1
1486
1489
 
1487
- - Updated dependencies [dadef80](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dadef80):
1488
- - @atlaskit/emoji@52.0.0
1489
- - @atlaskit/editor-test-helpers@6.3.11
1490
- - @atlaskit/util-data-test@10.0.33
1490
+ - Updated dependencies [dadef80](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dadef80):
1491
+ - @atlaskit/emoji@52.0.0
1492
+ - @atlaskit/editor-test-helpers@6.3.11
1493
+ - @atlaskit/util-data-test@10.0.33
1491
1494
 
1492
1495
  ## 15.3.0
1493
1496
 
1494
- - [minor][e60d7aa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e60d7aa):
1497
+ - [minor][e60d7aa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e60d7aa):
1495
1498
 
1496
- - updated i18n translations
1499
+ - updated i18n translations
1497
1500
 
1498
1501
  ## 15.2.2
1499
1502
 
1500
- - Updated dependencies [cbb8cb5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cbb8cb5):
1501
- - @atlaskit/editor-test-helpers@6.3.7
1502
- - @atlaskit/emoji@51.0.0
1503
- - @atlaskit/util-data-test@10.0.31
1503
+ - Updated dependencies [cbb8cb5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cbb8cb5):
1504
+ - @atlaskit/editor-test-helpers@6.3.7
1505
+ - @atlaskit/emoji@51.0.0
1506
+ - @atlaskit/util-data-test@10.0.31
1504
1507
 
1505
1508
  ## 15.2.1
1506
1509
 
1507
- - Updated dependencies [72d37fb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/72d37fb):
1508
- - @atlaskit/emoji@50.0.0
1509
- - @atlaskit/util-data-test@10.0.30
1510
+ - Updated dependencies [72d37fb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/72d37fb):
1511
+ - @atlaskit/emoji@50.0.0
1512
+ - @atlaskit/util-data-test@10.0.30
1510
1513
 
1511
1514
  ## 15.2.0
1512
1515
 
1513
- - [minor][277edda](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/277edda):
1516
+ - [minor][277edda](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/277edda):
1514
1517
 
1515
- - replaced enzyme-react-intl with @atlaskit/editor-test-helpers
1518
+ - replaced enzyme-react-intl with @atlaskit/editor-test-helpers
1516
1519
 
1517
1520
  ## 15.1.0
1518
1521
 
1519
- - [minor][1296324](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1296324):
1522
+ - [minor][1296324](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1296324):
1520
1523
 
1521
- - added i18n support to reactions
1524
+ - added i18n support to reactions
1522
1525
 
1523
- - [minor][ccf385a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ccf385a):
1526
+ - [minor][ccf385a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ccf385a):
1524
1527
 
1525
- - added i18n translations
1528
+ - added i18n translations
1526
1529
 
1527
1530
  ## 15.0.11
1528
1531
 
1529
- - Updated dependencies [b3738ea](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b3738ea):
1530
- - @atlaskit/emoji@49.0.0
1531
- - @atlaskit/util-data-test@10.0.28
1532
+ - Updated dependencies [b3738ea](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b3738ea):
1533
+ - @atlaskit/emoji@49.0.0
1534
+ - @atlaskit/util-data-test@10.0.28
1532
1535
 
1533
1536
  ## 15.0.10
1534
1537
 
1535
- - Updated dependencies [80f765b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/80f765b):
1536
- - @atlaskit/emoji@48.0.0
1537
- - @atlaskit/util-data-test@10.0.26
1538
+ - Updated dependencies [80f765b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/80f765b):
1539
+ - @atlaskit/emoji@48.0.0
1540
+ - @atlaskit/util-data-test@10.0.26
1538
1541
 
1539
1542
  ## 15.0.9
1540
1543
 
1541
- - Updated dependencies [58b84fa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/58b84fa):
1542
- - @atlaskit/analytics-next@3.1.2
1543
- - @atlaskit/button@10.1.1
1544
- - @atlaskit/icon@15.0.2
1545
- - @atlaskit/layer@5.0.10
1546
- - @atlaskit/theme@7.0.1
1547
- - @atlaskit/tooltip@12.1.13
1548
- - @atlaskit/analytics-gas-types@3.2.3
1549
- - @atlaskit/analytics-namespaced-context@2.1.5
1550
- - @atlaskit/emoji@47.0.7
1551
- - @atlaskit/util-data-test@10.0.25
1552
- - @atlaskit/util-service-support@3.0.5
1553
- - @atlaskit/docs@6.0.0
1544
+ - Updated dependencies [58b84fa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/58b84fa):
1545
+ - @atlaskit/analytics-next@3.1.2
1546
+ - @atlaskit/button@10.1.1
1547
+ - @atlaskit/icon@15.0.2
1548
+ - @atlaskit/layer@5.0.10
1549
+ - @atlaskit/theme@7.0.1
1550
+ - @atlaskit/tooltip@12.1.13
1551
+ - @atlaskit/analytics-gas-types@3.2.3
1552
+ - @atlaskit/analytics-namespaced-context@2.1.5
1553
+ - @atlaskit/emoji@47.0.7
1554
+ - @atlaskit/util-data-test@10.0.25
1555
+ - @atlaskit/util-service-support@3.0.5
1556
+ - @atlaskit/docs@6.0.0
1554
1557
 
1555
1558
  ## 15.0.8
1556
1559
 
1557
- - Updated dependencies [d13242d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d13242d):
1558
- - @atlaskit/docs@5.2.3
1559
- - @atlaskit/button@10.0.4
1560
- - @atlaskit/icon@15.0.1
1561
- - @atlaskit/tooltip@12.1.12
1562
- - @atlaskit/emoji@47.0.6
1563
- - @atlaskit/theme@7.0.0
1560
+ - Updated dependencies [d13242d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d13242d):
1561
+ - @atlaskit/docs@5.2.3
1562
+ - @atlaskit/button@10.0.4
1563
+ - @atlaskit/icon@15.0.1
1564
+ - @atlaskit/tooltip@12.1.12
1565
+ - @atlaskit/emoji@47.0.6
1566
+ - @atlaskit/theme@7.0.0
1564
1567
 
1565
1568
  ## 15.0.7
1566
1569
 
1567
- - [patch][3061b52](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3061b52):
1570
+ - [patch][3061b52](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3061b52):
1568
1571
 
1569
- - AK-5723 - adjust files in package.json to ensure correct publishing of dist/package.json
1572
+ - AK-5723 - adjust files in package.json to ensure correct publishing of dist/package.json
1570
1573
 
1571
1574
  ## 15.0.6
1572
1575
 
1573
- - Updated dependencies [ab9b69c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ab9b69c):
1574
- - @atlaskit/docs@5.2.2
1575
- - @atlaskit/button@10.0.1
1576
- - @atlaskit/tooltip@12.1.11
1577
- - @atlaskit/emoji@47.0.2
1578
- - @atlaskit/icon@15.0.0
1576
+ - Updated dependencies [ab9b69c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ab9b69c):
1577
+ - @atlaskit/docs@5.2.2
1578
+ - @atlaskit/button@10.0.1
1579
+ - @atlaskit/tooltip@12.1.11
1580
+ - @atlaskit/emoji@47.0.2
1581
+ - @atlaskit/icon@15.0.0
1579
1582
 
1580
1583
  ## 15.0.5
1581
1584
 
1582
- - Updated dependencies [6998f11](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6998f11):
1583
- - @atlaskit/docs@5.2.1
1584
- - @atlaskit/analytics-next@3.1.1
1585
- - @atlaskit/icon@14.6.1
1586
- - @atlaskit/theme@6.2.1
1587
- - @atlaskit/tooltip@12.1.10
1588
- - @atlaskit/emoji@47.0.1
1589
- - @atlaskit/button@10.0.0
1590
- - @atlaskit/analytics-next-types@3.1.2
1585
+ - Updated dependencies [6998f11](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6998f11):
1586
+ - @atlaskit/docs@5.2.1
1587
+ - @atlaskit/analytics-next@3.1.1
1588
+ - @atlaskit/icon@14.6.1
1589
+ - @atlaskit/theme@6.2.1
1590
+ - @atlaskit/tooltip@12.1.10
1591
+ - @atlaskit/emoji@47.0.1
1592
+ - @atlaskit/button@10.0.0
1593
+ - @atlaskit/analytics-next-types@3.1.2
1591
1594
 
1592
1595
  ## 15.0.4
1593
1596
 
1594
- - Updated dependencies [7e8b4b9](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e8b4b9):
1595
- - @atlaskit/emoji@47.0.0
1596
- - @atlaskit/util-data-test@10.0.21
1597
+ - Updated dependencies [7e8b4b9](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e8b4b9):
1598
+ - @atlaskit/emoji@47.0.0
1599
+ - @atlaskit/util-data-test@10.0.21
1597
1600
 
1598
1601
  ## 15.0.3
1599
1602
 
1600
- - Updated dependencies [2c21466](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2c21466):
1601
- - @atlaskit/emoji@46.0.0
1602
- - @atlaskit/util-data-test@10.0.20
1603
+ - Updated dependencies [2c21466](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2c21466):
1604
+ - @atlaskit/emoji@46.0.0
1605
+ - @atlaskit/util-data-test@10.0.20
1603
1606
 
1604
1607
  ## 15.0.2
1605
1608
 
1606
- - [patch][36c362f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/36c362f):
1609
+ - [patch][36c362f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/36c362f):
1607
1610
 
1608
- - FS-3174 - Fix usage of gridSize() and borderRadius()
1611
+ - FS-3174 - Fix usage of gridSize() and borderRadius()
1609
1612
 
1610
1613
  ## 15.0.1
1611
1614
 
1612
- - [patch] Updated dependencies
1613
- [b1ce691](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b1ce691)
1614
- - @atlaskit/emoji@45.0.0
1615
- - @atlaskit/util-data-test@10.0.16
1615
+ - [patch] Updated dependencies
1616
+ [b1ce691](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b1ce691)
1617
+ - @atlaskit/emoji@45.0.0
1618
+ - @atlaskit/util-data-test@10.0.16
1616
1619
 
1617
1620
  ## 15.0.0
1618
1621
 
1619
- - [major] Fix reactions. Remove context and receive store as a prop.
1620
- [b1de9c8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b1de9c8)
1622
+ - [major] Fix reactions. Remove context and receive store as a prop.
1623
+ [b1de9c8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b1de9c8)
1621
1624
 
1622
1625
  ## 14.0.5
1623
1626
 
1624
- - [patch] Updated dependencies
1625
- [2afa60d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2afa60d)
1626
- - @atlaskit/emoji@44.0.0
1627
- - @atlaskit/util-data-test@10.0.14
1627
+ - [patch] Updated dependencies
1628
+ [2afa60d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2afa60d)
1629
+ - @atlaskit/emoji@44.0.0
1630
+ - @atlaskit/util-data-test@10.0.14
1628
1631
 
1629
1632
  ## 14.0.4
1630
1633
 
1631
- - [patch] Fix malformed operational analytics event
1632
- [306cf0a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/306cf0a)
1634
+ - [patch] Fix malformed operational analytics event
1635
+ [306cf0a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/306cf0a)
1633
1636
 
1634
1637
  ## 14.0.3
1635
1638
 
1636
- - [patch] Updated dependencies
1637
- [8b2c4d3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8b2c4d3)
1638
- - [patch] Updated dependencies
1639
- [3302d51](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3302d51)
1640
- - @atlaskit/emoji@43.0.0
1641
- - @atlaskit/util-data-test@10.0.12
1639
+ - [patch] Updated dependencies
1640
+ [8b2c4d3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8b2c4d3)
1641
+ - [patch] Updated dependencies
1642
+ [3302d51](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3302d51)
1643
+ - @atlaskit/emoji@43.0.0
1644
+ - @atlaskit/util-data-test@10.0.12
1642
1645
 
1643
1646
  ## 14.0.2
1644
1647
 
1645
- - [patch] Fix letter case 'actionSubjectID' => 'actionSubjectId'
1646
- [3757992](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3757992)
1648
+ - [patch] Fix letter case 'actionSubjectID' => 'actionSubjectId'
1649
+ [3757992](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3757992)
1647
1650
 
1648
1651
  ## 14.0.1
1649
1652
 
1650
- - [patch] Updated dependencies
1651
- [65c6514](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/65c6514)
1652
- - @atlaskit/docs@5.0.8
1653
- - @atlaskit/button@9.0.13
1654
- - @atlaskit/tooltip@12.1.1
1655
- - @atlaskit/emoji@42.0.1
1656
- - @atlaskit/icon@14.0.0
1653
+ - [patch] Updated dependencies
1654
+ [65c6514](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/65c6514)
1655
+ - @atlaskit/docs@5.0.8
1656
+ - @atlaskit/button@9.0.13
1657
+ - @atlaskit/tooltip@12.1.1
1658
+ - @atlaskit/emoji@42.0.1
1659
+ - @atlaskit/icon@14.0.0
1657
1660
 
1658
1661
  ## 14.0.0
1659
1662
 
1660
- - [major] Reactions state management revisited
1661
- [7e8d079](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e8d079)
1663
+ - [major] Reactions state management revisited
1664
+ [7e8d079](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e8d079)
1662
1665
 
1663
1666
  ## 13.1.3
1664
1667
 
1665
- - [patch] Updated dependencies
1666
- [927ae63](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/927ae63)
1667
- - @atlaskit/util-data-test@10.0.10
1668
- - @atlaskit/emoji@42.0.0
1668
+ - [patch] Updated dependencies
1669
+ [927ae63](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/927ae63)
1670
+ - @atlaskit/util-data-test@10.0.10
1671
+ - @atlaskit/emoji@42.0.0
1669
1672
 
1670
1673
  ## 13.1.2
1671
1674
 
1672
- - [patch] use new tsconfig for typechecking
1673
- [09df171](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/09df171)
1675
+ - [patch] use new tsconfig for typechecking
1676
+ [09df171](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/09df171)
1674
1677
 
1675
1678
  ## 13.1.1
1676
1679
 
1677
- - [patch] Updated dependencies
1678
- [6e1d642](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6e1d642)
1679
- - @atlaskit/emoji@41.0.0
1680
- - @atlaskit/util-data-test@10.0.9
1680
+ - [patch] Updated dependencies
1681
+ [6e1d642](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6e1d642)
1682
+ - @atlaskit/emoji@41.0.0
1683
+ - @atlaskit/util-data-test@10.0.9
1681
1684
 
1682
1685
  ## 13.1.0
1683
1686
 
1684
- - [minor] FS-2830 add new analytics to @atlaskit/reactions
1685
- [e432c15](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e432c15)
1687
+ - [minor] FS-2830 add new analytics to @atlaskit/reactions
1688
+ [e432c15](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e432c15)
1686
1689
 
1687
1690
  ## 13.0.11
1688
1691
 
1689
- - [patch] FS-2941 Stop using Request object and upgrade fetch-mock
1690
- [dff332a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dff332a)
1692
+ - [patch] FS-2941 Stop using Request object and upgrade fetch-mock
1693
+ [dff332a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dff332a)
1691
1694
 
1692
1695
  ## 13.0.10
1693
1696
 
1694
- - [patch] Change tsconfig of reactions
1695
- [ecca4b6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ecca4b6)
1697
+ - [patch] Change tsconfig of reactions
1698
+ [ecca4b6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ecca4b6)
1696
1699
 
1697
1700
  ## 13.0.9
1698
1701
 
1699
- - [patch] Updated dependencies
1700
- [7545979](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7545979)
1701
- - @atlaskit/emoji@40.0.0
1702
- - @atlaskit/util-data-test@10.0.8
1702
+ - [patch] Updated dependencies
1703
+ [7545979](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7545979)
1704
+ - @atlaskit/emoji@40.0.0
1705
+ - @atlaskit/util-data-test@10.0.8
1703
1706
 
1704
1707
  ## 13.0.8
1705
1708
 
1706
- - [patch] Updated dependencies
1707
- [b12f7e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b12f7e6)
1708
- - @atlaskit/util-data-test@10.0.7
1709
- - @atlaskit/emoji@39.1.1
1709
+ - [patch] Updated dependencies
1710
+ [b12f7e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b12f7e6)
1711
+ - @atlaskit/util-data-test@10.0.7
1712
+ - @atlaskit/emoji@39.1.1
1710
1713
 
1711
1714
  ## 13.0.7
1712
1715
 
1713
- - [patch] Updated dependencies
1714
- [dd91bcf](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dd91bcf)
1715
- - @atlaskit/emoji@39.1.0
1716
+ - [patch] Updated dependencies
1717
+ [dd91bcf](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dd91bcf)
1718
+ - @atlaskit/emoji@39.1.0
1716
1719
 
1717
1720
  ## 13.0.6
1718
1721
 
1719
- - [patch] Updated dependencies
1720
- [df22ad8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/df22ad8)
1721
- - @atlaskit/theme@6.0.0
1722
- - @atlaskit/emoji@39.0.4
1723
- - @atlaskit/tooltip@12.0.9
1724
- - @atlaskit/icon@13.2.5
1725
- - @atlaskit/button@9.0.6
1726
- - @atlaskit/docs@5.0.6
1722
+ - [patch] Updated dependencies
1723
+ [df22ad8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/df22ad8)
1724
+ - @atlaskit/theme@6.0.0
1725
+ - @atlaskit/emoji@39.0.4
1726
+ - @atlaskit/tooltip@12.0.9
1727
+ - @atlaskit/icon@13.2.5
1728
+ - @atlaskit/button@9.0.6
1729
+ - @atlaskit/docs@5.0.6
1727
1730
 
1728
1731
  ## 13.0.5
1729
1732
 
1730
- - [patch] update the dependency of react-dom to 16.4.2 due to vulnerability in previous versions
1731
- read https://reactjs.org/blog/2018/08/01/react-v-16-4-2.html for details
1732
- [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
1733
- - [none] Updated dependencies
1734
- [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
1735
- - @atlaskit/util-data-test@10.0.4
1736
- - @atlaskit/emoji@39.0.1
1737
- - @atlaskit/tooltip@12.0.5
1738
- - @atlaskit/button@9.0.5
1739
- - @atlaskit/theme@5.1.3
1740
- - @atlaskit/layer@5.0.4
1741
- - @atlaskit/icon@13.2.4
1733
+ - [patch] update the dependency of react-dom to 16.4.2 due to vulnerability in previous versions
1734
+ read https://reactjs.org/blog/2018/08/01/react-v-16-4-2.html for details
1735
+ [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
1736
+ - [none] Updated dependencies
1737
+ [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
1738
+ - @atlaskit/util-data-test@10.0.4
1739
+ - @atlaskit/emoji@39.0.1
1740
+ - @atlaskit/tooltip@12.0.5
1741
+ - @atlaskit/button@9.0.5
1742
+ - @atlaskit/theme@5.1.3
1743
+ - @atlaskit/layer@5.0.4
1744
+ - @atlaskit/icon@13.2.4
1742
1745
 
1743
1746
  ## 13.0.4
1744
1747
 
1745
- - [patch] Bumping to latest version of emoji (major bump)
1746
- [a95ee92](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a95ee92)
1747
-
1748
- * [none] Updated dependencies
1749
- [597e0bd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/597e0bd)
1750
- - @atlaskit/util-data-test@10.0.3
1751
- - @atlaskit/emoji@39.0.0
1752
- * [none] Updated dependencies
1753
- [61df453](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/61df453)
1754
- - @atlaskit/util-data-test@10.0.3
1755
- - @atlaskit/emoji@39.0.0
1756
- * [none] Updated dependencies
1757
- [812a39c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/812a39c)
1758
- - @atlaskit/util-data-test@10.0.3
1759
- - @atlaskit/emoji@39.0.0
1760
- * [none] Updated dependencies
1761
- [c8eb097](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c8eb097)
1762
- - @atlaskit/util-data-test@10.0.3
1763
- - @atlaskit/emoji@39.0.0
1764
- * [none] Updated dependencies
1765
- [d02746f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d02746f)
1766
- - @atlaskit/emoji@39.0.0
1767
- - @atlaskit/util-data-test@10.0.3
1748
+ - [patch] Bumping to latest version of emoji (major bump)
1749
+ [a95ee92](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a95ee92)
1750
+
1751
+ * [none] Updated dependencies
1752
+ [597e0bd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/597e0bd)
1753
+ - @atlaskit/util-data-test@10.0.3
1754
+ - @atlaskit/emoji@39.0.0
1755
+ * [none] Updated dependencies
1756
+ [61df453](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/61df453)
1757
+ - @atlaskit/util-data-test@10.0.3
1758
+ - @atlaskit/emoji@39.0.0
1759
+ * [none] Updated dependencies
1760
+ [812a39c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/812a39c)
1761
+ - @atlaskit/util-data-test@10.0.3
1762
+ - @atlaskit/emoji@39.0.0
1763
+ * [none] Updated dependencies
1764
+ [c8eb097](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c8eb097)
1765
+ - @atlaskit/util-data-test@10.0.3
1766
+ - @atlaskit/emoji@39.0.0
1767
+ * [none] Updated dependencies
1768
+ [d02746f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d02746f)
1769
+ - @atlaskit/emoji@39.0.0
1770
+ - @atlaskit/util-data-test@10.0.3
1768
1771
 
1769
1772
  ## 13.0.3
1770
1773
 
1771
- - [patch] Updated dependencies
1772
- [acd86a1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/acd86a1)
1773
- - @atlaskit/util-data-test@10.0.2
1774
- - @atlaskit/emoji@38.0.5
1775
- - @atlaskit/tooltip@12.0.4
1776
- - @atlaskit/icon@13.2.2
1777
- - @atlaskit/button@9.0.4
1778
- - @atlaskit/theme@5.1.2
1779
- - @atlaskit/docs@5.0.2
1780
- - @atlaskit/layer@5.0.3
1774
+ - [patch] Updated dependencies
1775
+ [acd86a1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/acd86a1)
1776
+ - @atlaskit/util-data-test@10.0.2
1777
+ - @atlaskit/emoji@38.0.5
1778
+ - @atlaskit/tooltip@12.0.4
1779
+ - @atlaskit/icon@13.2.2
1780
+ - @atlaskit/button@9.0.4
1781
+ - @atlaskit/theme@5.1.2
1782
+ - @atlaskit/docs@5.0.2
1783
+ - @atlaskit/layer@5.0.3
1781
1784
 
1782
1785
  ## 13.0.2
1783
1786
 
1784
- - [patch] Updated dependencies
1785
- [e6b1985](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e6b1985)
1786
- - @atlaskit/tooltip@12.0.0
1787
- - @atlaskit/emoji@38.0.1
1788
- - @atlaskit/icon@13.1.1
1787
+ - [patch] Updated dependencies
1788
+ [e6b1985](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e6b1985)
1789
+ - @atlaskit/tooltip@12.0.0
1790
+ - @atlaskit/emoji@38.0.1
1791
+ - @atlaskit/icon@13.1.1
1789
1792
 
1790
1793
  ## 13.0.1
1791
1794
 
1792
- - [patch] Ensure reactions wrap if insufficient horizontal space
1793
- [bb7129d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bb7129d)
1795
+ - [patch] Ensure reactions wrap if insufficient horizontal space
1796
+ [bb7129d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bb7129d)
1794
1797
 
1795
1798
  ## 13.0.0
1796
1799
 
1797
- - [major] Updates to React ^16.4.0
1798
- [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
1799
- - [major] Updated dependencies
1800
- [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
1801
- - @atlaskit/tooltip@11.0.0
1802
- - @atlaskit/util-data-test@10.0.0
1803
- - @atlaskit/emoji@38.0.0
1804
- - @atlaskit/button@9.0.0
1805
- - @atlaskit/theme@5.0.0
1806
- - @atlaskit/docs@5.0.0
1807
- - @atlaskit/layer@5.0.0
1808
- - @atlaskit/icon@13.0.0
1809
- - [major] Updated dependencies
1810
- [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
1811
- - @atlaskit/util-data-test@10.0.0
1812
- - @atlaskit/emoji@38.0.0
1813
- - @atlaskit/tooltip@11.0.0
1814
- - @atlaskit/button@9.0.0
1815
- - @atlaskit/theme@5.0.0
1816
- - @atlaskit/docs@5.0.0
1817
- - @atlaskit/layer@5.0.0
1818
- - @atlaskit/icon@13.0.0
1800
+ - [major] Updates to React ^16.4.0
1801
+ [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
1802
+ - [major] Updated dependencies
1803
+ [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
1804
+ - @atlaskit/tooltip@11.0.0
1805
+ - @atlaskit/util-data-test@10.0.0
1806
+ - @atlaskit/emoji@38.0.0
1807
+ - @atlaskit/button@9.0.0
1808
+ - @atlaskit/theme@5.0.0
1809
+ - @atlaskit/docs@5.0.0
1810
+ - @atlaskit/layer@5.0.0
1811
+ - @atlaskit/icon@13.0.0
1812
+ - [major] Updated dependencies
1813
+ [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
1814
+ - @atlaskit/util-data-test@10.0.0
1815
+ - @atlaskit/emoji@38.0.0
1816
+ - @atlaskit/tooltip@11.0.0
1817
+ - @atlaskit/button@9.0.0
1818
+ - @atlaskit/theme@5.0.0
1819
+ - @atlaskit/docs@5.0.0
1820
+ - @atlaskit/layer@5.0.0
1821
+ - @atlaskit/icon@13.0.0
1819
1822
 
1820
1823
  ## 12.2.2
1821
1824
 
1822
- - [patch] Move the tests under src and club the tests under unit, integration and visual
1823
- regression [f1a9069](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f1a9069)
1824
- - [none] Updated dependencies
1825
- [f1a9069](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f1a9069)
1826
- - @atlaskit/util-data-test@9.1.18
1827
- - @atlaskit/emoji@37.0.1
1825
+ - [patch] Move the tests under src and club the tests under unit, integration and visual regression
1826
+ [f1a9069](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f1a9069)
1827
+ - [none] Updated dependencies
1828
+ [f1a9069](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f1a9069)
1829
+ - @atlaskit/util-data-test@9.1.18
1830
+ - @atlaskit/emoji@37.0.1
1828
1831
 
1829
1832
  ## 12.2.1
1830
1833
 
1831
- - [patch] Updated dependencies
1832
- [f897c79](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f897c79)
1833
- - @atlaskit/util-data-test@9.1.17
1834
- - @atlaskit/emoji@37.0.0
1835
- - [none] Updated dependencies
1836
- [cacf096](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cacf096)
1837
- - @atlaskit/emoji@37.0.0
1838
- - @atlaskit/util-data-test@9.1.17
1834
+ - [patch] Updated dependencies
1835
+ [f897c79](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f897c79)
1836
+ - @atlaskit/util-data-test@9.1.17
1837
+ - @atlaskit/emoji@37.0.0
1838
+ - [none] Updated dependencies
1839
+ [cacf096](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cacf096)
1840
+ - @atlaskit/emoji@37.0.0
1841
+ - @atlaskit/util-data-test@9.1.17
1839
1842
 
1840
1843
  ## 12.2.0
1841
1844
 
1842
- - [minor] FS-1907 adding reaction sends itemCreationDate of object to service
1843
- [ddcc42f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ddcc42f)
1845
+ - [minor] FS-1907 adding reaction sends itemCreationDate of object to service
1846
+ [ddcc42f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ddcc42f)
1844
1847
 
1845
1848
  ## 12.1.5
1846
1849
 
1847
- - [patch] Updated dependencies
1848
- [8d5053e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8d5053e)
1849
- - @atlaskit/emoji@36.0.1
1850
- - @atlaskit/util-data-test@9.1.15
1850
+ - [patch] Updated dependencies
1851
+ [8d5053e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8d5053e)
1852
+ - @atlaskit/emoji@36.0.1
1853
+ - @atlaskit/util-data-test@9.1.15
1851
1854
 
1852
1855
  ## 12.1.4
1853
1856
 
1854
- - [patch] Updated dependencies
1855
- [0cf2f52](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0cf2f52)
1856
- - @atlaskit/emoji@36.0.0
1857
- - @atlaskit/util-data-test@9.1.14
1857
+ - [patch] Updated dependencies
1858
+ [0cf2f52](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0cf2f52)
1859
+ - @atlaskit/emoji@36.0.0
1860
+ - @atlaskit/util-data-test@9.1.14
1858
1861
 
1859
1862
  ## 12.1.3
1860
1863
 
1861
- - [patch] Clean Changelogs - remove duplicates and empty entries
1862
- [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
1863
- - [none] Updated dependencies
1864
- [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
1865
- - @atlaskit/emoji@35.1.1
1866
- - @atlaskit/util-data-test@9.1.13
1867
- - @atlaskit/tooltip@10.2.1
1868
- - @atlaskit/button@8.1.2
1869
- - @atlaskit/theme@4.0.4
1870
- - @atlaskit/layer@4.0.3
1871
- - @atlaskit/icon@12.1.2
1864
+ - [patch] Clean Changelogs - remove duplicates and empty entries
1865
+ [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
1866
+ - [none] Updated dependencies
1867
+ [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
1868
+ - @atlaskit/emoji@35.1.1
1869
+ - @atlaskit/util-data-test@9.1.13
1870
+ - @atlaskit/tooltip@10.2.1
1871
+ - @atlaskit/button@8.1.2
1872
+ - @atlaskit/theme@4.0.4
1873
+ - @atlaskit/layer@4.0.3
1874
+ - @atlaskit/icon@12.1.2
1872
1875
 
1873
1876
  ## 12.1.2
1874
1877
 
1875
- - [patch] FS-1993 fix reactions flaky test
1876
- [54c5a7a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/54c5a7a)
1878
+ - [patch] FS-1993 fix reactions flaky test
1879
+ [54c5a7a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/54c5a7a)
1877
1880
 
1878
1881
  ## 12.1.1
1879
1882
 
1880
- - [patch] FS-1889 make reactions resource immutable
1881
- [deba783](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/deba783)
1883
+ - [patch] FS-1889 make reactions resource immutable
1884
+ [deba783](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/deba783)
1882
1885
 
1883
1886
  ## 12.1.0
1884
1887
 
1885
- - [none] Updated dependencies
1886
- [7217164](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7217164)
1887
- - @atlaskit/util-data-test@9.1.11
1888
- - @atlaskit/emoji@35.1.0
1888
+ - [none] Updated dependencies
1889
+ [7217164](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7217164)
1890
+ - @atlaskit/util-data-test@9.1.11
1891
+ - @atlaskit/emoji@35.1.0
1889
1892
 
1890
1893
  ## 12.0.12
1891
1894
 
1892
- - [patch] Updated dependencies
1893
- [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
1894
- - @atlaskit/emoji@35.0.7
1895
- - @atlaskit/util-data-test@9.1.10
1896
- - @atlaskit/tooltip@10.0.0
1897
- - @atlaskit/icon@12.0.0
1898
- - @atlaskit/button@8.0.0
1899
- - @atlaskit/theme@4.0.0
1900
- - @atlaskit/docs@4.0.0
1901
- - @atlaskit/layer@4.0.0
1895
+ - [patch] Updated dependencies
1896
+ [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
1897
+ - @atlaskit/emoji@35.0.7
1898
+ - @atlaskit/util-data-test@9.1.10
1899
+ - @atlaskit/tooltip@10.0.0
1900
+ - @atlaskit/icon@12.0.0
1901
+ - @atlaskit/button@8.0.0
1902
+ - @atlaskit/theme@4.0.0
1903
+ - @atlaskit/docs@4.0.0
1904
+ - @atlaskit/layer@4.0.0
1902
1905
 
1903
1906
  ## 12.0.11
1904
1907
 
1905
- - [patch] Updated dependencies
1906
- [1c87e5a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1c87e5a)
1907
- - @atlaskit/emoji@35.0.6
1908
- - @atlaskit/util-data-test@9.1.9
1908
+ - [patch] Updated dependencies
1909
+ [1c87e5a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1c87e5a)
1910
+ - @atlaskit/emoji@35.0.6
1911
+ - @atlaskit/util-data-test@9.1.9
1909
1912
 
1910
1913
  ## 12.0.10
1911
1914
 
1912
- - [patch][f87724e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f87724e)
1913
- - [none] Updated dependencies
1914
- [f87724e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f87724e)
1915
+ - [patch][f87724e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f87724e)
1916
+ - [none] Updated dependencies
1917
+ [f87724e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f87724e)
1915
1918
 
1916
1919
  ## 12.0.9
1917
1920
 
1918
- - [patch] FS-1959 use @atlaskit/tooltip for reactions tooltip
1919
- [ec12b0e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ec12b0e)
1921
+ - [patch] FS-1959 use @atlaskit/tooltip for reactions tooltip
1922
+ [ec12b0e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ec12b0e)
1920
1923
 
1921
1924
  ## 12.0.8
1922
1925
 
1923
- - [patch] FS-1975 place picker after reactions
1924
- [4a6e1c5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4a6e1c5)
1926
+ - [patch] FS-1975 place picker after reactions
1927
+ [4a6e1c5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4a6e1c5)
1925
1928
 
1926
1929
  ## 12.0.7
1927
1930
 
1928
- - [none] Updated dependencies
1929
- [febc44d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/febc44d)
1930
- - @atlaskit/util-data-test@9.1.4
1931
- - @atlaskit/emoji@35.0.0
1932
- - [none] Updated dependencies
1933
- [714ab32](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/714ab32)
1934
- - @atlaskit/util-data-test@9.1.4
1935
- - @atlaskit/emoji@35.0.0
1936
- - [patch] Updated dependencies
1937
- [84f6f91](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/84f6f91)
1938
- - @atlaskit/emoji@35.0.0
1939
- - @atlaskit/util-data-test@9.1.4
1940
- - [patch] Updated dependencies
1941
- [9041d71](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9041d71)
1942
- - @atlaskit/emoji@35.0.0
1943
- - @atlaskit/util-data-test@9.1.4
1931
+ - [none] Updated dependencies
1932
+ [febc44d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/febc44d)
1933
+ - @atlaskit/util-data-test@9.1.4
1934
+ - @atlaskit/emoji@35.0.0
1935
+ - [none] Updated dependencies
1936
+ [714ab32](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/714ab32)
1937
+ - @atlaskit/util-data-test@9.1.4
1938
+ - @atlaskit/emoji@35.0.0
1939
+ - [patch] Updated dependencies
1940
+ [84f6f91](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/84f6f91)
1941
+ - @atlaskit/emoji@35.0.0
1942
+ - @atlaskit/util-data-test@9.1.4
1943
+ - [patch] Updated dependencies
1944
+ [9041d71](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9041d71)
1945
+ - @atlaskit/emoji@35.0.0
1946
+ - @atlaskit/util-data-test@9.1.4
1944
1947
 
1945
1948
  ## 12.0.6
1946
1949
 
1947
- - [patch] FS-1921 Don't refresh reactions when getting detailed response if requests
1948
- [1764815](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1764815)
1950
+ - [patch] FS-1921 Don't refresh reactions when getting detailed response if requests
1951
+ [1764815](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1764815)
1949
1952
 
1950
1953
  ## 12.0.5
1951
1954
 
1952
- - [none] Updated dependencies
1953
- [8fd4dd1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8fd4dd1)
1954
- - @atlaskit/util-data-test@9.1.3
1955
- - @atlaskit/emoji@34.2.0
1956
- - [none] Updated dependencies
1957
- [74f84c6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/74f84c6)
1958
- - @atlaskit/util-data-test@9.1.3
1959
- - @atlaskit/emoji@34.2.0
1960
- - [none] Updated dependencies
1961
- [92cdf83](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/92cdf83)
1962
- - @atlaskit/util-data-test@9.1.3
1963
- - @atlaskit/emoji@34.2.0
1964
- - [none] Updated dependencies
1965
- [4151cc5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4151cc5)
1966
- - @atlaskit/util-data-test@9.1.3
1967
- - @atlaskit/emoji@34.2.0
1968
- - [patch] Updated dependencies
1969
- [d662caa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d662caa)
1970
- - @atlaskit/emoji@34.2.0
1971
- - @atlaskit/util-data-test@9.1.3
1972
- - @atlaskit/icon@11.3.0
1973
- - @atlaskit/tooltip@9.2.1
1974
- - @atlaskit/button@7.2.5
1975
- - @atlaskit/theme@3.2.2
1976
- - @atlaskit/docs@3.0.4
1977
- - @atlaskit/layer@3.1.1
1978
- - [patch] Updated dependencies
1979
- [89146bf](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/89146bf)
1980
- - @atlaskit/emoji@34.2.0
1981
- - @atlaskit/util-data-test@9.1.3
1955
+ - [none] Updated dependencies
1956
+ [8fd4dd1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8fd4dd1)
1957
+ - @atlaskit/util-data-test@9.1.3
1958
+ - @atlaskit/emoji@34.2.0
1959
+ - [none] Updated dependencies
1960
+ [74f84c6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/74f84c6)
1961
+ - @atlaskit/util-data-test@9.1.3
1962
+ - @atlaskit/emoji@34.2.0
1963
+ - [none] Updated dependencies
1964
+ [92cdf83](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/92cdf83)
1965
+ - @atlaskit/util-data-test@9.1.3
1966
+ - @atlaskit/emoji@34.2.0
1967
+ - [none] Updated dependencies
1968
+ [4151cc5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4151cc5)
1969
+ - @atlaskit/util-data-test@9.1.3
1970
+ - @atlaskit/emoji@34.2.0
1971
+ - [patch] Updated dependencies
1972
+ [d662caa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d662caa)
1973
+ - @atlaskit/emoji@34.2.0
1974
+ - @atlaskit/util-data-test@9.1.3
1975
+ - @atlaskit/icon@11.3.0
1976
+ - @atlaskit/tooltip@9.2.1
1977
+ - @atlaskit/button@7.2.5
1978
+ - @atlaskit/theme@3.2.2
1979
+ - @atlaskit/docs@3.0.4
1980
+ - @atlaskit/layer@3.1.1
1981
+ - [patch] Updated dependencies
1982
+ [89146bf](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/89146bf)
1983
+ - @atlaskit/emoji@34.2.0
1984
+ - @atlaskit/util-data-test@9.1.3
1982
1985
 
1983
1986
  ## 12.0.4
1984
1987
 
1985
- - [patch] FS-1890 Remove sinon dependency from reactions
1986
- [b6ee84e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b6ee84e)
1987
- - [patch] FS-1890 Migrate Reactions to Jest
1988
- [8e0e31e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8e0e31e)
1988
+ - [patch] FS-1890 Remove sinon dependency from reactions
1989
+ [b6ee84e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b6ee84e)
1990
+ - [patch] FS-1890 Migrate Reactions to Jest
1991
+ [8e0e31e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8e0e31e)
1989
1992
 
1990
1993
  ## 12.0.0
1991
1994
 
1992
- - [major] FS-1023 Error handling for reactions
1993
- [2202edc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2202edc)
1994
- - [minor] FS-1023 - Handle error and show tooltip in case of error
1995
- [f9f1040](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f9f1040)
1995
+ - [major] FS-1023 Error handling for reactions
1996
+ [2202edc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2202edc)
1997
+ - [minor] FS-1023 - Handle error and show tooltip in case of error
1998
+ [f9f1040](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f9f1040)
1996
1999
 
1997
2000
  ## 11.0.9
1998
2001
 
1999
- - [patch] FS-1645 update reaction animations
2000
- [c01d36d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c01d36d)
2002
+ - [patch] FS-1645 update reaction animations
2003
+ [c01d36d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c01d36d)
2001
2004
 
2002
2005
  ## 11.0.7
2003
2006
 
2004
- - [patch] FS-1882 update reaction button to match mobile
2005
- [acc8118](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/acc8118)
2007
+ - [patch] FS-1882 update reaction button to match mobile
2008
+ [acc8118](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/acc8118)
2006
2009
 
2007
2010
  ## 11.0.6
2008
2011
 
2009
- - [patch] FS-1876 update default reactions emoji
2010
- [114cee6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/114cee6)
2012
+ - [patch] FS-1876 update default reactions emoji
2013
+ [114cee6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/114cee6)
2011
2014
 
2012
2015
  ## 11.0.4
2013
2016
 
2014
- - [patch] FS-1644 reactions ui changes
2015
- [70ccf94](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/70ccf94)
2017
+ - [patch] FS-1644 reactions ui changes
2018
+ [70ccf94](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/70ccf94)
2016
2019
 
2017
2020
  ## 11.0.3
2018
2021
 
2019
- - [patch] FS-1868 always add new reactions to the end of the list
2020
- [70fdbeb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/70fdbeb)
2022
+ - [patch] FS-1868 always add new reactions to the end of the list
2023
+ [70fdbeb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/70fdbeb)
2021
2024
 
2022
2025
  ## 11.0.1
2023
2026
 
2024
- - [patch] Added missing dependencies and added lint rule to catch them all
2025
- [0672503](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0672503)
2027
+ - [patch] Added missing dependencies and added lint rule to catch them all
2028
+ [0672503](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0672503)
2026
2029
 
2027
2030
  ## 11.0.0
2028
2031
 
2029
- - [major] Bump to React 16.3.
2030
- [4251858](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4251858)
2032
+ - [major] Bump to React 16.3.
2033
+ [4251858](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4251858)
2031
2034
 
2032
2035
  ## 10.8.15
2033
2036
 
2034
- - [patch] Remove import from es6 promise at src level
2035
- [e27f2ac](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e27f2ac)
2037
+ - [patch] Remove import from es6 promise at src level
2038
+ [e27f2ac](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e27f2ac)
2036
2039
 
2037
2040
  ## 10.8.0
2038
2041
 
2039
- - [minor] Moved Reactions to MK2 repo
2040
- [d0cecbf](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d0cecbf)
2042
+ - [minor] Moved Reactions to MK2 repo
2043
+ [d0cecbf](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d0cecbf)
2041
2044
 
2042
2045
  ## 10.7.1 (2017-12-14)
2043
2046
 
2044
- - bug fix; fix TS errors in reactions
2045
- ([21c92b6](https://bitbucket.org/atlassian/atlaskit/commits/21c92b6))
2047
+ - bug fix; fix TS errors in reactions
2048
+ ([21c92b6](https://bitbucket.org/atlassian/atlaskit/commits/21c92b6))
2046
2049
 
2047
2050
  ## 10.7.0 (2017-11-28)
2048
2051
 
2049
- - bug fix; fS-1521 Remove util-data-test
2050
- ([eb88f40](https://bitbucket.org/atlassian/atlaskit/commits/eb88f40))
2051
- - feature; fS-1521 Compatibility with react 16
2052
- ([4bd5c13](https://bitbucket.org/atlassian/atlaskit/commits/4bd5c13))
2053
- - bug fix; fS-1521 Bring back border radius
2054
- ([f73ae4a](https://bitbucket.org/atlassian/atlaskit/commits/f73ae4a))
2055
- - bug fix; aK-3962 Remove react-transition-group from reactions
2056
- ([da2b92d](https://bitbucket.org/atlassian/atlaskit/commits/da2b92d))
2057
- - feature; fS-994 Change reactions tooltips to be the chunky black ADG3 tooltips
2058
- ([b574b07](https://bitbucket.org/atlassian/atlaskit/commits/b574b07))
2059
- - bug fix; fS-1521 Upgrade reaction component's dependencies to latest versions
2060
- ([cae82c6](https://bitbucket.org/atlassian/atlaskit/commits/cae82c6))
2061
- - bug fix; fS-1521 Update emoji dependency
2062
- ([405ab1a](https://bitbucket.org/atlassian/atlaskit/commits/405ab1a))
2052
+ - bug fix; fS-1521 Remove util-data-test
2053
+ ([eb88f40](https://bitbucket.org/atlassian/atlaskit/commits/eb88f40))
2054
+ - feature; fS-1521 Compatibility with react 16
2055
+ ([4bd5c13](https://bitbucket.org/atlassian/atlaskit/commits/4bd5c13))
2056
+ - bug fix; fS-1521 Bring back border radius
2057
+ ([f73ae4a](https://bitbucket.org/atlassian/atlaskit/commits/f73ae4a))
2058
+ - bug fix; aK-3962 Remove react-transition-group from reactions
2059
+ ([da2b92d](https://bitbucket.org/atlassian/atlaskit/commits/da2b92d))
2060
+ - feature; fS-994 Change reactions tooltips to be the chunky black ADG3 tooltips
2061
+ ([b574b07](https://bitbucket.org/atlassian/atlaskit/commits/b574b07))
2062
+ - bug fix; fS-1521 Upgrade reaction component's dependencies to latest versions
2063
+ ([cae82c6](https://bitbucket.org/atlassian/atlaskit/commits/cae82c6))
2064
+ - bug fix; fS-1521 Update emoji dependency
2065
+ ([405ab1a](https://bitbucket.org/atlassian/atlaskit/commits/405ab1a))
2063
2066
 
2064
2067
  ## 10.6.3 (2017-07-25)
2065
2068
 
2066
- - fix; use class transform in loose mode in babel to improve load performance in apps
2067
- ([fde719a](https://bitbucket.org/atlassian/atlaskit/commits/fde719a))
2069
+ - fix; use class transform in loose mode in babel to improve load performance in apps
2070
+ ([fde719a](https://bitbucket.org/atlassian/atlaskit/commits/fde719a))
2068
2071
 
2069
2072
  ## 10.6.2 (2017-06-01)
2070
2073
 
2071
- - fix; fS-1015 Reactions randomly reorder themselves + other bugfixes
2072
- ([f50a254](https://bitbucket.org/atlassian/atlaskit/commits/f50a254))
2074
+ - fix; fS-1015 Reactions randomly reorder themselves + other bugfixes
2075
+ ([f50a254](https://bitbucket.org/atlassian/atlaskit/commits/f50a254))
2073
2076
 
2074
2077
  ## 10.6.1 (2017-05-30)
2075
2078
 
2076
- - fix; fS-957 Make reactions wrap to newline
2077
- ([2ad5cfd](https://bitbucket.org/atlassian/atlaskit/commits/2ad5cfd))
2079
+ - fix; fS-957 Make reactions wrap to newline
2080
+ ([2ad5cfd](https://bitbucket.org/atlassian/atlaskit/commits/2ad5cfd))
2078
2081
 
2079
2082
  ## 10.6.0 (2017-05-26)
2080
2083
 
2081
- - fix; fS-992 Emoji picker is too big for issue detail modal
2082
- ([fb9ca62](https://bitbucket.org/atlassian/atlaskit/commits/fb9ca62))
2083
- - fix; fS-992 Remove popup component
2084
- ([6aa5ee2](https://bitbucket.org/atlassian/atlaskit/commits/6aa5ee2))
2085
- - feature; fS-985 expose analyticService
2086
- ([fbe4f67](https://bitbucket.org/atlassian/atlaskit/commits/fbe4f67))
2084
+ - fix; fS-992 Emoji picker is too big for issue detail modal
2085
+ ([fb9ca62](https://bitbucket.org/atlassian/atlaskit/commits/fb9ca62))
2086
+ - fix; fS-992 Remove popup component
2087
+ ([6aa5ee2](https://bitbucket.org/atlassian/atlaskit/commits/6aa5ee2))
2088
+ - feature; fS-985 expose analyticService
2089
+ ([fbe4f67](https://bitbucket.org/atlassian/atlaskit/commits/fbe4f67))
2087
2090
 
2088
2091
  ## 10.5.1 (2017-05-22)
2089
2092
 
2090
- - fix; fS-963 Bump emoji version and fix css
2091
- ([d168d44](https://bitbucket.org/atlassian/atlaskit/commits/d168d44))
2093
+ - fix; fS-963 Bump emoji version and fix css
2094
+ ([d168d44](https://bitbucket.org/atlassian/atlaskit/commits/d168d44))
2092
2095
 
2093
2096
  ## 10.3.0 (2017-05-19)
2094
2097
 
2095
- - fix; fS-963 Fix css ([f9f634a](https://bitbucket.org/atlassian/atlaskit/commits/f9f634a))
2096
- - fix; fS-963 Fix optimistic add/delete
2097
- ([9ebe60b](https://bitbucket.org/atlassian/atlaskit/commits/9ebe60b))
2098
- - fix; fS-963 Fix PR feedbacks
2099
- ([88199b4](https://bitbucket.org/atlassian/atlaskit/commits/88199b4))
2100
- - fix; fS-963 Fix reactions reappearing after deletion because of detailledreaction call
2101
- ([85776d8](https://bitbucket.org/atlassian/atlaskit/commits/85776d8))
2102
- - fix; fS-963 fix test ([13232c4](https://bitbucket.org/atlassian/atlaskit/commits/13232c4))
2103
- - fix; fS-963 fix test & bump emoji
2104
- ([443d8ff](https://bitbucket.org/atlassian/atlaskit/commits/443d8ff))
2105
- - fix; fS-963 Fix tests ([f10c4c6](https://bitbucket.org/atlassian/atlaskit/commits/f10c4c6))
2106
- - feature; fS-965 Update reactions design
2107
- ([0451638](https://bitbucket.org/atlassian/atlaskit/commits/0451638))
2098
+ - fix; fS-963 Fix css ([f9f634a](https://bitbucket.org/atlassian/atlaskit/commits/f9f634a))
2099
+ - fix; fS-963 Fix optimistic add/delete
2100
+ ([9ebe60b](https://bitbucket.org/atlassian/atlaskit/commits/9ebe60b))
2101
+ - fix; fS-963 Fix PR feedbacks ([88199b4](https://bitbucket.org/atlassian/atlaskit/commits/88199b4))
2102
+ - fix; fS-963 Fix reactions reappearing after deletion because of detailledreaction call
2103
+ ([85776d8](https://bitbucket.org/atlassian/atlaskit/commits/85776d8))
2104
+ - fix; fS-963 fix test ([13232c4](https://bitbucket.org/atlassian/atlaskit/commits/13232c4))
2105
+ - fix; fS-963 fix test & bump emoji
2106
+ ([443d8ff](https://bitbucket.org/atlassian/atlaskit/commits/443d8ff))
2107
+ - fix; fS-963 Fix tests ([f10c4c6](https://bitbucket.org/atlassian/atlaskit/commits/f10c4c6))
2108
+ - feature; fS-965 Update reactions design
2109
+ ([0451638](https://bitbucket.org/atlassian/atlaskit/commits/0451638))
2108
2110
 
2109
2111
  ## 10.2.2 (2017-05-11)
2110
2112
 
2111
- - fix; add containerAri where needed to match service contract
2112
- ([bb2adca](https://bitbucket.org/atlassian/atlaskit/commits/bb2adca))
2113
- - fix; fix typescript error ([81249fb](https://bitbucket.org/atlassian/atlaskit/commits/81249fb))
2113
+ - fix; add containerAri where needed to match service contract
2114
+ ([bb2adca](https://bitbucket.org/atlassian/atlaskit/commits/bb2adca))
2115
+ - fix; fix typescript error ([81249fb](https://bitbucket.org/atlassian/atlaskit/commits/81249fb))
2114
2116
 
2115
2117
  ## 10.2.1 (2017-05-03)
2116
2118
 
2117
- - fix; harden code to run in NodeJS environment.
2118
- ([cc78477](https://bitbucket.org/atlassian/atlaskit/commits/cc78477))
2119
+ - fix; harden code to run in NodeJS environment.
2120
+ ([cc78477](https://bitbucket.org/atlassian/atlaskit/commits/cc78477))
2119
2121
 
2120
2122
  ## 10.2.0 (2017-05-02)
2121
2123
 
2122
- - fix; fixes a bug where long names where not being truncated
2123
- ([e1ec953](https://bitbucket.org/atlassian/atlaskit/commits/e1ec953))
2124
- - feature; adding support to optionally set the text of the trigger-button
2125
- ([6b5dc09](https://bitbucket.org/atlassian/atlaskit/commits/6b5dc09))
2124
+ - fix; fixes a bug where long names where not being truncated
2125
+ ([e1ec953](https://bitbucket.org/atlassian/atlaskit/commits/e1ec953))
2126
+ - feature; adding support to optionally set the text of the trigger-button
2127
+ ([6b5dc09](https://bitbucket.org/atlassian/atlaskit/commits/6b5dc09))
2126
2128
 
2127
2129
  ## 10.1.0 (2017-05-01)
2128
2130
 
2129
- - feature; adding support for detailed reactions
2130
- ([81c6873](https://bitbucket.org/atlassian/atlaskit/commits/81c6873))
2131
- - feature; fS-767 Add analytics to reaction component
2132
- ([1b5208f](https://bitbucket.org/atlassian/atlaskit/commits/1b5208f))
2131
+ - feature; adding support for detailed reactions
2132
+ ([81c6873](https://bitbucket.org/atlassian/atlaskit/commits/81c6873))
2133
+ - feature; fS-767 Add analytics to reaction component
2134
+ ([1b5208f](https://bitbucket.org/atlassian/atlaskit/commits/1b5208f))
2133
2135
 
2134
2136
  ## 10.0.0 (2017-04-28)
2135
2137
 
2136
- - feature; adds the ablity to enable/disable all emojis
2137
- ([ccacd6f](https://bitbucket.org/atlassian/atlaskit/commits/ccacd6f))
2138
- - breaking; By default the reaction picker will only allow a predefined set of emojis.
2138
+ - feature; adds the ablity to enable/disable all emojis
2139
+ ([ccacd6f](https://bitbucket.org/atlassian/atlaskit/commits/ccacd6f))
2140
+ - breaking; By default the reaction picker will only allow a predefined set of emojis.
2139
2141
 
2140
2142
  ## 9.0.2 (2017-04-27)
2141
2143
 
2142
- - fix; update legal copy to be more clear. Not all modules include ADG license.
2143
- ([f3a945e](https://bitbucket.org/atlassian/atlaskit/commits/f3a945e))
2144
+ - fix; update legal copy to be more clear. Not all modules include ADG license.
2145
+ ([f3a945e](https://bitbucket.org/atlassian/atlaskit/commits/f3a945e))
2144
2146
 
2145
2147
  ## 9.0.0 (2017-04-26)
2146
2148
 
2147
- - fix; fixes emoji-size in reactions and using string rather than emojiid
2148
- ([87a6af9](https://bitbucket.org/atlassian/atlaskit/commits/87a6af9))
2149
- - fix; update legal copy and fix broken links for component README on npm. New contribution and
2150
- ([0b3e454](https://bitbucket.org/atlassian/atlaskit/commits/0b3e454))
2151
- - feature; adding containerAri
2152
- ([e88190a](https://bitbucket.org/atlassian/atlaskit/commits/e88190a))
2153
- - breaking; containerAri is now a required prop for ResourcedReactionPicker and
2154
- ResourcedReactions. It's also required as first argument in toggleReaction, addReaction and
2155
- deleteReaction
2149
+ - fix; fixes emoji-size in reactions and using string rather than emojiid
2150
+ ([87a6af9](https://bitbucket.org/atlassian/atlaskit/commits/87a6af9))
2151
+ - fix; update legal copy and fix broken links for component README on npm. New contribution and
2152
+ ([0b3e454](https://bitbucket.org/atlassian/atlaskit/commits/0b3e454))
2153
+ - feature; adding containerAri ([e88190a](https://bitbucket.org/atlassian/atlaskit/commits/e88190a))
2154
+ - breaking; containerAri is now a required prop for ResourcedReactionPicker and ResourcedReactions.
2155
+ It's also required as first argument in toggleReaction, addReaction and deleteReaction
2156
2156
 
2157
2157
  ## 5.0.0 (2017-04-19)
2158
2158
 
2159
- - feature; upgrade to latest emoji component and emoji id spec
2160
- ([ae59982](https://bitbucket.org/atlassian/atlaskit/commits/ae59982))
2161
- - breaking; Emoji representation has changes due to upgrading of emoji component. ISSUES CLOSED:
2162
- FS-887
2159
+ - feature; upgrade to latest emoji component and emoji id spec
2160
+ ([ae59982](https://bitbucket.org/atlassian/atlaskit/commits/ae59982))
2161
+ - breaking; Emoji representation has changes due to upgrading of emoji component. ISSUES CLOSED:
2162
+ FS-887
2163
2163
 
2164
2164
  ## 4.0.1 (2017-03-21)
2165
2165
 
2166
- - fix; maintainers for all the packages were added
2167
- ([261d00a](https://bitbucket.org/atlassian/atlaskit/commits/261d00a))
2166
+ - fix; maintainers for all the packages were added
2167
+ ([261d00a](https://bitbucket.org/atlassian/atlaskit/commits/261d00a))
2168
2168
 
2169
2169
  ## 4.0.0 (2017-03-09)
2170
2170
 
2171
- - feature; bump emoji dependency to ensure getting all needed exports.
2172
- ([62f2487](https://bitbucket.org/atlassian/atlaskit/commits/62f2487))
2173
- - feature; upgrade to latest asynchronous Emoji
2174
- ([78ce481](https://bitbucket.org/atlassian/atlaskit/commits/78ce481))
2175
- - breaking; Latest Emoji upgrade and some events are breaking changes.
2171
+ - feature; bump emoji dependency to ensure getting all needed exports.
2172
+ ([62f2487](https://bitbucket.org/atlassian/atlaskit/commits/62f2487))
2173
+ - feature; upgrade to latest asynchronous Emoji
2174
+ ([78ce481](https://bitbucket.org/atlassian/atlaskit/commits/78ce481))
2175
+ - breaking; Latest Emoji upgrade and some events are breaking changes.
2176
2176
 
2177
2177
  ## 3.0.0 (2017-03-09)
2178
2178
 
2179
- - feature; adding resourced components that takes a ReactionProvivder-promise
2180
- ([b503bd9](https://bitbucket.org/atlassian/atlaskit/commits/b503bd9))
2181
- - breaking; Renamed ReactionsService to ReactionsResource, The Reactions-component now takes a
2182
- "reactionsProvider" instead of "reactionsService"
2179
+ - feature; adding resourced components that takes a ReactionProvivder-promise
2180
+ ([b503bd9](https://bitbucket.org/atlassian/atlaskit/commits/b503bd9))
2181
+ - breaking; Renamed ReactionsService to ReactionsResource, The Reactions-component now takes a
2182
+ "reactionsProvider" instead of "reactionsService"
2183
2183
 
2184
2184
  ## 2.0.1 (2017-02-27)
2185
2185
 
2186
- - empty commit to make components release themselves
2187
- ([5511fbe](https://bitbucket.org/atlassian/atlaskit/commits/5511fbe))
2186
+ - empty commit to make components release themselves
2187
+ ([5511fbe](https://bitbucket.org/atlassian/atlaskit/commits/5511fbe))
2188
2188
 
2189
2189
  ## 1.0.0 (2017-02-17)
2190
2190
 
2191
- - Fix the build and the readme story
2192
- ([1915b49](https://bitbucket.org/atlassian/atlaskit/commits/1915b49))
2193
- - Fix type error in reactions-service
2194
- ([09080e3](https://bitbucket.org/atlassian/atlaskit/commits/09080e3))
2195
- - Trying to fix failing CI ([2fc74cc](https://bitbucket.org/atlassian/atlaskit/commits/2fc74cc))
2196
- - Added autopoll support and logic for ignorning outdated updates
2197
- ([bc7724f](https://bitbucket.org/atlassian/atlaskit/commits/bc7724f))
2198
- - Reactions Picker ([70e015a](https://bitbucket.org/atlassian/atlaskit/commits/70e015a))
2191
+ - Fix the build and the readme story
2192
+ ([1915b49](https://bitbucket.org/atlassian/atlaskit/commits/1915b49))
2193
+ - Fix type error in reactions-service
2194
+ ([09080e3](https://bitbucket.org/atlassian/atlaskit/commits/09080e3))
2195
+ - Trying to fix failing CI ([2fc74cc](https://bitbucket.org/atlassian/atlaskit/commits/2fc74cc))
2196
+ - Added autopoll support and logic for ignorning outdated updates
2197
+ ([bc7724f](https://bitbucket.org/atlassian/atlaskit/commits/bc7724f))
2198
+ - Reactions Picker ([70e015a](https://bitbucket.org/atlassian/atlaskit/commits/70e015a))