@atlaskit/status 1.4.9 → 1.4.11

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 (31) hide show
  1. package/CHANGELOG.md +297 -126
  2. package/afm-cc/tsconfig.json +3 -0
  3. package/afm-jira/tsconfig.json +42 -0
  4. package/dist/cjs/components/Status.js +6 -2
  5. package/dist/cjs/components/StatusPicker.js +9 -5
  6. package/dist/cjs/components/analytics.js +1 -1
  7. package/dist/cjs/components/internal/color-palette.js +12 -7
  8. package/dist/cjs/components/internal/color.js +20 -7
  9. package/dist/es2019/components/Status.js +6 -1
  10. package/dist/es2019/components/StatusPicker.js +9 -3
  11. package/dist/es2019/components/analytics.js +1 -1
  12. package/dist/es2019/components/internal/color-palette.js +16 -12
  13. package/dist/es2019/components/internal/color.js +29 -27
  14. package/dist/esm/components/Status.js +6 -1
  15. package/dist/esm/components/StatusPicker.js +9 -3
  16. package/dist/esm/components/analytics.js +1 -1
  17. package/dist/esm/components/internal/color-palette.js +12 -7
  18. package/dist/esm/components/internal/color.js +21 -8
  19. package/dist/types/components/Status.d.ts +1 -1
  20. package/dist/types/components/StatusPicker.d.ts +2 -2
  21. package/dist/types/components/analytics.d.ts +1 -1
  22. package/dist/types/components/internal/color-palette.d.ts +2 -2
  23. package/dist/types/components/internal/color.d.ts +1 -1
  24. package/dist/types-ts4.5/components/Status.d.ts +1 -1
  25. package/dist/types-ts4.5/components/StatusPicker.d.ts +2 -2
  26. package/dist/types-ts4.5/components/analytics.d.ts +1 -1
  27. package/dist/types-ts4.5/components/internal/color-palette.d.ts +2 -2
  28. package/dist/types-ts4.5/components/internal/color.d.ts +1 -1
  29. package/docs/0-intro.tsx +15 -21
  30. package/package.json +79 -80
  31. package/report.api.md +35 -36
package/CHANGELOG.md CHANGED
@@ -1,28 +1,50 @@
1
1
  # @atlaskit/status
2
2
 
