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