@atlaskit/empty-state 7.7.2 → 7.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/CHANGELOG.md +271 -104
  2. package/README.md +4 -4
  3. package/dist/cjs/styled/actions-container.js +8 -3
  4. package/dist/cjs/styled/container.js +7 -0
  5. package/dist/cjs/styled/description.js +8 -3
  6. package/dist/cjs/styled/header.js +9 -2
  7. package/dist/cjs/styled/image.js +6 -0
  8. package/dist/cjs/styled/spinner-container.js +6 -1
  9. package/dist/es2019/styled/actions-container.js +7 -3
  10. package/dist/es2019/styled/container.js +6 -0
  11. package/dist/es2019/styled/description.js +7 -3
  12. package/dist/es2019/styled/header.js +8 -2
  13. package/dist/es2019/styled/image.js +5 -0
  14. package/dist/es2019/styled/spinner-container.js +5 -1
  15. package/dist/esm/styled/actions-container.js +7 -3
  16. package/dist/esm/styled/container.js +6 -0
  17. package/dist/esm/styled/description.js +7 -3
  18. package/dist/esm/styled/header.js +8 -2
  19. package/dist/esm/styled/image.js +5 -0
  20. package/dist/esm/styled/spinner-container.js +5 -1
  21. package/dist/types/styled/actions-container.d.ts +4 -1
  22. package/dist/types/styled/container.d.ts +4 -1
  23. package/dist/types/styled/description.d.ts +4 -1
  24. package/dist/types/styled/header.d.ts +4 -1
  25. package/dist/types/styled/image.d.ts +4 -1
  26. package/dist/types/styled/spinner-container.d.ts +4 -1
  27. package/dist/types-ts4.5/styled/actions-container.d.ts +4 -1
  28. package/dist/types-ts4.5/styled/container.d.ts +4 -1
  29. package/dist/types-ts4.5/styled/description.d.ts +4 -1
  30. package/dist/types-ts4.5/styled/header.d.ts +4 -1
  31. package/dist/types-ts4.5/styled/image.d.ts +4 -1
  32. package/dist/types-ts4.5/styled/spinner-container.d.ts +4 -1
  33. package/package.json +82 -83
  34. package/report.api.md +44 -43
package/CHANGELOG.md CHANGED
@@ -1,23 +1,52 @@
1
1
  # @atlaskit/empty-state
2
2
 