3
+ ## 1.4.11
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 1.4.10
10
+
11
+ ### Patch Changes
12
+
13
+ - [#112164](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/112164)
14
+ [`9483ff476c29c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9483ff476c29c) -
15
+ [ux] Migrated native HTML buttons to Pressable from `@atlaskit/primitives`.
16
+
3
17
  ## 1.4.9
4
18
 
5
19
  ### Patch Changes
6
20
 
7
- - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116) [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) - Upgrade Typescript from `4.9.5` to `5.4.2`
21
+ - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
22
+ [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
23
+ Upgrade Typescript from `4.9.5` to `5.4.2`
8
24
 
9
25
  ## 1.4.8
10
26
 
11
27
  ### Patch Changes
12
28
 
13
- - [#80085](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80085) [`7febfed958dd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7febfed958dd) - Update usage of `React.FC` to explicity include `children`
29
+ - [#80085](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80085)
30
+ [`7febfed958dd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7febfed958dd) -
31
+ Update usage of `React.FC` to explicity include `children`
14
32
 
15
33
  ## 1.4.7
16
34
 
17
35
  ### Patch Changes
18
36
 
19
- - [#70896](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70896) [`af5e296fa0f4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/af5e296fa0f4) - Migrate @atlaskit/status to use declarative entry points.
37
+ - [#70896](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70896)
38
+ [`af5e296fa0f4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/af5e296fa0f4) -
39
+ Migrate @atlaskit/status to use declarative entry points.
20
40
 
21
41
  ## 1.4.6
22
42
 
23
43
  ### Patch Changes
24
44
 
25
- - [#66759](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66759) [`906578f1ea5d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/906578f1ea5d) - [ux] ED-21787: Migrating few CSS entries to space and color tokens
45
+ - [#66759](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66759)
46
+ [`906578f1ea5d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/906578f1ea5d) -
47
+ [ux] ED-21787: Migrating few CSS entries to space and color tokens
26
48
 
27
49
  ## 1.4.5
28
50
 
@@ -40,74 +62,99 @@
40
62
 
41
63
  ### Patch Changes
42
64
 
43
- - [#42325](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42325) [`58f1fd91d09`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58f1fd91d09) - ED-20512 Set Focus on status input field when tab is pressed
65
+ - [#42325](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42325)
66
+ [`58f1fd91d09`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58f1fd91d09) - ED-20512
67
+ Set Focus on status input field when tab is pressed
44
68
 
45
69
  ## 1.4.2
46
70
 
47
71
  ### Patch Changes
48
72
 
49
- - [#40997](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40997) [`02b9339abb1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/02b9339abb1) - add type definition to newColorIndex
73
+ - [#40997](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40997)
74
+ [`02b9339abb1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/02b9339abb1) - add type
75
+ definition to newColorIndex
50
76
 
51
77
  ## 1.4.1
52
78
 
53
79
  ### Patch Changes
54
80
 
55
- - [#40389](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40389) [`beb32df5147`](https://bitbucket.org/atlassian/atlassian-frontend/commits/beb32df5147) - [ECA11Y-45] [ECA11Y-22] Change the tab key handling the status popup to improve accessibility.
81
+ - [#40389](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40389)
82
+ [`beb32df5147`](https://bitbucket.org/atlassian/atlassian-frontend/commits/beb32df5147) -
83
+ [ECA11Y-45] [ECA11Y-22] Change the tab key handling the status popup to improve accessibility.
56
84
 
57
85
  ## 1.4.0
58
86
 
59
87
  ### Minor Changes
60
88
 
61
- - [#40207](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40207) [`11861bb36d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/11861bb36d4) - [ux] [ECA11Y-44] [ECA11Y-22] [ECA11Y-19] Change the focus order in the status popup to improve accessibility.
89
+ - [#40207](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40207)
90
+ [`11861bb36d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/11861bb36d4) - [ux]
91
+ [ECA11Y-44] [ECA11Y-22] [ECA11Y-19] Change the focus order in the status popup to improve
92
+ accessibility.
62
93
 
63
94
  ## 1.3.7
64
95
 
65
96
  ### Patch Changes
66
97
 
67
- - [#39787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39787) [`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) - Internal changes to use space tokens. There is no expected visual or behaviour change.
98
+ - [#39787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39787)
99
+ [`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) - Internal
100
+ changes to use space tokens. There is no expected visual or behaviour change.
68
101
 
69
102
  ## 1.3.6
70
103
 
71
104
  ### Patch Changes
72
105
 
73
- - [#38162](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38162) [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete version.json
106
+ - [#38162](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38162)
107
+ [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete
108
+ version.json
74
109
  - Updated dependencies
75
110
 
76
111
  ## 1.3.5
77
112
 
78
113
  ### Patch Changes
79
114
 
80
- - [#36794](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36794) [`932b50814f6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/932b50814f6) - ED-18001: update android style overrides to vertically align status node
115
+ - [#36794](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36794)
116
+ [`932b50814f6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/932b50814f6) -
117
+ ED-18001: update android style overrides to vertically align status node
81
118
 
82
119
  ## 1.3.4
83
120
 
84
121
  ### Patch Changes
85
122
 
86
- - [#35117](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35117) [`54ce14a4fd3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54ce14a4fd3) - [ED-18129] Duplicate Enzyme mount helper to avoid circular references in Emoji and Status
123
+ - [#35117](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35117)
124
+ [`54ce14a4fd3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54ce14a4fd3) -
125
+ [ED-18129] Duplicate Enzyme mount helper to avoid circular references in Emoji and Status
87
126
 
88
127
  ## 1.3.3
89
128
 
90
129
  ### Patch Changes
91
130
 
92
- - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793) [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
131
+ - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
132
+ [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
133
+ legacy types are published for TS 4.5-4.8
93
134
 
94
135
  ## 1.3.2
95
136
 
96
137
  ### Patch Changes
97
138
 
98
- - [#33771](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33771) [`9369cc38a68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9369cc38a68) - Migrated use of `gridSize` to space tokens where possible. There is no expected visual or behaviour change.
139
+ - [#33771](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33771)
140
+ [`9369cc38a68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9369cc38a68) - Migrated
141
+ use of `gridSize` to space tokens where possible. There is no expected visual or behaviour change.
99
142
 
100
143
  ## 1.3.1
101
144
 
102
145
  ### Patch Changes
103
146
 
104
- - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649) [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
147
+ - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
148
+ [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade
149
+ Typescript from `4.5.5` to `4.9.5`
105
150
 
106
151
  ## 1.3.0
107
152
 
108
153
  ### Minor Changes
109
154
 
110
- - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258) [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
155
+ - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
156
+ [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
157
+ minor dependency bump
111
158
 
112
159
  ### Patch Changes
113
160
 
@@ -117,7 +164,9 @@
117
164
 
118
165
  ### Patch Changes
119
166
 
120
- - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424) [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils
167
+ - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424)
168
+ [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY
169
+ remove before merging to master; dupe adf-schema via adf-utils
121
170
 
122
171
  ## 1.2.10
123
172
 
@@ -135,19 +184,28 @@
135
184
 
136
185
  ### Patch Changes
137
186
 
138
- - [#28932](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28932) [`ac0f098f7f9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac0f098f7f9) - Fixes an oversight in DSP-7701 that causes some rendering issues with lozenges on the Hybrid Renderer on Android
187
+ - [#28932](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28932)
188
+ [`ac0f098f7f9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac0f098f7f9) - Fixes an
189
+ oversight in DSP-7701 that causes some rendering issues with lozenges on the Hybrid Renderer on
190
+ Android
139
191
 
140
192
  ## 1.2.7
141
193
 
142
194
  ### Patch Changes
143
195
 
144
- - [#28981](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28981) [`dde37c411c8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dde37c411c8) - Fixes an oversight in DSP-7701 that causes some rendering issues with lozenges on the Hybrid Renderer on Android
196
+ - [#28981](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28981)
197
+ [`dde37c411c8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dde37c411c8) - Fixes an
198
+ oversight in DSP-7701 that causes some rendering issues with lozenges on the Hybrid Renderer on
199
+ Android
145
200
 
146
201
  ## 1.2.6
147
202
 
148
203
  ### Patch Changes
149
204
 
150
- - [#28324](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28324) [`6455cf006b3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6455cf006b3) - Builds for this package now pass through a tokens babel plugin, removing runtime invocations of the tokens() function and improving performance.
205
+ - [#28324](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28324)
206
+ [`6455cf006b3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6455cf006b3) - Builds
207
+ for this package now pass through a tokens babel plugin, removing runtime invocations of the
208
+ tokens() function and improving performance.
151
209
 
152
210
  ## 1.2.5
153
211
 
@@ -165,13 +223,20 @@
165
223
 
166
224
  ### Patch Changes
167
225
 
168
- - [#26712](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26712) [`a6900fd8727`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a6900fd8727) - DSP-6671 - Separates icon and border color and adds semantic tokens to status color palette. Updated appearances only visible in applications configured to use the new Tokens API (currently in alpha).
226
+ - [#26712](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26712)
227
+ [`a6900fd8727`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a6900fd8727) -
228
+ DSP-6671 - Separates icon and border color and adds semantic tokens to status color palette.
229
+ Updated appearances only visible in applications configured to use the new Tokens API (currently
230
+ in alpha).
169
231
 
170
232
  ## 1.2.2
171
233
 
172
234
  ### Patch Changes
173
235
 
174
- - [#27076](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27076) [`5d2eeac35f7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5d2eeac35f7) - Fixes a browser specific bug that occurred in android chromium that led to the component losing focus unexpectedly when selected for editing.
236
+ - [#27076](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27076)
237
+ [`5d2eeac35f7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5d2eeac35f7) - Fixes a
238
+ browser specific bug that occurred in android chromium that led to the component losing focus
239
+ unexpectedly when selected for editing.
175
240
 
176
241
  ## 1.2.1
177
242
 
@@ -183,7 +248,9 @@
183
248
 
184
249
  ### Minor Changes
185
250
 
186
- - [#25860](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25860) [`b3be5346e02`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b3be5346e02) - Status warning color picker updated to match the color of the underlying lozenge.
251
+ - [#25860](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25860)
252
+ [`b3be5346e02`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b3be5346e02) - Status
253
+ warning color picker updated to match the color of the underlying lozenge.
187
254
 
188
255
  ### Patch Changes
189
256
 
@@ -193,26 +260,35 @@
193
260
 
194
261
  ### Patch Changes
195
262
 
196
- - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874) [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
263
+ - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874)
264
+ [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade
265
+ Typescript from `4.3.5` to `4.5.5`
197
266
 
198
267
  ## 1.1.5
199
268
 
200
269
  ### Patch Changes
201
270
 
202
- - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492) [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
271
+ - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492)
272
+ [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade
273
+ Typescript from `4.2.4` to `4.3.5`.
203
274
 
204
275
  ## 1.1.4
205
276
 
206
277
  ### Patch Changes
207
278
 
208
- - [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381) [`721bc4d7794`](https://bitbucket.org/atlassian/atlassian-frontend/commits/721bc4d7794) - ED-14377 To remove the imports of version.json which is deprecated
209
- - [`b3fedfabde4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b3fedfabde4) - Changing status colors with tab and shfit-tab
279
+ - [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381)
280
+ [`721bc4d7794`](https://bitbucket.org/atlassian/atlassian-frontend/commits/721bc4d7794) - ED-14377
281
+ To remove the imports of version.json which is deprecated
282
+ - [`b3fedfabde4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b3fedfabde4) - Changing
283
+ status colors with tab and shfit-tab
210
284
 
211
285
  ## 1.1.3
212
286
 
213
287
  ### Patch Changes
214
288
 
215
- - [#21570](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21570) [`a4b4e5965d9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a4b4e5965d9) - [ux] Fixes bug when page scrolls after inserting status in the bottom of the page
289
+ - [#21570](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21570)
290
+ [`a4b4e5965d9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a4b4e5965d9) - [ux]
291
+ Fixes bug when page scrolls after inserting status in the bottom of the page
216
292
 
217
293
  ## 1.1.2
218
294
 
@@ -224,46 +300,63 @@
224
300
 
225
301
  ### Patch Changes
226
302
 
227
- - [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650) [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade to TypeScript 4.2.4
303
+ - [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650)
304
+ [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade
305
+ to TypeScript 4.2.4
228
306
 
229
307
  ## 1.1.0
230
308
 
231
309
  ### Minor Changes
232
310
 
233
- - [#20033](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20033) [`af2dcdc462f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/af2dcdc462f) - [ux] Instrumented `@atlaskit/status` with the new theming package, `@atlaskit/tokens`.
311
+ - [#20033](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20033)
312
+ [`af2dcdc462f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/af2dcdc462f) - [ux]
313
+ Instrumented `@atlaskit/status` with the new theming package, `@atlaskit/tokens`.
234
314
 
235
- New tokens will be visible only in applications configured to use the new Tokens API (currently in alpha).
236
- These changes are intended to be interoperable with the legacy theme implementation. Legacy dark mode users should expect no visual or breaking changes.
315
+ New tokens will be visible only in applications configured to use the new Tokens API (currently in
316
+ alpha). These changes are intended to be interoperable with the legacy theme implementation.
317
+ Legacy dark mode users should expect no visual or breaking changes.
237
318
 
238
319
  ### Patch Changes
239
320
 
240
- - [`fb47a6a79ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fb47a6a79ef) - ED-14672 Removed styled-component from status, replaced by emotion.
321
+ - [`fb47a6a79ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fb47a6a79ef) - ED-14672
322
+ Removed styled-component from status, replaced by emotion.
241
323
  - Updated dependencies
242
324
 
243
325
  ## 1.0.2
244
326
 
245
327
  ### Patch Changes
246
328
 
247
- - [#19019](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19019) [`56cf7af34be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56cf7af34be) - AK-832 implementation navigation arrows for status color palette
329
+ - [#19019](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19019)
330
+ [`56cf7af34be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56cf7af34be) - AK-832
331
+ implementation navigation arrows for status color palette
248
332
 
249
333
  ## 1.0.1
250
334
 
251
335
  ### Patch Changes
252
336
 
253
- - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752) [`b5375cd4f66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b5375cd4f66) - AK-316: add aria-label for the status picker input field
254
- - [`85c4e5a71ee`](https://bitbucket.org/atlassian/atlassian-frontend/commits/85c4e5a71ee) - [AK-837] added role prop for Status component
337
+ - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752)
338
+ [`b5375cd4f66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b5375cd4f66) - AK-316:
339
+ add aria-label for the status picker input field
340
+ - [`85c4e5a71ee`](https://bitbucket.org/atlassian/atlassian-frontend/commits/85c4e5a71ee) - [AK-837]
341
+ added role prop for Status component
255
342
 
256
343
  ## 1.0.0
257
344
 
258
345
  ### Major Changes
259
346
 
260
- - [#14810](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14810) [`47f58da5946`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47f58da5946) - ED-13322, ED-13324, ED-13326, ED-13323, ED-13204: Upgrade and support react-intl@^5.18.1 including breaking API changes, types and tests in atlassian-frontend packages
347
+ - [#14810](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14810)
348
+ [`47f58da5946`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47f58da5946) -
349
+ ED-13322, ED-13324, ED-13326, ED-13323, ED-13204: Upgrade and support react-intl@^5.18.1 including
350
+ breaking API changes, types and tests in atlassian-frontend packages
261
351
 
262
- What changed: Upgraded our react-intl support from ^2.6.0 to ^5.18.1. This means editor packages now rely on consumers installing ^5.18.1, otherwise editor usage of react-intl will mismatch with actual installed react-intl APIs.
263
- Why change was made: As part of a coordinated upgrade effort across AF packages, as react-intl v2 is quite dated.
264
- How consumer should update their code: Ensure react-intl ^5.18.1 is installed in consuming applications.
352
+ What changed: Upgraded our react-intl support from ^2.6.0 to ^5.18.1. This means editor packages
353
+ now rely on consumers installing ^5.18.1, otherwise editor usage of react-intl will mismatch with
354
+ actual installed react-intl APIs. Why change was made: As part of a coordinated upgrade effort
355
+ across AF packages, as react-intl v2 is quite dated. How consumer should update their code: Ensure
356
+ react-intl ^5.18.1 is installed in consuming applications.
265
357
 
266
- Upgrade guide: To consume atlassian-frontend packages that use react-intl5 setup a second provider for the new version, using an npm alias
358
+ Upgrade guide: To consume atlassian-frontend packages that use react-intl5 setup a second provider
359
+ for the new version, using an npm alias
267
360
 
268
361
  ```js
269
362
  "react-intl": "^2.6.0",
@@ -275,23 +368,23 @@
275
368
  import { IntlProvider as IntlNextProvider } from 'react-intl-next';
276
369
 
277
370
  return (
278
- <IntlProvider
279
- key={locale}
280
- data-test-language={locale}
281
- locale={locale}
282
- defaultLocale={DEFAULT_LOCALE}
283
- messages={messages}
284
- >
285
- <IntlNextProvider
286
- key={locale}
287
- data-test-language={locale}
288
- locale={locale}
289
- defaultLocale={DEFAULT_LOCALE}
290
- messages={messages}
291
- >
292
- {children}
293
- </IntlNextProvider>
294
- </IntlProvider>
371
+ <IntlProvider
372
+ key={locale}
373
+ data-test-language={locale}
374
+ locale={locale}
375
+ defaultLocale={DEFAULT_LOCALE}
376
+ messages={messages}
377
+ >
378
+ <IntlNextProvider
379
+ key={locale}
380
+ data-test-language={locale}
381
+ locale={locale}
382
+ defaultLocale={DEFAULT_LOCALE}
383
+ messages={messages}
384
+ >
385
+ {children}
386
+ </IntlNextProvider>
387
+ </IntlProvider>
295
388
  );
296
389
  ```
297
390
 
@@ -299,11 +392,14 @@
299
392
 
300
393
  ### Minor Changes
301
394
 
302
- - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998) [`42c7ac64c39`](https://bitbucket.org/atlassian/atlassian-frontend/commits/42c7ac64c39) - AK-654 Set a status link label with input
395
+ - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998)
396
+ [`42c7ac64c39`](https://bitbucket.org/atlassian/atlassian-frontend/commits/42c7ac64c39) - AK-654
397
+ Set a status link label with input
303
398
 
304
399
  ### Patch Changes
305
400
 
306
- - [`140df54164a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/140df54164a) - AK-570 Remove redundant title attribute for Status component
401
+ - [`140df54164a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/140df54164a) - AK-570
402
+ Remove redundant title attribute for Status component
307
403
 
308
404
  ## 0.11.3
309
405
 
@@ -315,7 +411,9 @@
315
411
 
316
412
  ### Patch Changes
317
413
 
318
- - [#13302](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13302) [`3dd496d620b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3dd496d620b) - Remove unneeded css prop from status component.
414
+ - [#13302](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13302)
415
+ [`3dd496d620b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3dd496d620b) - Remove
416
+ unneeded css prop from status component.
319
417
  - Updated dependencies
320
418
 
321
419
  ## 0.11.1
@@ -328,7 +426,9 @@
328
426
 
329
427
  ### Minor Changes
330
428
 
331
- - [#7762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7762) [`7ddbf962bd9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ddbf962bd9) - [ux] Updated and added new translations
429
+ - [#7762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7762)
430
+ [`7ddbf962bd9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ddbf962bd9) - [ux]
431
+ Updated and added new translations
332
432
 
333
433
  ## 0.10.7
334
434
 
@@ -340,21 +440,28 @@
340
440
 
341
441
  ### Patch Changes
342
442
 
343
- - [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857) [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc
443
+ - [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857)
444
+ [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile
445
+ packages using babel rather than tsc
344
446
 
345
447
  ## 0.10.5
346
448
 
347
449
  ### Patch Changes
348
450
 
349
- - [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497) [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option.
350
- This requires version 3.8 of Typescript, read more about how we handle Typescript versions here: https://atlaskit.atlassian.com/get-started
351
- Also add `typescript` to `devDependencies` to denote version that the package was built with.
451
+ - [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497)
452
+ [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export
453
+ types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules
454
+ compiler option. This requires version 3.8 of Typescript, read more about how we handle Typescript
455
+ versions here: https://atlaskit.atlassian.com/get-started Also add `typescript` to
456
+ `devDependencies` to denote version that the package was built with.
352
457
 
353
458
  ## 0.10.4
354
459
 
355
460
  ### Patch Changes
356
461
 
357
- - [#5406](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5406) [`de40912b0a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/de40912b0a) - Fix types not resolving correctly due to an incorrect types path in package.json
462
+ - [#5406](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5406)
463
+ [`de40912b0a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/de40912b0a) - Fix types
464
+ not resolving correctly due to an incorrect types path in package.json
358
465
 
359
466
  ## 0.10.3
360
467
 
@@ -366,23 +473,30 @@
366
473
 
367
474
  ### Patch Changes
368
475
 
369
- - [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885) [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
476
+ - [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885)
477
+ [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded
478
+ to TypeScript 3.9.6 and tslib to 2.0.0
370
479
 
371
- Since tslib is a dependency for all our packages we recommend that products also follow this tslib upgrade
372
- to prevent duplicates of tslib being bundled.
480
+ Since tslib is a dependency for all our packages we recommend that products also follow this tslib
481
+ upgrade to prevent duplicates of tslib being bundled.
373
482
 
374
483
  ## 0.10.1
375
484
 
376
485
  ### Patch Changes
377
486
 
378
- - [#3369](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3369) [`d03bff2147`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d03bff2147) - updated translations
487
+ - [#3369](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3369)
488
+ [`d03bff2147`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d03bff2147) - updated
489
+ translations
379
490
 
380
491
  ## 0.10.0
381
492
 
382
493
  ### Minor Changes
383
494
 
384
- - [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335) [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially dropping IE11 support, from this version onwards there are no warranties of the package working in IE11.
385
- For more information see: https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
495
+ - [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335)
496
+ [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially
497
+ dropping IE11 support, from this version onwards there are no warranties of the package working in
498
+ IE11. For more information see:
499
+ https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
386
500
 
387
501
  ### Patch Changes
388
502
 
@@ -392,24 +506,34 @@
392
506
 
393
507
  ### Patch Changes
394
508
 
395
- - [#2576](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2576) [`fc83c36503`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fc83c36503) - Update translation files via Traduki build
509
+ - [#2576](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2576)
510
+ [`fc83c36503`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fc83c36503) - Update
511
+ translation files via Traduki build
396
512
 
397
513
  ## 0.9.24
398
514
 
399
515
  ### Patch Changes
400
516
 
401
- - [#2137](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2137) [`54d82b49f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54d82b49f0) - Remove unused dependencies
517
+ - [#2137](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2137)
518
+ [`54d82b49f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54d82b49f0) - Remove
519
+ unused dependencies
402
520
 
403
521
  ## 0.9.23
404
522
 
405
523
  ### Patch Changes
406
524
 
407
- - Updated dependencies [4bec09aa74](https://bitbucket.org/atlassian/atlassian-frontend/commits/4bec09aa74):
408
- - Updated dependencies [d63888b5e5](https://bitbucket.org/atlassian/atlassian-frontend/commits/d63888b5e5):
409
- - Updated dependencies [8c9e4f1ec6](https://bitbucket.org/atlassian/atlassian-frontend/commits/8c9e4f1ec6):
410
- - Updated dependencies [bdf25b1c4c](https://bitbucket.org/atlassian/atlassian-frontend/commits/bdf25b1c4c):
411
- - Updated dependencies [645918eda6](https://bitbucket.org/atlassian/atlassian-frontend/commits/645918eda6):
412
- - Updated dependencies [fad8a16962](https://bitbucket.org/atlassian/atlassian-frontend/commits/fad8a16962):
525
+ - Updated dependencies
526
+ [4bec09aa74](https://bitbucket.org/atlassian/atlassian-frontend/commits/4bec09aa74):
527
+ - Updated dependencies
528
+ [d63888b5e5](https://bitbucket.org/atlassian/atlassian-frontend/commits/d63888b5e5):
529
+ - Updated dependencies
530
+ [8c9e4f1ec6](https://bitbucket.org/atlassian/atlassian-frontend/commits/8c9e4f1ec6):
531
+ - Updated dependencies
532
+ [bdf25b1c4c](https://bitbucket.org/atlassian/atlassian-frontend/commits/bdf25b1c4c):
533
+ - Updated dependencies
534
+ [645918eda6](https://bitbucket.org/atlassian/atlassian-frontend/commits/645918eda6):
535
+ - Updated dependencies
536
+ [fad8a16962](https://bitbucket.org/atlassian/atlassian-frontend/commits/fad8a16962):
413
537
  - @atlaskit/editor-test-helpers@11.0.0
414
538
  - @atlaskit/docs@8.5.0
415
539
 
@@ -419,7 +543,8 @@
419
543
 
420
544
  - [patch][6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
421
545
 
422
- Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
546
+ Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
547
+ [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
423
548
 
424
549
  - @atlaskit/docs@8.3.2
425
550
  - @atlaskit/visual-regression@0.1.9
@@ -436,9 +561,12 @@
436
561
 
437
562
  ### Patch Changes
438
563
 
439
- - Updated dependencies [3b19e30129](https://bitbucket.org/atlassian/atlassian-frontend/commits/3b19e30129):
440
- - Updated dependencies [fe4eaf06fc](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe4eaf06fc):
441
- - Updated dependencies [c0102a3ea2](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0102a3ea2):
564
+ - Updated dependencies
565
+ [3b19e30129](https://bitbucket.org/atlassian/atlassian-frontend/commits/3b19e30129):
566
+ - Updated dependencies
567
+ [fe4eaf06fc](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe4eaf06fc):
568
+ - Updated dependencies
569
+ [c0102a3ea2](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0102a3ea2):
442
570
  - @atlaskit/editor-test-helpers@10.5.0
443
571
  - @atlaskit/icon@20.0.0
444
572
  - @atlaskit/docs@8.3.1
@@ -450,7 +578,8 @@
450
578
 
451
579
  - [patch][45cb48558f](https://bitbucket.org/atlassian/atlassian-frontend/commits/45cb48558f):
452
580
 
453
- ED-8246 Fix focus outline on status buttons when tab is used to navigate- Updated dependencies [edc4a4a7ae](https://bitbucket.org/atlassian/atlassian-frontend/commits/edc4a4a7ae):
581
+ ED-8246 Fix focus outline on status buttons when tab is used to navigate- Updated dependencies
582
+ [edc4a4a7ae](https://bitbucket.org/atlassian/atlassian-frontend/commits/edc4a4a7ae):
454
583
 
455
584
  - @atlaskit/editor-test-helpers@10.4.1
456
585
 
@@ -460,13 +589,19 @@
460
589
 
461
590
  - [patch][e0daa78402](https://bitbucket.org/atlassian/atlassian-frontend/commits/e0daa78402):
462
591
 
463
- ED-7928: Pressing enter on tab focus colour sets status- Updated dependencies [28f8f0e089](https://bitbucket.org/atlassian/atlassian-frontend/commits/28f8f0e089):
592
+ ED-7928: Pressing enter on tab focus colour sets status- Updated dependencies
593
+ [28f8f0e089](https://bitbucket.org/atlassian/atlassian-frontend/commits/28f8f0e089):
464
594
 
465
- - Updated dependencies [82747f2922](https://bitbucket.org/atlassian/atlassian-frontend/commits/82747f2922):
466
- - Updated dependencies [46e6693eb3](https://bitbucket.org/atlassian/atlassian-frontend/commits/46e6693eb3):
467
- - Updated dependencies [83300f0b6d](https://bitbucket.org/atlassian/atlassian-frontend/commits/83300f0b6d):
468
- - Updated dependencies [e5dd37f7a4](https://bitbucket.org/atlassian/atlassian-frontend/commits/e5dd37f7a4):
469
- - Updated dependencies [4a223473c5](https://bitbucket.org/atlassian/atlassian-frontend/commits/4a223473c5):
595
+ - Updated dependencies
596
+ [82747f2922](https://bitbucket.org/atlassian/atlassian-frontend/commits/82747f2922):
597
+ - Updated dependencies
598
+ [46e6693eb3](https://bitbucket.org/atlassian/atlassian-frontend/commits/46e6693eb3):
599
+ - Updated dependencies
600
+ [83300f0b6d](https://bitbucket.org/atlassian/atlassian-frontend/commits/83300f0b6d):
601
+ - Updated dependencies
602
+ [e5dd37f7a4](https://bitbucket.org/atlassian/atlassian-frontend/commits/e5dd37f7a4):
603
+ - Updated dependencies
604
+ [4a223473c5](https://bitbucket.org/atlassian/atlassian-frontend/commits/4a223473c5):
470
605
  - @atlaskit/icon@19.1.0
471
606
  - @atlaskit/theme@9.5.0
472
607
  - @atlaskit/editor-test-helpers@10.4.0
@@ -480,11 +615,16 @@
480
615
 
481
616
  ED-8143: Add browser native tooltip to a status node
482
617
 
483
- Now it's possible to read status text when it's truncated because of either being too long or being placed in a small container.- Updated dependencies [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
618
+ Now it's possible to read status text when it's truncated because of either being too long or
619
+ being placed in a small container.- Updated dependencies
620
+ [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
484
621
 
485
- - Updated dependencies [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
486
- - Updated dependencies [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
487
- - Updated dependencies [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
622
+ - Updated dependencies
623
+ [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
624
+ - Updated dependencies
625
+ [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
626
+ - Updated dependencies
627
+ [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
488
628
  - @atlaskit/analytics-next@6.3.3
489
629
  - @atlaskit/textfield@3.1.4
490
630
 
@@ -498,7 +638,8 @@
498
638
 
499
639
  ## 0.9.16
500
640
 
501
- - Updated dependencies [ae4f336a3a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ae4f336a3a):
641
+ - Updated dependencies
642
+ [ae4f336a3a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ae4f336a3a):
502
643
  - @atlaskit/i18n-tools@0.6.0
503
644
  - @atlaskit/editor-test-helpers@10.1.2
504
645
 
@@ -520,7 +661,8 @@
520
661
 
521
662
  ## 0.9.13
522
663
 
523
- - Updated dependencies [80adfefba2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/80adfefba2):
664
+ - Updated dependencies
665
+ [80adfefba2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/80adfefba2):
524
666
  - @atlaskit/editor-test-helpers@10.0.0
525
667
 
526
668
  ## 0.9.12
@@ -537,7 +679,8 @@
537
679
 
538
680
  - [patch][097b696613](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/097b696613):
539
681
 
540
- Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving non-relative imports as relative imports
682
+ Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving
683
+ non-relative imports as relative imports
541
684
 
542
685
  ## 0.9.10
543
686
 
@@ -553,7 +696,8 @@
553
696
 
554
697
  - [patch][926b43142b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/926b43142b):
555
698
 
556
- Analytics-next has been converted to Typescript. Typescript consumers will now get static type safety. Flow types are no longer provided. No behavioural changes.
699
+ Analytics-next has been converted to Typescript. Typescript consumers will now get static type
700
+ safety. Flow types are no longer provided. No behavioural changes.
557
701
 
558
702
  **Breaking changes**
559
703
 
@@ -562,11 +706,16 @@
562
706
 
563
707
  **Breaking changes to TypeScript annotations**
564
708
 
565
- - `withAnalyticsEvents` now infers proptypes automatically, consumers no longer need to provide props as a generic type.
566
- - `withAnalyticsContext` now infers proptypes automatically, consumers no longer need to provide props as a generic type.
567
- - Type `WithAnalyticsEventProps` has been renamed to `WithAnalyticsEventsProps` to match source code
568
- - Type `CreateUIAnalyticsEventSignature` has been renamed to `CreateUIAnalyticsEvent` to match source code
569
- - Type `UIAnalyticsEventHandlerSignature` has been renamed to `UIAnalyticsEventHandler` to match source code
709
+ - `withAnalyticsEvents` now infers proptypes automatically, consumers no longer need to provide
710
+ props as a generic type.
711
+ - `withAnalyticsContext` now infers proptypes automatically, consumers no longer need to provide
712
+ props as a generic type.
713
+ - Type `WithAnalyticsEventProps` has been renamed to `WithAnalyticsEventsProps` to match source
714
+ code
715
+ - Type `CreateUIAnalyticsEventSignature` has been renamed to `CreateUIAnalyticsEvent` to match
716
+ source code
717
+ - Type `UIAnalyticsEventHandlerSignature` has been renamed to `UIAnalyticsEventHandler` to match
718
+ source code
570
719
  - Type `AnalyticsEventsPayload` has been renamed to `AnalyticsEventPayload`
571
720
  - Type `ObjectType` has been removed, please use `Record<string, any>` or `[key: string]: any`
572
721
  - Type `UIAnalyticsEventInterface` has been removed, please use `UIAnalyticsEvent`
@@ -610,8 +759,10 @@
610
759
  - Adding back cjs
611
760
  - Replacing es5 by cjs and es2015 by esm
612
761
  - Creating folders at the root for entry-points
613
- - Removing the generation of the entry-points at the root
614
- Please see this [ticket](https://product-fabric.atlassian.net/browse/BUILDTOOLS-118) or this [page](https://hello.atlassian.net/wiki/spaces/FED/pages/452325500/Finishing+Atlaskit+multiple+entry+points) for further details
762
+ - Removing the generation of the entry-points at the root Please see this
763
+ [ticket](https://product-fabric.atlassian.net/browse/BUILDTOOLS-118) or this
764
+ [page](https://hello.atlassian.net/wiki/spaces/FED/pages/452325500/Finishing+Atlaskit+multiple+entry+points)
765
+ for further details
615
766
 
616
767
  ## 0.9.4
617
768
 
@@ -619,7 +770,9 @@
619
770
 
620
771
  - [patch][d0db01b410](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d0db01b410):
621
772
 
622
- TypeScript users of withAnalyticsEvents and withAnalyticsContext are now required to provide props as a generic type. This is so that TypeScript can correctly calculate the props and defaultProps of the returned component.
773
+ TypeScript users of withAnalyticsEvents and withAnalyticsContext are now required to provide props
774
+ as a generic type. This is so that TypeScript can correctly calculate the props and defaultProps
775
+ of the returned component.
623
776
 
624
777
  Before:
625
778
 
@@ -635,21 +788,24 @@
635
788
 
636
789
  ## 0.9.3
637
790
 
638
- - Updated dependencies [06326ef3f7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/06326ef3f7):
791
+ - Updated dependencies
792
+ [06326ef3f7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/06326ef3f7):
639
793
  - @atlaskit/docs@8.1.3
640
794
  - @atlaskit/editor-test-helpers@9.5.2
641
795
  - @atlaskit/icon@19.0.0
642
796
 
643
797
  ## 0.9.2
644
798
 
645
- - Updated dependencies [cfc3c8adb3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cfc3c8adb3):
799
+ - Updated dependencies
800
+ [cfc3c8adb3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cfc3c8adb3):
646
801
  - @atlaskit/docs@8.1.2
647
802
  - @atlaskit/editor-test-helpers@9.3.9
648
803
  - @atlaskit/icon@18.0.0
649
804
 
650
805
  ## 0.9.1
651
806
 
652
- - Updated dependencies [ed41cac6ac](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ed41cac6ac):
807
+ - Updated dependencies
808
+ [ed41cac6ac](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ed41cac6ac):
653
809
  - @atlaskit/theme@9.0.3
654
810
  - @atlaskit/lozenge@9.0.0
655
811
 
@@ -657,11 +813,13 @@
657
813
 
658
814
  - [minor][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
659
815
 
660
- - Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use this package, please ensure you use at least this version of react and react-dom.
816
+ - Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use
817
+ this package, please ensure you use at least this version of react and react-dom.
661
818
 
662
819
  ## 0.8.3
663
820
 
664
- - Updated dependencies [9c0b4744be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0b4744be):
821
+ - Updated dependencies
822
+ [9c0b4744be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0b4744be):
665
823
  - @atlaskit/docs@7.0.3
666
824
  - @atlaskit/field-text@8.0.3
667
825
  - @atlaskit/icon@16.0.9
@@ -672,7 +830,8 @@
672
830
 
673
831
  - [patch][3f28e6443c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3f28e6443c):
674
832
 
675
- - @atlaskit/analytics-next-types is deprecated. Now you can use types for @atlaskit/analytics-next supplied from itself.
833
+ - @atlaskit/analytics-next-types is deprecated. Now you can use types for @atlaskit/analytics-next
834
+ supplied from itself.
676
835
 
677
836
  ## 0.8.1
678
837
 
@@ -688,7 +847,8 @@
688
847
 
689
848
  ## 0.7.2
690
849
 
691
- - Updated dependencies [b0210d7ccc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b0210d7ccc):
850
+ - Updated dependencies
851
+ [b0210d7ccc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b0210d7ccc):
692
852
  - @atlaskit/elements-test-helpers@0.5.0
693
853
 
694
854
  ## 0.7.1
@@ -711,12 +871,14 @@
711
871
 
712
872
  ## 0.5.2
713
873
 
714
- - Updated dependencies [7261577953](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7261577953):
874
+ - Updated dependencies
875
+ [7261577953](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7261577953):
715
876
  - @atlaskit/elements-test-helpers@0.3.0
716
877
 
717
878
  ## 0.5.1
718
879
 
719
- - Updated dependencies [76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
880
+ - Updated dependencies
881
+ [76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
720
882
  - @atlaskit/icon@16.0.4
721
883
  - @atlaskit/analytics-gas-types@3.2.5
722
884
  - @atlaskit/docs@7.0.0
@@ -751,7 +913,8 @@
751
913
 
752
914
  ## 0.3.6
753
915
 
754
- - Updated dependencies [4af5bd2a58](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4af5bd2a58):
916
+ - Updated dependencies
917
+ [4af5bd2a58](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4af5bd2a58):
755
918
  - @atlaskit/editor-test-helpers@7.0.0
756
919
 
757
920
  ## 0.3.5
@@ -774,7 +937,8 @@
774
937
 
775
938
  ## 0.3.2
776
939
 
777
- - Updated dependencies [d7ef59d432](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d7ef59d432):
940
+ - Updated dependencies
941
+ [d7ef59d432](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d7ef59d432):
778
942
  - @atlaskit/docs@6.0.1
779
943
  - @atlaskit/icon@16.0.0
780
944
 
@@ -802,7 +966,8 @@
802
966
 
803
967
  - [patch][d3f3e19](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d3f3e19):
804
968
 
805
- - restored StatusContainer to editor-core, avoid re-rendering on event handlers, removed unused props in the renderer
969
+ - restored StatusContainer to editor-core, avoid re-rendering on event handlers, removed unused
970
+ props in the renderer
806
971
 
807
972
  - [patch][44cc61d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/44cc61d):
808
973
 
@@ -848,7 +1013,8 @@
848
1013
 
849
1014
  - [patch][d518ce0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d518ce0):
850
1015
 
851
- - FS-3118 - Only focus status input field on initial insertion. FS-3158 - Fix focus flicker in status input field.
1016
+ - FS-3118 - Only focus status input field on initial insertion. FS-3158 - Fix focus flicker in
1017
+ status input field.
852
1018
 
853
1019
  ## 0.2.4
854
1020
 
@@ -864,19 +1030,24 @@
864
1030
 
865
1031
  ## 0.2.2
866
1032
 
867
- - [patch] ED-5529 Fix JSON Schema [d286ab3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d286ab3)
1033
+ - [patch] ED-5529 Fix JSON Schema
1034
+ [d286ab3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d286ab3)
868
1035
 
869
1036
  ## 0.2.1
870
1037
 
871
- - [patch] Updated dependencies [65c6514](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/65c6514)
1038
+ - [patch] Updated dependencies
1039
+ [65c6514](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/65c6514)
872
1040
  - @atlaskit/docs@5.0.8
873
1041
  - @atlaskit/icon@14.0.0
874
1042
 
875
1043
  ## 0.2.0
876
1044
 
877
- - [minor] FS-2963 When inserting a status, I can pick a colour from a predefined colour picker [a633d77](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a633d77)
878
- - [minor] FS-2963 Change status color [547b3d9](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/547b3d9)
1045
+ - [minor] FS-2963 When inserting a status, I can pick a colour from a predefined colour picker
1046
+ [a633d77](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a633d77)
1047
+ - [minor] FS-2963 Change status color
1048
+ [547b3d9](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/547b3d9)
879
1049
 
880
1050
  ## 0.1.0
881
1051
 
882
- - [minor] FS-2961 Introduce status component and status node in editor [7fe2b0a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7fe2b0a)
1052
+ - [minor] FS-2961 Introduce status component and status node in editor
1053
+ [7fe2b0a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7fe2b0a)