3
+ ## 7.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#111878](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/111878)
8
+ [`223959ef57c80`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/223959ef57c80) -
9
+ Explicitly set jsxRuntime to classic via pragma comments in order to avoid issues where jsxRuntime
10
+ is implicitly set to automatic.
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies
15
+
16
+ ## 7.8.0
17
+
18
+ ### Minor Changes
19
+
20
+ - [#91189](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91189)
21
+ [`cd9ca014951a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/cd9ca014951a) -
22
+ Add support for React 18 in non-strict mode.
23
+
3
24
  ## 7.7.2
4
25
 
5
26
  ### Patch Changes
6
27
 
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`
28
+ - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
29
+ [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
30
+ Upgrade Typescript from `4.9.5` to `5.4.2`
8
31
 
9
32
  ## 7.7.1
10
33
 
11
34
  ### Patch Changes
12
35
 
13
- - [#72130](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72130) [`b037e5451037`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b037e5451037) - Update new button text color fallback for default theme (non-token) to match that of old button current text color
36
+ - [#72130](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72130)
37
+ [`b037e5451037`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b037e5451037) -
38
+ Update new button text color fallback for default theme (non-token) to match that of old button
39
+ current text color
14
40
  - Updated dependencies
15
41
 
16
42
  ## 7.7.0
17
43
 
18
44
  ### Minor Changes
19
45
 
20
- - [#70568](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70568) [`f1279b936714`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f1279b936714) - [ux] Button group inside empty-state now have default label and possibility to accept a dynamic one.
46
+ - [#70568](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70568)
47
+ [`f1279b936714`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f1279b936714) -
48
+ [ux] Button group inside empty-state now have default label and possibility to accept a dynamic
49
+ one.
21
50
 
22
51
  ## 7.6.5
23
52
 
@@ -35,43 +64,58 @@
35
64
 
36
65
  ### Patch Changes
37
66
 
38
- - [#38731](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38731) [`9af31f3c1ae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9af31f3c1ae) - Delete version.json
67
+ - [#38731](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38731)
68
+ [`9af31f3c1ae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9af31f3c1ae) - Delete
69
+ version.json
39
70
 
40
71
  ## 7.6.2
41
72
 
42
73
  ### Patch Changes
43
74
 
44
- - [#38361](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38361) [`4f17f1d839e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f17f1d839e) - Added this package into push model consumption
75
+ - [#38361](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38361)
76
+ [`4f17f1d839e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f17f1d839e) - Added
77
+ this package into push model consumption
45
78
 
46
79
  ## 7.6.1
47
80
 
48
81
  ### Patch Changes
49
82
 
50
- - [#36754](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36754) [`4ae083a7e66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ae083a7e66) - Use `@af/accessibility-testing` for default jest-axe config and jest-axe import in accessibility testing.
83
+ - [#36754](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36754)
84
+ [`4ae083a7e66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ae083a7e66) - Use
85
+ `@af/accessibility-testing` for default jest-axe config and jest-axe import in accessibility
86
+ testing.
51
87
 
52
88
  ## 7.6.0
53
89
 
54
90
  ### Minor Changes
55
91
 
56
- - [#35091](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35091) [`56d11ec914b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56d11ec914b) - Add a new prop `headingLevel` to set the heading level in the header element.
92
+ - [#35091](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35091)
93
+ [`56d11ec914b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56d11ec914b) - Add a
94
+ new prop `headingLevel` to set the heading level in the header element.
57
95
 
58
96
  ## 7.5.2
59
97
 
60
98
  ### Patch Changes
61
99
 
62
- - [#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
100
+ - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
101
+ [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
102
+ legacy types are published for TS 4.5-4.8
63
103
 
64
104
  ## 7.5.1
65
105
 
66
106
  ### Patch Changes
67
107
 
68
- - [#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`
108
+ - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
109
+ [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade
110
+ Typescript from `4.5.5` to `4.9.5`
69
111
 
70
112
  ## 7.5.0
71
113
 
72
114
  ### Minor Changes
73
115
 
74
- - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258) [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
116
+ - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
117
+ [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
118
+ minor dependency bump
75
119
 
76
120
  ### Patch Changes
77
121
 
@@ -81,20 +125,26 @@
81
125
 
82
126
  ### Patch Changes
83
127
 
84
- - [#31206](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31206) [`261420360ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/261420360ec) - Upgrades component types to support React 18.
128
+ - [#31206](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31206)
129
+ [`261420360ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/261420360ec) - Upgrades
130
+ component types to support React 18.
85
131
  - Updated dependencies
86
132
 
87
133
  ## 7.4.10
88
134
 
89
135
  ### Patch Changes
90
136
 
91
- - [#31338](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31338) [`74c1b81a476`](https://bitbucket.org/atlassian/atlassian-frontend/commits/74c1b81a476) - Replaces use of `gridSize` with space tokens. There is no expected visual change.
137
+ - [#31338](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31338)
138
+ [`74c1b81a476`](https://bitbucket.org/atlassian/atlassian-frontend/commits/74c1b81a476) - Replaces
139
+ use of `gridSize` with space tokens. There is no expected visual change.
92
140
 
93
141
  ## 7.4.9
94
142
 
95
143
  ### Patch Changes
96
144
 
97
- - [#31237](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31237) [`24f81932945`](https://bitbucket.org/atlassian/atlassian-frontend/commits/24f81932945) - Migrates unit tests from enzyme to RTL. Adds testId to Spinner component.
145
+ - [#31237](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31237)
146
+ [`24f81932945`](https://bitbucket.org/atlassian/atlassian-frontend/commits/24f81932945) - Migrates
147
+ unit tests from enzyme to RTL. Adds testId to Spinner component.
98
148
 
99
149
  ## 7.4.8
100
150
 
@@ -106,7 +156,9 @@
106
156
 
107
157
  ### Patch Changes
108
158
 
109
- - [#29390](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29390) [`18aeca8c199`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18aeca8c199) - Internal change to update token references. There is no expected behaviour or visual change.
159
+ - [#29390](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29390)
160
+ [`18aeca8c199`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18aeca8c199) - Internal
161
+ change to update token references. There is no expected behaviour or visual change.
110
162
 
111
163
  ## 7.4.6
112
164
 
@@ -130,25 +182,33 @@
130
182
 
131
183
  ### Patch Changes
132
184
 
133
- - [#26488](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26488) [`bc989043572`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc989043572) - Internal changes to apply spacing tokens. This should be a no-op change.
185
+ - [#26488](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26488)
186
+ [`bc989043572`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc989043572) - Internal
187
+ changes to apply spacing tokens. This should be a no-op change.
134
188
 
135
189
  ## 7.4.2
136
190
 
137
191
  ### Patch Changes
138
192
 
139
- - [#26408](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26408) [`9de88fa1e1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9de88fa1e1e) - Internal changes to include spacing tokens in component implementations.
193
+ - [#26408](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26408)
194
+ [`9de88fa1e1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9de88fa1e1e) - Internal
195
+ changes to include spacing tokens in component implementations.
140
196
 
141
197
  ## 7.4.1
142
198
 
143
199
  ### Patch Changes
144
200
 
145
- - [#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`
201
+ - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874)
202
+ [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade
203
+ Typescript from `4.3.5` to `4.5.5`
146
204
 
147
205
  ## 7.4.0
148
206
 
149
207
  ### Minor Changes
150
208
 
151
- - [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004) [`645ec6a64a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/645ec6a64a8) - Updates `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
209
+ - [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004)
210
+ [`645ec6a64a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/645ec6a64a8) - Updates
211
+ `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
152
212
 
153
213
  ### Patch Changes
154
214
 
@@ -158,7 +218,9 @@
158
218
 
159
219
  ### Patch Changes
160
220
 
161
- - [#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`.
221
+ - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492)
222
+ [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade
223
+ Typescript from `4.2.4` to `4.3.5`.
162
224
 
163
225
  ## 7.3.11
164
226
 
@@ -170,7 +232,9 @@
170
232
 
171
233
  ### Patch Changes
172
234
 
173
- - [#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
235
+ - [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650)
236
+ [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade
237
+ to TypeScript 4.2.4
174
238
  - Updated dependencies
175
239
 
176
240
  ## 7.3.9
@@ -195,13 +259,17 @@
195
259
 
196
260
  ### Patch Changes
197
261
 
198
- - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752) [`58884c2f6c1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58884c2f6c1) - Internal code change turning on a new linting rule.
262
+ - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752)
263
+ [`58884c2f6c1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58884c2f6c1) - Internal
264
+ code change turning on a new linting rule.
199
265
 
200
266
  ## 7.3.5
201
267
 
202
268
  ### Patch Changes
203
269
 
204
- - [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - Updates usage of deprecated token names so they're aligned with the latest naming conventions. No UI or visual changes
270
+ - [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - Updates
271
+ usage of deprecated token names so they're aligned with the latest naming conventions. No UI or
272
+ visual changes
205
273
  - Updated dependencies
206
274
 
207
275
  ## 7.3.4
@@ -214,14 +282,19 @@
214
282
 
215
283
  ### Patch Changes
216
284
 
217
- - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998) [`f460cc7c411`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f460cc7c411) - Builds for this package now pass through a tokens babel plugin, removing runtime invocations of the tokens() function and improving bundle size.
285
+ - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998)
286
+ [`f460cc7c411`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f460cc7c411) - Builds
287
+ for this package now pass through a tokens babel plugin, removing runtime invocations of the
288
+ tokens() function and improving bundle size.
218
289
  - Updated dependencies
219
290
 
220
291
  ## 7.3.2
221
292
 
222
293
  ### Patch Changes
223
294
 
224
- - [#16188](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16188) [`0397fedf294`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0397fedf294) - Added documentation homepage URL to package.json
295
+ - [#16188](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16188)
296
+ [`0397fedf294`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0397fedf294) - Added
297
+ documentation homepage URL to package.json
225
298
 
226
299
  ## 7.3.1
227
300
 
@@ -233,10 +306,13 @@
233
306
 
234
307
  ### Minor Changes
235
308
 
236
- - [#14319](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14319) [`b5c96b26bf3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b5c96b26bf3) - Instrumented empty-state with the new theming package, `@atlaskit/tokens`.
309
+ - [#14319](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14319)
310
+ [`b5c96b26bf3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b5c96b26bf3) -
311
+ Instrumented empty-state with the new theming package, `@atlaskit/tokens`.
237
312
 
238
- New tokens will be visible only in applications configured to use the new Tokens API (currently in alpha).
239
- These changes are intended to be interoperable with the legacy theme implementation. Legacy dark mode users should expect no visual or breaking changes.
313
+ New tokens will be visible only in applications configured to use the new Tokens API (currently in
314
+ alpha). These changes are intended to be interoperable with the legacy theme implementation.
315
+ Legacy dark mode users should expect no visual or breaking changes.
240
316
 
241
317
  ### Patch Changes
242
318
 
@@ -246,15 +322,20 @@
246
322
 
247
323
  ### Patch Changes
248
324
 
249
- - [#14184](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14184) [`7465c0f0e1d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7465c0f0e1d) - Fix to account for the size/width fallback behaviour. Previously if a user provided a value for the the `width` property it would always be ignored, this is no longer the case.
325
+ - [#14184](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14184)
326
+ [`7465c0f0e1d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7465c0f0e1d) - Fix to
327
+ account for the size/width fallback behaviour. Previously if a user provided a value for the the
328
+ `width` property it would always be ignored, this is no longer the case.
250
329
 
251
330
  ## 7.2.0
252
331
 
253
332
  ### Minor Changes
254
333
 
255
- - [#13864](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13864) [`20ea31c9fdf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/20ea31c9fdf) - **Deprecation Warning**
256
- The `size` prop and `Sizes` type have been flagged as deprecated. Both are better described as a width and so internally have been renamed.
257
- The `size` prop will continue to work in the shortrun before it's formally removed in the component's next major release.
334
+ - [#13864](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13864)
335
+ [`20ea31c9fdf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/20ea31c9fdf) -
336
+ **Deprecation Warning** The `size` prop and `Sizes` type have been flagged as deprecated. Both are
337
+ better described as a width and so internally have been renamed. The `size` prop will continue to
338
+ work in the shortrun before it's formally removed in the component's next major release.
258
339
 
259
340
  Housekeeping:
260
341
 
@@ -270,7 +351,9 @@
270
351
 
271
352
  ### Patch Changes
272
353
 
273
- - [#13302](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13302) [`331c29990c9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/331c29990c9) - Removes `styled-components` as a peer dependency in favour of a direct dependency on `emotion`.
354
+ - [#13302](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13302)
355
+ [`331c29990c9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/331c29990c9) - Removes
356
+ `styled-components` as a peer dependency in favour of a direct dependency on `emotion`.
274
357
  - Updated dependencies
275
358
 
276
359
  ## 7.1.7
@@ -283,21 +366,28 @@
283
366
 
284
367
  ### Patch Changes
285
368
 
286
- - [#12880](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12880) [`378d1cef00f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/378d1cef00f) - Bump `@atlaskit/theme` to version `^11.3.0`.
369
+ - [#12880](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12880)
370
+ [`378d1cef00f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/378d1cef00f) - Bump
371
+ `@atlaskit/theme` to version `^11.3.0`.
287
372
 
288
373
  ## 7.1.5
289
374
 
290
375
  ### Patch Changes
291
376
 
292
- - [#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
377
+ - [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857)
378
+ [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile
379
+ packages using babel rather than tsc
293
380
 
294
381
  ## 7.1.4
295
382
 
296
383
  ### Patch Changes
297
384
 
298
- - [#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.
299
- This requires version 3.8 of Typescript, read more about how we handle Typescript versions here: https://atlaskit.atlassian.com/get-started
300
- Also add `typescript` to `devDependencies` to denote version that the package was built with.
385
+ - [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497)
386
+ [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export
387
+ types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules
388
+ compiler option. This requires version 3.8 of Typescript, read more about how we handle Typescript
389
+ versions here: https://atlaskit.atlassian.com/get-started Also add `typescript` to
390
+ `devDependencies` to denote version that the package was built with.
301
391
 
302
392
  ## 7.1.3
303
393
 
@@ -315,28 +405,37 @@
315
405
 
316
406
  ### Patch Changes
317
407
 
318
- - [#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
408
+ - [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885)
409
+ [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded
410
+ to TypeScript 3.9.6 and tslib to 2.0.0
319
411
 
320
- Since tslib is a dependency for all our packages we recommend that products also follow this tslib upgrade
321
- to prevent duplicates of tslib being bundled.
412
+ Since tslib is a dependency for all our packages we recommend that products also follow this tslib
413
+ upgrade to prevent duplicates of tslib being bundled.
322
414
 
323
415
  ## 7.1.0
324
416
 
325
417
  ### Minor Changes
326
418
 
327
- - [#3428](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3428) [`22aa614abb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/22aa614abb) - Introduce optional renderImage prop which will be displayed if no imageUrl is provided
419
+ - [#3428](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3428)
420
+ [`22aa614abb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/22aa614abb) - Introduce
421
+ optional renderImage prop which will be displayed if no imageUrl is provided
328
422
 
329
423
  ### Patch Changes
330
424
 
331
- - [`3414523d6f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3414523d6f) - Rearange buttons order to align with design guidelines
332
- - [`db053b24d8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db053b24d8) - Update all the theme imports to be tree-shakable
425
+ - [`3414523d6f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3414523d6f) - Rearange
426
+ buttons order to align with design guidelines
427
+ - [`db053b24d8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db053b24d8) - Update all
428
+ the theme imports to be tree-shakable
333
429
 
334
430
  ## 7.0.0
335
431
 
336
432
  ### Major Changes
337
433
 
338
- - [#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.
339
- For more information see: https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
434
+ - [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335)
435
+ [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially
436
+ dropping IE11 support, from this version onwards there are no warranties of the package working in
437
+ IE11. For more information see:
438
+ https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
340
439
 
341
440
  ### Patch Changes
342
441
 
@@ -352,7 +451,9 @@
352
451
 
353
452
  ### Patch Changes
354
453
 
355
- - [#2866](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2866) [`54a9514fcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54a9514fcf) - Build and supporting files will no longer be published to npm
454
+ - [#2866](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2866)
455
+ [`54a9514fcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54a9514fcf) - Build and
456
+ supporting files will no longer be published to npm
356
457
 
357
458
  ## 6.0.10
358
459
 
@@ -366,9 +467,11 @@
366
467
 
367
468
  - [patch][f4374a322a](https://bitbucket.org/atlassian/atlassian-frontend/commits/f4374a322a):
368
469
 
369
- Change imports to comply with Atlassian conventions- Updated dependencies [6b8e60827e](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b8e60827e):
470
+ Change imports to comply with Atlassian conventions- Updated dependencies
471
+ [6b8e60827e](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b8e60827e):
370
472
 
371
- - Updated dependencies [57c0487a02](https://bitbucket.org/atlassian/atlassian-frontend/commits/57c0487a02):
473
+ - Updated dependencies
474
+ [57c0487a02](https://bitbucket.org/atlassian/atlassian-frontend/commits/57c0487a02):
372
475
  - @atlaskit/button@13.3.11
373
476
 
374
477
  ## 6.0.8
@@ -377,9 +480,11 @@
377
480
 
378
481
  - [patch][c5182f1c53](https://bitbucket.org/atlassian/atlassian-frontend/commits/c5182f1c53):
379
482
 
380
- Widens the accepted Types for description to include any react node- Updated dependencies [dae900bf82](https://bitbucket.org/atlassian/atlassian-frontend/commits/dae900bf82):
483
+ Widens the accepted Types for description to include any react node- Updated dependencies
484
+ [dae900bf82](https://bitbucket.org/atlassian/atlassian-frontend/commits/dae900bf82):
381
485
 
382
- - Updated dependencies [8c9e4f1ec6](https://bitbucket.org/atlassian/atlassian-frontend/commits/8c9e4f1ec6):
486
+ - Updated dependencies
487
+ [8c9e4f1ec6](https://bitbucket.org/atlassian/atlassian-frontend/commits/8c9e4f1ec6):
383
488
  - @atlaskit/build-utils@2.6.4
384
489
  - @atlaskit/docs@8.5.0
385
490
 
@@ -389,7 +494,8 @@
389
494
 
390
495
  - [patch][6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
391
496
 
392
- Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
497
+ Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
498
+ [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
393
499
 
394
500
  - @atlaskit/docs@8.3.2
395
501
  - @atlaskit/visual-regression@0.1.9
@@ -403,9 +509,11 @@
403
509
 
404
510
  - [patch][6c9c2d5487](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6c9c2d5487):
405
511
 
406
- Fixes empty state image not having appropriate accessibility attributes.- Updated dependencies [3c0f6feee5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3c0f6feee5):
512
+ Fixes empty state image not having appropriate accessibility attributes.- Updated dependencies
513
+ [3c0f6feee5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3c0f6feee5):
407
514
 
408
- - Updated dependencies [f9c291923c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f9c291923c):
515
+ - Updated dependencies
516
+ [f9c291923c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f9c291923c):
409
517
  - @atlaskit/theme@9.3.0
410
518
 
411
519
  ## 6.0.5
@@ -422,7 +530,8 @@
422
530
 
423
531
  - [patch][097b696613](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/097b696613):
424
532
 
425
- Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving non-relative imports as relative imports
533
+ Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving
534
+ non-relative imports as relative imports
426
535
 
427
536
  ## 6.0.3
428
537
 
@@ -454,7 +563,8 @@
454
563
 
455
564
  - [major][433311c16a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/433311c16a):
456
565
 
457
- @atlaskit/empty-state has been converted to Typescript. Typescript consumers will now get static type safety. Flow types are no longer provided. No API or behavioural changes.
566
+ @atlaskit/empty-state has been converted to Typescript. Typescript consumers will now get static
567
+ type safety. Flow types are no longer provided. No API or behavioural changes.
458
568
 
459
569
  ## 5.0.3
460
570
 
@@ -468,11 +578,13 @@
468
578
 
469
579
  - [patch][b0ef06c685](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b0ef06c685):
470
580
 
471
- - This is just a safety release in case anything strange happened in in the previous one. See Pull Request #5942 for details
581
+ - This is just a safety release in case anything strange happened in in the previous one. See Pull
582
+ Request #5942 for details
472
583
 
473
584
  ## 5.0.1
474
585
 
475
- - Updated dependencies [215688984e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/215688984e):
586
+ - Updated dependencies
587
+ [215688984e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/215688984e):
476
588
  - @atlaskit/button@13.0.4
477
589
  - @atlaskit/spinner@12.0.0
478
590
 
@@ -480,11 +592,13 @@
480
592
 
481
593
  - [major][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
482
594
 
483
- - 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.
595
+ - Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use
596
+ this package, please ensure you use at least this version of react and react-dom.
484
597
 
485
598
  ## 4.0.4
486
599
 
487
- - Updated dependencies [9c0b4744be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0b4744be):
600
+ - Updated dependencies
601
+ [9c0b4744be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0b4744be):
488
602
  - @atlaskit/docs@7.0.3
489
603
  - @atlaskit/button@12.0.3
490
604
  - @atlaskit/spinner@10.0.7
@@ -492,7 +606,8 @@
492
606
 
493
607
  ## 4.0.3
494
608
 
495
- - Updated dependencies [1e826b2966](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e826b2966):
609
+ - Updated dependencies
610
+ [1e826b2966](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e826b2966):
496
611
  - @atlaskit/docs@7.0.2
497
612
  - @atlaskit/spinner@10.0.5
498
613
  - @atlaskit/theme@8.1.6
@@ -506,7 +621,8 @@
506
621
 
507
622
  ## 4.0.1
508
623
 
509
- - Updated dependencies [9d5cc39394](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d5cc39394):
624
+ - Updated dependencies
625
+ [9d5cc39394](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d5cc39394):
510
626
  - @atlaskit/docs@7.0.1
511
627
  - @atlaskit/spinner@10.0.1
512
628
  - @atlaskit/theme@8.0.1
@@ -520,8 +636,9 @@
520
636
 
521
637
  ### Dropping CJS support in all @atlaskit packages
522
638
 
523
- As a breaking change, all @atlaskit packages will be dropping cjs distributions and will only distribute esm. This means all distributed code will be transpiled, but will still contain `import` and
524
- `export` declarations.
639
+ As a breaking change, all @atlaskit packages will be dropping cjs distributions and will only
640
+ distribute esm. This means all distributed code will be transpiled, but will still contain
641
+ `import` and `export` declarations.
525
642
 
526
643
  The major reason for doing this is to allow us to support multiple entry points in packages, e.g:
527
644
 
@@ -535,15 +652,26 @@
535
652
  import colors from `@atlaskit/theme/dist/esm/colors`;
536
653
  ```
537
654
 
538
- This has a couple of issues. 1, it treats the file system as API making internal refactors harder, we have to worry about how consumers might be using things that aren't _actually_ supposed to be used. 2. We are unable to do this _internally_ in @atlaskit packages. This leads to lots of packages bundling all of theme, just to use a single color, especially in situations where tree shaking fails.
655
+ This has a couple of issues. 1, it treats the file system as API making internal refactors harder,
656
+ we have to worry about how consumers might be using things that aren't _actually_ supposed to be
657
+ used. 2. We are unable to do this _internally_ in @atlaskit packages. This leads to lots of
658
+ packages bundling all of theme, just to use a single color, especially in situations where tree
659
+ shaking fails.
539
660
 
540
- To support being able to use multiple entrypoints internally, we unfortunately cannot have multiple distributions as they would need to have very different imports from of their own internal dependencies.
661
+ To support being able to use multiple entrypoints internally, we unfortunately cannot have
662
+ multiple distributions as they would need to have very different imports from of their own
663
+ internal dependencies.
541
664
 
542
- ES Modules are widely supported by all modern bundlers and can be worked around in node environments.
665
+ ES Modules are widely supported by all modern bundlers and can be worked around in node
666
+ environments.
543
667
 
544
- We may choose to revisit this solution in the future if we find any unintended condequences, but we see this as a pretty sane path forward which should lead to some major bundle size decreases, saner API's and simpler package architecture.
668
+ We may choose to revisit this solution in the future if we find any unintended condequences, but
669
+ we see this as a pretty sane path forward which should lead to some major bundle size decreases,
670
+ saner API's and simpler package architecture.
545
671
 
546
- Please reach out to #fabric-build (if in Atlassian) or create an issue in [Design System Support](https://ecosystem.atlassian.net/secure/CreateIssue.jspa?pid=24670) (for external) if you have any questions or queries about this.
672
+ Please reach out to #fabric-build (if in Atlassian) or create an issue in
673
+ [Design System Support](https://ecosystem.atlassian.net/secure/CreateIssue.jspa?pid=24670) (for
674
+ external) if you have any questions or queries about this.
547
675
 
548
676
  ## 3.1.4
549
677
 
@@ -571,27 +699,35 @@
571
699
 
572
700
  ## 3.1.1
573
701
 
574
- - [patch] Adds missing implicit @babel/runtime dependency [b71751b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b71751b)
702
+ - [patch] Adds missing implicit @babel/runtime dependency
703
+ [b71751b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b71751b)
575
704
 
576
705
  ## 3.1.0
577
706
 
578
- - [minor] Adds new imageWidth and imageHeight props, useful for fixing the image dimensions while it's loading so the page doesn't bounce around. Changes the root element to use max-width instead of width so it shrinks down in smaller containers. [3209be4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3209be4)
707
+ - [minor] Adds new imageWidth and imageHeight props, useful for fixing the image dimensions while
708
+ it's loading so the page doesn't bounce around. Changes the root element to use max-width instead
709
+ of width so it shrinks down in smaller containers.
710
+ [3209be4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3209be4)
579
711
 
580
712
  ## 3.0.9
581
713
 
582
- - [patch] Pulling the shared styles from @atlaskit/theme and removed dependency on util-shraed-styles [7d51a09](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7d51a09)
714
+ - [patch] Pulling the shared styles from @atlaskit/theme and removed dependency on
715
+ util-shraed-styles [7d51a09](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7d51a09)
583
716
 
584
717
  ## 3.0.8
585
718
 
586
- - [patch] Moved the atlaskit button, spinner, theme and util-shared-styles to dependencies from peer dependdency [a2d1132](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a2d1132)
719
+ - [patch] Moved the atlaskit button, spinner, theme and util-shared-styles to dependencies from peer
720
+ dependdency [a2d1132](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a2d1132)
587
721
 
588
722
  ## 3.0.7
589
723
 
590
- - [patch] Adds sideEffects: false to allow proper tree shaking [b5d6d04](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b5d6d04)
724
+ - [patch] Adds sideEffects: false to allow proper tree shaking
725
+ [b5d6d04](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b5d6d04)
591
726
 
592
727
  ## 3.0.5
593
728
 
594
- - [patch] Updated dependencies [df22ad8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/df22ad8)
729
+ - [patch] Updated dependencies
730
+ [df22ad8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/df22ad8)
595
731
  - @atlaskit/theme@6.0.0
596
732
  - @atlaskit/spinner@9.0.6
597
733
  - @atlaskit/button@9.0.6
@@ -599,15 +735,19 @@
599
735
 
600
736
  ## 3.0.4
601
737
 
602
- - [patch] update the dependency of react-dom to 16.4.2 due to vulnerability in previous versions read https://reactjs.org/blog/2018/08/01/react-v-16-4-2.html for details [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
603
- - [none] Updated dependencies [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
738
+ - [patch] update the dependency of react-dom to 16.4.2 due to vulnerability in previous versions
739
+ read https://reactjs.org/blog/2018/08/01/react-v-16-4-2.html for details
740
+ [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
741
+ - [none] Updated dependencies
742
+ [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
604
743
  - @atlaskit/button@9.0.5
605
744
  - @atlaskit/theme@5.1.3
606
745
  - @atlaskit/spinner@9.0.5
607
746
 
608
747
  ## 3.0.3
609
748
 
610
- - [patch] Updated dependencies [acd86a1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/acd86a1)
749
+ - [patch] Updated dependencies
750
+ [acd86a1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/acd86a1)
611
751
  - @atlaskit/button@9.0.4
612
752
  - @atlaskit/theme@5.1.2
613
753
  - @atlaskit/spinner@9.0.4
@@ -615,29 +755,36 @@
615
755
 
616
756
  ## 3.0.2
617
757
 
618
- - [patch] Add a SSR test for every package, add react-dom and build-utils in devDependencies [7e331b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e331b5)
619
- - [none] Updated dependencies [7e331b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e331b5)
758
+ - [patch] Add a SSR test for every package, add react-dom and build-utils in devDependencies
759
+ [7e331b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e331b5)
760
+ - [none] Updated dependencies
761
+ [7e331b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e331b5)
620
762
  - @atlaskit/button@9.0.3
621
763
  - @atlaskit/theme@5.1.1
622
764
  - @atlaskit/spinner@9.0.3
623
765
 
624
766
  ## 3.0.1
625
767
 
626
- - [patch] Move analytics tests and replace elements to core [49d4ab4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/49d4ab4)
627
- - [none] Updated dependencies [49d4ab4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/49d4ab4)
768
+ - [patch] Move analytics tests and replace elements to core
769
+ [49d4ab4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/49d4ab4)
770
+ - [none] Updated dependencies
771
+ [49d4ab4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/49d4ab4)
628
772
  - @atlaskit/button@9.0.2
629
773
  - @atlaskit/spinner@9.0.2
630
774
  - @atlaskit/docs@5.0.1
631
775
 
632
776
  ## 3.0.0
633
777
 
634
- - [major] Updates to React ^16.4.0 [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
635
- - [major] Updated dependencies [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
778
+ - [major] Updates to React ^16.4.0
779
+ [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
780
+ - [major] Updated dependencies
781
+ [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
636
782
  - @atlaskit/button@9.0.0
637
783
  - @atlaskit/theme@5.0.0
638
784
  - @atlaskit/spinner@9.0.0
639
785
  - @atlaskit/docs@5.0.0
640
- - [major] Updated dependencies [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
786
+ - [major] Updated dependencies
787
+ [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
641
788
  - @atlaskit/button@9.0.0
642
789
  - @atlaskit/theme@5.0.0
643
790
  - @atlaskit/spinner@9.0.0
@@ -645,22 +792,27 @@
645
792
 
646
793
  ## 2.1.3
647
794
 
648
- - [patch] Updated dependencies [cdba8b3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cdba8b3)
795
+ - [patch] Updated dependencies
796
+ [cdba8b3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cdba8b3)
649
797
  - @atlaskit/spinner@8.0.0
650
798
  - @atlaskit/button@8.2.3
651
799
 
652
800
  ## 2.1.2
653
801
 
654
- - [patch] Clean Changelogs - remove duplicates and empty entries [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
655
- - [none] Updated dependencies [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
802
+ - [patch] Clean Changelogs - remove duplicates and empty entries
803
+ [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
804
+ - [none] Updated dependencies
805
+ [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
656
806
  - @atlaskit/button@8.1.2
657
807
  - @atlaskit/theme@4.0.4
658
808
  - @atlaskit/spinner@7.0.2
659
809
 
660
810
  ## 2.1.1
661
811
 
662
- - [patch] Update changelogs to remove duplicate [cc58e17](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc58e17)
663
- - [none] Updated dependencies [cc58e17](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc58e17)
812
+ - [patch] Update changelogs to remove duplicate
813
+ [cc58e17](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc58e17)
814
+ - [none] Updated dependencies
815
+ [cc58e17](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc58e17)
664
816
  - @atlaskit/theme@4.0.3
665
817
  - @atlaskit/spinner@7.0.1
666
818
  - @atlaskit/button@8.1.1
@@ -668,7 +820,8 @@
668
820
 
669
821
  ## 2.1.0
670
822
 
671
- - [patch] Updated dependencies [9d20f54](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d20f54)
823
+ - [patch] Updated dependencies
824
+ [9d20f54](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d20f54)
672
825
  - @atlaskit/spinner@7.0.0
673
826
  - @atlaskit/docs@4.1.0
674
827
  - @atlaskit/theme@4.0.2
@@ -677,7 +830,8 @@
677
830
  ## 2.0.1
678
831
 
679
832
  - [patch] Update readme's [223cd67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/223cd67)
680
- - [patch] Updated dependencies [223cd67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/223cd67)
833
+ - [patch] Updated dependencies
834
+ [223cd67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/223cd67)
681
835
  - @atlaskit/button@8.0.1
682
836
  - @atlaskit/theme@4.0.1
683
837
  - @atlaskit/spinner@6.0.1
@@ -685,8 +839,10 @@
685
839
 
686
840
  ## 2.0.0
687
841
 
688
- - [major] makes styled-components a peer dependency and upgrades version range from 1.4.6 - 3 to ^3.2.6 [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
689
- - [patch] Updated dependencies [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
842
+ - [major] makes styled-components a peer dependency and upgrades version range from 1.4.6 - 3 to
843
+ ^3.2.6 [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
844
+ - [patch] Updated dependencies
845
+ [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
690
846
  - @atlaskit/button@8.0.0
691
847
  - @atlaskit/theme@4.0.0
692
848
  - @atlaskit/spinner@6.0.0
@@ -694,7 +850,8 @@
694
850
 
695
851
  ## 1.1.2
696
852
 
697
- - [patch] Updated dependencies [d662caa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d662caa)
853
+ - [patch] Updated dependencies
854
+ [d662caa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d662caa)
698
855
  - @atlaskit/button@7.2.5
699
856
  - @atlaskit/theme@3.2.2
700
857
  - @atlaskit/spinner@5.0.2
@@ -702,35 +859,45 @@
702
859
 
703
860
  ## 1.1.0
704
861
 
705
- - [patch] Remove null as we allowed void values [7ab743b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7ab743b)
706
- - [patch] Update empty state and button to have consistent types [f0da143](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f0da143)
707
- - [minor] Update Empty state to use ButtonGroup from @atlaskit/button [e4a8dcf](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e4a8dcf)
862
+ - [patch] Remove null as we allowed void values
863
+ [7ab743b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7ab743b)
864
+ - [patch] Update empty state and button to have consistent types
865
+ [f0da143](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f0da143)
866
+ - [minor] Update Empty state to use ButtonGroup from @atlaskit/button
867
+ [e4a8dcf](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e4a8dcf)
708
868
 
709
869
  ## 1.0.0
710
870
 
711
- - [major] Bump to React 16.3. [4251858](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4251858)
871
+ - [major] Bump to React 16.3.
872
+ [4251858](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4251858)
712
873
 
713
874
  ## 0.3.0
714
875
 
715
- - [minor] Update styled-components dependency to support versions 1.4.6 - 3 [ceccf30](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ceccf30)
876
+ - [minor] Update styled-components dependency to support versions 1.4.6 - 3
877
+ [ceccf30](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ceccf30)
716
878
 
717
879
  ## 0.2.2
718
880
 
719
- - [patch] updated the repository url to https://bitbucket.org/atlassian/atlaskit-mk-2 [1e57e5a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e57e5a)
881
+ - [patch] updated the repository url to https://bitbucket.org/atlassian/atlaskit-mk-2
882
+ [1e57e5a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e57e5a)
720
883
 
721
884
  ## 0.2.1
722
885
 
723
- - [patch] Packages Flow types for elements components [3111e74](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3111e74)
886
+ - [patch] Packages Flow types for elements components
887
+ [3111e74](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3111e74)
724
888
 
725
889
  ## 0.2.0
726
890
 
727
- - [minor] Add React 16 support. [12ea6e4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/12ea6e4)
891
+ - [minor] Add React 16 support.
892
+ [12ea6e4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/12ea6e4)
728
893
 
729
894
  ## 0.1.3
730
895
 
731
- - [patch] Color of the description changed to N800 [ebf65be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ebf65be)
896
+ - [patch] Color of the description changed to N800
897
+ [ebf65be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ebf65be)
732
898
 
733
899
  ## 0.1.0
734
900
 
735
- - [patch] Updates dependency on docs/ to ^1.0.1 [36c7ef8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/36c7ef8)
901
+ - [patch] Updates dependency on docs/ to ^1.0.1
902
+ [36c7ef8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/36c7ef8)
736
903
  - [minor] Initial release [afbb1e5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/afbb1e5)