@atlaskit/checkbox 13.3.0 → 13.5.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 (37) hide show
  1. package/CHANGELOG.md +873 -858
  2. package/README.md +2 -1
  3. package/__perf__/checkbox.tsx +54 -72
  4. package/__perf__/default.tsx +7 -7
  5. package/codemods/12.0.0-lite-mode.tsx +12 -16
  6. package/codemods/__tests__/12.0.0-lite-mode.tsx +105 -105
  7. package/codemods/migrations/remove-imports.tsx +3 -3
  8. package/codemods/migrations/remove-props.tsx +9 -13
  9. package/codemods/migrations/rename-import.tsx +10 -10
  10. package/codemods/migrations/rename-input-ref-to-ref.tsx +4 -4
  11. package/codemods/utils.tsx +362 -401
  12. package/dist/cjs/checkbox.js +27 -2
  13. package/dist/cjs/internal/checkbox-icon.js +2 -0
  14. package/dist/cjs/internal/label-text.js +4 -0
  15. package/dist/cjs/internal/label.js +10 -1
  16. package/dist/cjs/internal/required-indicator.js +6 -2
  17. package/dist/es2019/checkbox.js +27 -1
  18. package/dist/es2019/internal/checkbox-icon.js +2 -0
  19. package/dist/es2019/internal/label-text.js +4 -0
  20. package/dist/es2019/internal/label.js +10 -1
  21. package/dist/es2019/internal/required-indicator.js +6 -2
  22. package/dist/esm/checkbox.js +28 -2
  23. package/dist/esm/internal/checkbox-icon.js +2 -0
  24. package/dist/esm/internal/label-text.js +4 -0
  25. package/dist/esm/internal/label.js +10 -1
  26. package/dist/esm/internal/required-indicator.js +6 -2
  27. package/dist/types/internal/label-text.d.ts +4 -1
  28. package/dist/types/internal/label.d.ts +5 -2
  29. package/dist/types/internal/required-indicator.d.ts +3 -0
  30. package/dist/types/types.d.ts +12 -1
  31. package/dist/types-ts4.5/internal/label-text.d.ts +4 -1
  32. package/dist/types-ts4.5/internal/label.d.ts +5 -2
  33. package/dist/types-ts4.5/internal/required-indicator.d.ts +3 -0
  34. package/dist/types-ts4.5/types.d.ts +12 -1
  35. package/extract-react-types/checkbox-props.tsx +2 -2
  36. package/package.json +93 -93
  37. package/report.api.md +41 -46
package/CHANGELOG.md CHANGED
@@ -1,524 +1,542 @@
1
1
  # @atlaskit/checkbox
2
2
 
3
+ ## 13.5.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
+ ## 13.4.0
17
+
18
+ ### Minor Changes
19
+
20
+ - [#103698](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/103698)
21
+ [`413b5201c8fe`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/413b5201c8fe) -
22
+ Introduce the bounded `xcss` prop.
23
+
3
24
  ## 13.3.0
4
25
 
5
26
  ### Minor Changes
6
27
 
7
- - [#94675](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94675)
8
- [`5d9e1dccacca`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5d9e1dccacca) -
9
- [ux] Update input border color token to meet 3:1 color contrast ratioLight theme:
10
- color.border.input: #091E4224 → #8590A2Dark mode: color.border.input: #A6C5E229 → #738496
28
+ - [#94675](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94675)
29
+ [`5d9e1dccacca`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5d9e1dccacca) -
30
+ [ux] Update input border color token to meet 3:1 color contrast ratioLight theme:
31
+ color.border.input: #091E4224 → #8590A2Dark mode: color.border.input: #A6C5E229 → #738496
11
32
 
12
33
  ### Patch Changes
13
34
 
14
- - Updated dependencies
35
+ - Updated dependencies
15
36
 
16
37
  ## 13.2.0
17
38
 
18
39
  ### Minor Changes
19
40
 
20
- - [#96187](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/96187)
21
- [`53443aace88d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/53443aace88d) -
22
- Add support for React 18.
41
+ - [#96187](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/96187)
42
+ [`53443aace88d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/53443aace88d) -
43
+ Add support for React 18 in non-strict mode.
23
44
 
24
45
  ## 13.1.5
25
46
 
26
47
  ### Patch Changes
27
48
 
28
- - [#89923](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/89923)
29
- [`32bc9f9f09b3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/32bc9f9f09b3) -
30
- Internal changes to typography, no visual change.
49
+ - [#89923](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/89923)
50
+ [`32bc9f9f09b3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/32bc9f9f09b3) -
51
+ Internal changes to typography, no visual change.
31
52
 
32
53
  ## 13.1.4
33
54
 
34
55
  ### Patch Changes
35
56
 
36
- - [#84905](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/84905)
37
- [`f03cb7163ffc`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f03cb7163ffc) -
38
- Fixes a bug with input focus styles.
57
+ - [#84905](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/84905)
58
+ [`f03cb7163ffc`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f03cb7163ffc) -
59
+ Fixes a bug with input focus styles.
39
60
 
40
61
  ## 13.1.3
41
62
 
42
63
  ### Patch Changes
43
64
 
44
- - [#83297](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83297)
45
- [`6b1707c169e0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6b1707c169e0) -
46
- The internal composition of this component has changed. There is no expected change in
47
- behaviour.
65
+ - [#83297](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83297)
66
+ [`6b1707c169e0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6b1707c169e0) -
67
+ The internal composition of this component has changed. There is no expected change in behaviour.
48
68
 
49
69
  ## 13.1.2
50
70
 
51
71
  ### Patch Changes
52
72
 
53
- - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
54
- [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
55
- Upgrade Typescript from `4.9.5` to `5.4.2`
73
+ - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
74
+ [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
75
+ Upgrade Typescript from `4.9.5` to `5.4.2`
56
76
 
57
77
  ## 13.1.1
58
78
 
59
79
  ### Patch Changes
60
80
 
61
- - [#81644](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81644)
62
- [`8ab7a816dca7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8ab7a816dca7) -
63
- Revert input border change from the previous version
81
+ - [#81644](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81644)
82
+ [`8ab7a816dca7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8ab7a816dca7) -
83
+ Revert input border change from the previous version
64
84
 
65
85
  ## 13.1.0
66
86
 
67
87
  ### Minor Changes
68
88
 
69
- - [#80805](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80805)
70
- [`427c2dd9e0d6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/427c2dd9e0d6) -
71
- [ux] update border with from 2px to 1px with darker color to meet 3:1 color contrast for
72
- accessibility improvement
89
+ - [#80805](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80805)
90
+ [`427c2dd9e0d6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/427c2dd9e0d6) -
91
+ [ux] update border with from 2px to 1px with darker color to meet 3:1 color contrast for
92
+ accessibility improvement
73
93
 
74
94
  ### Patch Changes
75
95
 
76
- - Updated dependencies
96
+ - Updated dependencies
77
97
 
78
98
  ## 13.0.2
79
99
 
80
100
  ### Patch Changes
81
101
 
82
- - [#78598](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/78598)
83
- [`cabae83473c3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/cabae83473c3) -
84
- [ux] Improved visibility of focus styles by adding a gap between the checkbox and focus ring.
85
- This makes the focus ring easier to distinguish to a selected checkbox, which is also blue.
102
+ - [#78598](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/78598)
103
+ [`cabae83473c3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/cabae83473c3) -
104
+ [ux] Improved visibility of focus styles by adding a gap between the checkbox and focus ring. This
105
+ makes the focus ring easier to distinguish to a selected checkbox, which is also blue.
86
106
 
87
107
  ## 13.0.1
88
108
 
89
109
  ### Patch Changes
90
110
 
91
- - Updated dependencies
111
+ - Updated dependencies
92
112
 
93
113
  ## 13.0.0
94
114
 
95
115
  ### Major Changes
96
116
 
97
- - [#41760](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41760)
98
- [`909e4a30fe7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/909e4a30fe7) -
99
- Removed all remaining legacy theming logic from the Blanket, Breadcrumbs and Checkbox
100
- components.
117
+ - [#41760](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41760)
118
+ [`909e4a30fe7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/909e4a30fe7) - Removed
119
+ all remaining legacy theming logic from the Blanket, Breadcrumbs and Checkbox components.
101
120
 
102
121
  ## 12.6.11
103
122
 
104
123
  ### Patch Changes
105
124
 
106
- - [#38875](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38875)
107
- [`b580abfbc29`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b580abfbc29) - Remove
108
- onClick from checkbox label
125
+ - [#38875](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38875)
126
+ [`b580abfbc29`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b580abfbc29) - Remove
127
+ onClick from checkbox label
109
128
 
110
129
  ## 12.6.10
111
130
 
112
131
  ### Patch Changes
113
132
 
114
- - [#38731](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38731)
115
- [`9af31f3c1ae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9af31f3c1ae) - Delete
116
- version.json
133
+ - [#38731](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38731)
134
+ [`9af31f3c1ae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9af31f3c1ae) - Delete
135
+ version.json
117
136
 
118
137
  ## 12.6.9
119
138
 
120
139
  ### Patch Changes
121
140
 
122
- - [#38201](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38201)
123
- [`356d6ebed05`](https://bitbucket.org/atlassian/atlassian-frontend/commits/356d6ebed05) - This
124
- package is now onboarded onto the product push model.
141
+ - [#38201](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38201)
142
+ [`356d6ebed05`](https://bitbucket.org/atlassian/atlassian-frontend/commits/356d6ebed05) - This
143
+ package is now onboarded onto the product push model.
125
144
 
126
145
  ## 12.6.8
127
146
 
128
147
  ### Patch Changes
129
148
 
130
- - [#37615](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37615)
131
- [`ba0a43d8ccc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ba0a43d8ccc) - [ux]
132
- update focused color fallback to meet contrast requirement
149
+ - [#37615](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37615)
150
+ [`ba0a43d8ccc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ba0a43d8ccc) - [ux]
151
+ update focused color fallback to meet contrast requirement
133
152
 
134
153
  ## 12.6.7
135
154
 
136
155
  ### Patch Changes
137
156
 
138
- - [#37452](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37452)
139
- [`9cc3b8d1902`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9cc3b8d1902) -
140
- chore(checkbox): use new feature flag for border contrast
157
+ - [#37452](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37452)
158
+ [`9cc3b8d1902`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9cc3b8d1902) -
159
+ chore(checkbox): use new feature flag for border contrast
141
160
 
142
161
  ## 12.6.6
143
162
 
144
163
  ### Patch Changes
145
164
 
146
- - [#36754](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36754)
147
- [`4ae083a7e66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ae083a7e66) - Use
148
- `@af/accessibility-testing` for default jest-axe config and jest-axe import in accessibility
149
- testing.
165
+ - [#36754](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36754)
166
+ [`4ae083a7e66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ae083a7e66) - Use
167
+ `@af/accessibility-testing` for default jest-axe config and jest-axe import in accessibility
168
+ testing.
150
169
 
151
170
  ## 12.6.5
152
171
 
153
172
  ### Patch Changes
154
173
 
155
- - [#36666](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36666)
156
- [`3958636a718`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3958636a718) - update
157
- border width with border spacing token
174
+ - [#36666](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36666)
175
+ [`3958636a718`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3958636a718) - update
176
+ border width with border spacing token
158
177
 
159
178
  ## 12.6.4
160
179
 
161
180
  ### Patch Changes
162
181
 
163
- - [#35111](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35111)
164
- [`8f436f0c301`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8f436f0c301) - extend
165
- border contrast feature flag to support confluence
182
+ - [#35111](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35111)
183
+ [`8f436f0c301`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8f436f0c301) - extend
184
+ border contrast feature flag to support confluence
166
185
 
167
186
  ## 12.6.3
168
187
 
169
188
  ### Patch Changes
170
189
 
171
- - [#34051](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34051)
172
- [`49b08bfdf5f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/49b08bfdf5f) -
173
- Migrated use of `gridSize` to space tokens where possible. There is no expected visual or
174
- behaviour change.
190
+ - [#34051](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34051)
191
+ [`49b08bfdf5f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/49b08bfdf5f) - Migrated
192
+ use of `gridSize` to space tokens where possible. There is no expected visual or behaviour change.
175
193
 
176
194
  ## 12.6.2
177
195
 
178
196
  ### Patch Changes
179
197
 
180
- - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
181
- [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
182
- legacy types are published for TS 4.5-4.8
198
+ - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
199
+ [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
200
+ legacy types are published for TS 4.5-4.8
183
201
 
184
202
  ## 12.6.1
185
203
 
186
204
  ### Patch Changes
187
205
 
188
- - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
189
- [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) -
190
- Upgrade Typescript from `4.5.5` to `4.9.5`
206
+ - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
207
+ [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade
208
+ Typescript from `4.5.5` to `4.9.5`
191
209
 
192
210
  ## 12.6.0
193
211
 
194
212
  ### Minor Changes
195
213
 
196
- - [#33335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33335)
197
- [`8d0fd2d3f6c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d0fd2d3f6c) - [ux]
198
- reduce stroke width from 2px to 1px with new color to meet contrast requirement
214
+ - [#33335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33335)
215
+ [`8d0fd2d3f6c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d0fd2d3f6c) - [ux]
216
+ reduce stroke width from 2px to 1px with new color to meet contrast requirement
199
217
 
200
218
  ## 12.5.0
201
219
 
202
220
  ### Minor Changes
203
221
 
204
- - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
205
- [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
206
- minor dependency bump
222
+ - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
223
+ [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
224
+ minor dependency bump
207
225
 
208
226
  ### Patch Changes
209
227
 
210
- - Updated dependencies
228
+ - Updated dependencies
211
229
 
212
230
  ## 12.4.6
213
231
 
214
232
  ### Patch Changes
215
233
 
216
- - Updated dependencies
234
+ - Updated dependencies
217
235
 
218
236
  ## 12.4.5
219
237
 
220
238
  ### Patch Changes
221
239
 
222
- - Updated dependencies
240
+ - Updated dependencies
223
241
 
224
242
  ## 12.4.4
225
243
 
226
244
  ### Patch Changes
227
245
 
228
- - Updated dependencies
246
+ - Updated dependencies
229
247
 
230
248
  ## 12.4.3
231
249
 
232
250
  ### Patch Changes
233
251
 
234
- - Updated dependencies
252
+ - Updated dependencies
235
253
 
236
254
  ## 12.4.2
237
255
 
238
256
  ### Patch Changes
239
257
 
240
- - [#27738](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27738)
241
- [`ed1b0fd2c2d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ed1b0fd2c2d) - [ux]
242
- Removes redundant whitespace from checkbox when no visual label is applied - eg when an
243
- aria-label or id is used instead.
258
+ - [#27738](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27738)
259
+ [`ed1b0fd2c2d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ed1b0fd2c2d) - [ux]
260
+ Removes redundant whitespace from checkbox when no visual label is applied - eg when an aria-label
261
+ or id is used instead.
244
262
 
245
263
  ## 12.4.1
246
264
 
247
265
  ### Patch Changes
248
266
 
249
- - Updated dependencies
267
+ - Updated dependencies
250
268
 
251
269
  ## 12.4.0
252
270
 
253
271
  ### Minor Changes
254
272
 
255
- - [#24710](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24710)
256
- [`0944c0e7eed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0944c0e7eed) -
257
- Updates `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
273
+ - [#24710](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24710)
274
+ [`0944c0e7eed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0944c0e7eed) - Updates
275
+ `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
258
276
 
259
277
  ### Patch Changes
260
278
 
261
- - Updated dependencies
279
+ - Updated dependencies
262
280
 
263
281
  ## 12.3.20
264
282
 
265
283
  ### Patch Changes
266
284
 
267
- - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874)
268
- [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) -
269
- Upgrade Typescript from `4.3.5` to `4.5.5`
285
+ - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874)
286
+ [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade
287
+ Typescript from `4.3.5` to `4.5.5`
270
288
 
271
289
  ## 12.3.19
272
290
 
273
291
  ### Patch Changes
274
292
 
275
- - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492)
276
- [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) -
277
- Upgrade Typescript from `4.2.4` to `4.3.5`.
293
+ - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492)
294
+ [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade
295
+ Typescript from `4.2.4` to `4.3.5`.
278
296
 
279
297
  ## 12.3.18
280
298
 
281
299
  ### Patch Changes
282
300
 
283
- - [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381)
284
- [`fe575d49d66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe575d49d66) -
285
- Updated styles to use new input design tokens
286
- - Updated dependencies
301
+ - [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381)
302
+ [`fe575d49d66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe575d49d66) - Updated
303
+ styles to use new input design tokens
304
+ - Updated dependencies
287
305
 
288
306
  ## 12.3.17
289
307
 
290
308
  ### Patch Changes
291
309
 
292
- - [#23299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23299)
293
- [`90e89e12034`](https://bitbucket.org/atlassian/atlassian-frontend/commits/90e89e12034) - [ux]
294
- Updated colors to use appropriate tokens
310
+ - [#23299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23299)
311
+ [`90e89e12034`](https://bitbucket.org/atlassian/atlassian-frontend/commits/90e89e12034) - [ux]
312
+ Updated colors to use appropriate tokens
295
313
 
296
314
  ## 12.3.16
297
315
 
298
316
  ### Patch Changes
299
317
 
300
- - [#23179](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23179)
301
- [`f55cf469372`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f55cf469372) - Added
302
- id property to the checkbox label for compatibility with aria-labelledby
318
+ - [#23179](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23179)
319
+ [`f55cf469372`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f55cf469372) - Added id
320
+ property to the checkbox label for compatibility with aria-labelledby
303
321
 
304
322
  ## 12.3.15
305
323
 
306
324
  ### Patch Changes
307
325
 
308
- - Updated dependencies
326
+ - Updated dependencies
309
327
 
310
328
  ## 12.3.14
311
329
 
312
330
  ### Patch Changes
313
331
 
314
- - [#22130](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22130)
315
- [`ff75f6c3189`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ff75f6c3189) - [ux]
316
- Checkbox now uses grid layout in order to position the hidden checkbox over the area where the
317
- icon is. This improves the virtual cursor for screen readers while also meaning that modifier
318
- keys used when clicking the checkbox work."
332
+ - [#22130](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22130)
333
+ [`ff75f6c3189`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ff75f6c3189) - [ux]
334
+ Checkbox now uses grid layout in order to position the hidden checkbox over the area where the
335
+ icon is. This improves the virtual cursor for screen readers while also meaning that modifier keys
336
+ used when clicking the checkbox work."
319
337
 
320
338
  ## 12.3.13
321
339
 
322
340
  ### Patch Changes
323
341
 
324
- - Updated dependencies
342
+ - Updated dependencies
325
343
 
326
344
  ## 12.3.12
327
345
 
328
346
  ### Patch Changes
329
347
 
330
- - [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650)
331
- [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) -
332
- Upgrade to TypeScript 4.2.4
348
+ - [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650)
349
+ [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade
350
+ to TypeScript 4.2.4
333
351
 
334
352
  ## 12.3.11
335
353
 
336
354
  ### Patch Changes
337
355
 
338
- - Updated dependencies
356
+ - Updated dependencies
339
357
 
340
358
  ## 12.3.10
341
359
 
342
360
  ### Patch Changes
343
361
 
344
- - Updated dependencies
362
+ - Updated dependencies
345
363
 
346
364
  ## 12.3.9
347
365
 
348
366
  ### Patch Changes
349
367
 
350
- - Updated dependencies
368
+ - Updated dependencies
351
369
 
352
370
  ## 12.3.8
353
371
 
354
372
  ### Patch Changes
355
373
 
356
- - [#18526](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18526)
357
- [`5d27b03c5cf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5d27b03c5cf) - Styles
358
- have been rewritten in preparation for migration to compiled.
359
- - Updated dependencies
374
+ - [#18526](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18526)
375
+ [`5d27b03c5cf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5d27b03c5cf) - Styles
376
+ have been rewritten in preparation for migration to compiled.
377
+ - Updated dependencies
360
378
 
361
379
  ## 12.3.7
362
380
 
363
381
  ### Patch Changes
364
382
 
365
- - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752)
366
- [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) -
367
- Updates usage of deprecated token names so they're aligned with the latest naming conventions.
368
- No UI or visual changes
369
- - Updated dependencies
383
+ - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752)
384
+ [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - Updates
385
+ usage of deprecated token names so they're aligned with the latest naming conventions. No UI or
386
+ visual changes
387
+ - Updated dependencies
370
388
 
371
389
  ## 12.3.6
372
390
 
373
391
  ### Patch Changes
374
392
 
375
- - Updated dependencies
393
+ - Updated dependencies
376
394
 
377
395
  ## 12.3.5
378
396
 
379
397
  ### Patch Changes
380
398
 
381
- - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998)
382
- [`f460cc7c411`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f460cc7c411) - Builds
383
- for this package now pass through a tokens babel plugin, removing runtime invocations of the
384
- tokens() function and improving bundle size.
385
- - Updated dependencies
399
+ - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998)
400
+ [`f460cc7c411`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f460cc7c411) - Builds
401
+ for this package now pass through a tokens babel plugin, removing runtime invocations of the
402
+ tokens() function and improving bundle size.
403
+ - Updated dependencies
386
404
 
387
405
  ## 12.3.4
388
406
 
389
407
  ### Patch Changes
390
408
 
391
- - Updated dependencies
409
+ - Updated dependencies
392
410
 
393
411
  ## 12.3.3
394
412
 
395
413
  ### Patch Changes
396
414
 
397
- - Updated dependencies
415
+ - Updated dependencies
398
416
 
399
417
  ## 12.3.2
400
418
 
401
419
  ### Patch Changes
402
420
 
403
- - Updated dependencies
421
+ - Updated dependencies
404
422
 
405
423
  ## 12.3.1
406
424
 
407
425
  ### Patch Changes
408
426
 
409
- - [#13864](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13864)
410
- [`6e2231d4609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e2231d4609) -
411
- Checkbox no longer creates an empty `<span/>` element next to the input if no label is provided.
412
- - Updated dependencies
427
+ - [#13864](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13864)
428
+ [`6e2231d4609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e2231d4609) - Checkbox
429
+ no longer creates an empty `<span/>` element next to the input if no label is provided.
430
+ - Updated dependencies
413
431
 
414
432
  ## 12.3.0
415
433
 
416
434
  ### Minor Changes
417
435
 
418
- - [#13302](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13302)
419
- [`fe79d66ea34`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe79d66ea34) -
420
- Instruments checkbox with the new tokens api. This will continue to work alongside the existing
421
- theming implementation. No visual changes
436
+ - [#13302](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13302)
437
+ [`fe79d66ea34`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe79d66ea34) -
438
+ Instruments checkbox with the new tokens api. This will continue to work alongside the existing
439
+ theming implementation. No visual changes
422
440
 
423
441
  ### Patch Changes
424
442
 
425
- - [`b6b4c4100cd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b6b4c4100cd) -
426
- Updates high contrast css declarations to use system color tokens + generic media query
427
- - [`2d7cc544696`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2d7cc544696) -
428
- Updates token usage to match the latest token set
429
- - Updated dependencies
443
+ - [`b6b4c4100cd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b6b4c4100cd) - Updates
444
+ high contrast css declarations to use system color tokens + generic media query
445
+ - [`2d7cc544696`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2d7cc544696) - Updates
446
+ token usage to match the latest token set
447
+ - Updated dependencies
430
448
 
431
449
  ## 12.2.2
432
450
 
433
451
  ### Patch Changes
434
452
 
435
- - [#12837](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12837)
436
- [`18c128f6b73`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18c128f6b73) - [ux]
437
- Fix bug in which modified click events (e.g. Ctrl+Click) would not get passed down to the
438
- underlying input element in Firefox.
439
- - Updated dependencies
453
+ - [#12837](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12837)
454
+ [`18c128f6b73`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18c128f6b73) - [ux] Fix
455
+ bug in which modified click events (e.g. Ctrl+Click) would not get passed down to the underlying
456
+ input element in Firefox.
457
+ - Updated dependencies
440
458
 
441
459
  ## 12.2.1
442
460
 
443
461
  ### Patch Changes
444
462
 
445
- - [#12880](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12880)
446
- [`378d1cef00f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/378d1cef00f) - Bump
447
- `@atlaskit/theme` to version `^11.3.0`.
463
+ - [#12880](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12880)
464
+ [`378d1cef00f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/378d1cef00f) - Bump
465
+ `@atlaskit/theme` to version `^11.3.0`.
448
466
 
449
467
  ## 12.2.0
450
468
 
451
469
  ### Minor Changes
452
470
 
453
- - [#12328](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12328)
454
- [`987e2fc4ddd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/987e2fc4ddd) - Add
455
- configuration to eslint rule label-has-associated-control
471
+ - [#12328](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12328)
472
+ [`987e2fc4ddd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/987e2fc4ddd) - Add
473
+ configuration to eslint rule label-has-associated-control
456
474
 
457
475
  ### Patch Changes
458
476
 
459
- - [`3c67db1a6e9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c67db1a6e9) - Fix
460
- for checkbox to account for a change in the @atlaskit/icon API
461
- - Updated dependencies
477
+ - [`3c67db1a6e9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c67db1a6e9) - Fix for
478
+ checkbox to account for a change in the @atlaskit/icon API
479
+ - Updated dependencies
462
480
 
463
481
  ## 12.1.3
464
482
 
465
483
  ### Patch Changes
466
484
 
467
- - [#12167](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12167)
468
- [`d6f7ff383cf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6f7ff383cf) -
469
- Updates to development dependency `storybook-addon-performance`
485
+ - [#12167](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12167)
486
+ [`d6f7ff383cf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6f7ff383cf) - Updates
487
+ to development dependency `storybook-addon-performance`
470
488
 
471
489
  ## 12.1.2
472
490
 
473
491
  ### Patch Changes
474
492
 
475
- - [#11584](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11584)
476
- [`37324ccc750`](https://bitbucket.org/atlassian/atlassian-frontend/commits/37324ccc750) - Fix
477
- styling error causing rendering errors in iOS Safari, and focus rings in Firefox
493
+ - [#11584](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11584)
494
+ [`37324ccc750`](https://bitbucket.org/atlassian/atlassian-frontend/commits/37324ccc750) - Fix
495
+ styling error causing rendering errors in iOS Safari, and focus rings in Firefox
478
496
 
479
497
  ## 12.1.1
480
498
 
481
499
  ### Patch Changes
482
500
 
483
- - [#10230](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10230)
484
- [`a99925b1634`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a99925b1634) - Added
485
- styles for edge high contrast modes (black on white and white on black)
486
- - Updated dependencies
501
+ - [#10230](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10230)
502
+ [`a99925b1634`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a99925b1634) - Added
503
+ styles for edge high contrast modes (black on white and white on black)
504
+ - Updated dependencies
487
505
 
488
506
  ## 12.1.0
489
507
 
490
508
  ### Minor Changes
491
509
 
492
- - [#9510](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9510)
493
- [`02a0cdbd98b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/02a0cdbd98b) - Added
494
- aria-invalid to checkbox input which corresponds the isInvalid prop
510
+ - [#9510](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9510)
511
+ [`02a0cdbd98b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/02a0cdbd98b) - Added
512
+ aria-invalid to checkbox input which corresponds the isInvalid prop
495
513
 
496
514
  ## 12.0.2
497
515
 
498
516
  ### Patch Changes
499
517
 
500
- - [#9083](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9083)
501
- [`e0278312c57`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e0278312c57) -
502
- Checkbox now uses the new `SVG` component from @atlaskit/icon.
503
- - Updated dependencies
518
+ - [#9083](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9083)
519
+ [`e0278312c57`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e0278312c57) - Checkbox
520
+ now uses the new `SVG` component from @atlaskit/icon.
521
+ - Updated dependencies
504
522
 
505
523
  ## 12.0.1
506
524
 
507
525
  ### Patch Changes
508
526
 
509
- - [#8644](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8644)
510
- [`79c23df6340`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79c23df6340) - Use
511
- injected package name and version for analytics instead of version.json.
512
- - [`08c1f789a45`](https://bitbucket.org/atlassian/atlassian-frontend/commits/08c1f789a45) - [ux]
513
- Fixes flickering when transitioning to and from indeterminate states
527
+ - [#8644](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8644)
528
+ [`79c23df6340`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79c23df6340) - Use
529
+ injected package name and version for analytics instead of version.json.
530
+ - [`08c1f789a45`](https://bitbucket.org/atlassian/atlassian-frontend/commits/08c1f789a45) - [ux]
531
+ Fixes flickering when transitioning to and from indeterminate states
514
532
 
515
533
  ## 12.0.0
516
534
 
517
535
  ### Major Changes
518
536
 
519
- - [#6571](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/6571)
520
- [`ee02ee0aaa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ee02ee0aaa) In this
521
- version, we made `Checkbox` dramatically faster and more lightweight 😍
537
+ - [#6571](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/6571)
538
+ [`ee02ee0aaa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ee02ee0aaa) In this
539
+ version, we made `Checkbox` dramatically faster and more lightweight 😍
522
540
 
523
541
  ### Changes
524
542
 
@@ -612,36 +630,36 @@ used with the removal of `theme`.
612
630
 
613
631
  ### Other changes
614
632
 
615
- - Previously all interaction styles were generated in JS using events, causing unnecessary and
616
- slow rerenders for actions like hovering and focusing. Now all styles for the `Checkbox` are
617
- applied using css selectors.
618
- - To generate less dom elements we have removed the dependency on `@atlaskit/icon` and instead
619
- changed to an `svg` that can be customised to be the default checkbox or the indeterminate
620
- checkbox. This `svg` is styled from the input element with the sibling selector.
621
- - The disabled state of `Checkbox` previously had no border. This was not intentional and now
622
- `Checkbox` has a 2px border when it is disabled, this is consistent with all other states of
623
- `Checkbox`.
624
- - `CheckboxProps` now extends `HTMLInputAttribute` which means you can pass any input attribute as
625
- a prop onto `Checkbox`.
626
- - Changed the `inputRef` prop to be `ref` which returns the `ref` of the checkbox input using
627
- `forwardRef`. This new `ref` prop will accept the type of the old `inputRef` prop,
628
- `(input?: HTMLInputElement) => any`, as well as if `ref` is created with `createRef`.
629
- - Removed the prop `isFullWidth` as it did not do anything.
630
- - Updated the entry point to only export `Checkbox` and `CheckboxProps`. `Checkbox` can now be a
631
- named or default import. As the old entry point allowed access to every export at the base level
632
- these exports have now been removed; `ComponentTokens`, `ThemeFn`, `CheckboxWithoutAnalytics`,
633
- `CheckboxIcon` as well as all exported types.
634
- - Changed indeterminate checkboxes to set `aria-checked` to be `mixed`.
633
+ - Previously all interaction styles were generated in JS using events, causing unnecessary and slow
634
+ rerenders for actions like hovering and focusing. Now all styles for the `Checkbox` are applied
635
+ using css selectors.
636
+ - To generate less dom elements we have removed the dependency on `@atlaskit/icon` and instead
637
+ changed to an `svg` that can be customised to be the default checkbox or the indeterminate
638
+ checkbox. This `svg` is styled from the input element with the sibling selector.
639
+ - The disabled state of `Checkbox` previously had no border. This was not intentional and now
640
+ `Checkbox` has a 2px border when it is disabled, this is consistent with all other states of
641
+ `Checkbox`.
642
+ - `CheckboxProps` now extends `HTMLInputAttribute` which means you can pass any input attribute as a
643
+ prop onto `Checkbox`.
644
+ - Changed the `inputRef` prop to be `ref` which returns the `ref` of the checkbox input using
645
+ `forwardRef`. This new `ref` prop will accept the type of the old `inputRef` prop,
646
+ `(input?: HTMLInputElement) => any`, as well as if `ref` is created with `createRef`.
647
+ - Removed the prop `isFullWidth` as it did not do anything.
648
+ - Updated the entry point to only export `Checkbox` and `CheckboxProps`. `Checkbox` can now be a
649
+ named or default import. As the old entry point allowed access to every export at the base level
650
+ these exports have now been removed; `ComponentTokens`, `ThemeFn`, `CheckboxWithoutAnalytics`,
651
+ `CheckboxIcon` as well as all exported types.
652
+ - Changed indeterminate checkboxes to set `aria-checked` to be `mixed`.
635
653
 
636
654
  ### Automatic upgrading
637
655
 
638
656
  There is a codemod that assists you in upgrading most of the changes from above.
639
657
 
640
- - Removes `isFullWidth`, `theme` and `overrides` prop.
641
- - Shifts over usages of `inputRef` to `ref`
642
- - Removes imports of `ComponentTokens` and `ThemeFn`.
643
- - Changes imports of `CheckboxProps` to be at the base level.
644
- - Changes imports of `CheckboxWithoutAnalytics` to import `Checkbox` at the base level.
658
+ - Removes `isFullWidth`, `theme` and `overrides` prop.
659
+ - Shifts over usages of `inputRef` to `ref`
660
+ - Removes imports of `ComponentTokens` and `ThemeFn`.
661
+ - Changes imports of `CheckboxProps` to be at the base level.
662
+ - Changes imports of `CheckboxWithoutAnalytics` to import `Checkbox` at the base level.
645
663
 
646
664
  ```
647
665
  # You first need to have the latest `Checkbox` installed before you can run the codemod
@@ -654,1143 +672,1140 @@ npx @atlaskit/codemod-cli /path/to/target/directory --parser [tsx | flow | babel
654
672
 
655
673
  ### Patch Changes
656
674
 
657
- - [`c7604cdf02`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c7604cdf02) - In
658
- `12.0.0` the `checkbox` input accidentally changed vertical alignment from `top` to `center`.
659
- This had a visual impact when you had a checkbox label the spanned multiple lines. This changes
660
- the vertical alignment of the `checkbox` input back to `top`.
661
- - [`6cb7f0c5e5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6cb7f0c5e5) - Patch
662
- fix to make the svg not shrink and give Checkbox a display name.
675
+ - [`c7604cdf02`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c7604cdf02) - In
676
+ `12.0.0` the `checkbox` input accidentally changed vertical alignment from `top` to `center`. This
677
+ had a visual impact when you had a checkbox label the spanned multiple lines. This changes the
678
+ vertical alignment of the `checkbox` input back to `top`.
679
+ - [`6cb7f0c5e5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6cb7f0c5e5) - Patch fix
680
+ to make the svg not shrink and give Checkbox a display name.
663
681
 
664
682
  ## 11.0.8
665
683
 
666
684
  ### Patch Changes
667
685
 
668
- - [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857)
669
- [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) -
670
- Transpile packages using babel rather than tsc
686
+ - [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857)
687
+ [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile
688
+ packages using babel rather than tsc
671
689
 
672
690
  ## 11.0.7
673
691
 
674
692
  ### Patch Changes
675
693
 
676
- - [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497)
677
- [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export
678
- types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules
679
- compiler option. This requires version 3.8 of Typescript, read more about how we handle
680
- Typescript versions here: https://atlaskit.atlassian.com/get-started Also add `typescript` to
681
- `devDependencies` to denote version that the package was built with.
694
+ - [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497)
695
+ [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export
696
+ types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules
697
+ compiler option. This requires version 3.8 of Typescript, read more about how we handle Typescript
698
+ versions here: https://atlaskit.atlassian.com/get-started Also add `typescript` to
699
+ `devDependencies` to denote version that the package was built with.
682
700
 
683
701
  ## 11.0.6
684
702
 
685
703
  ### Patch Changes
686
704
 
687
- - Updated dependencies
705
+ - Updated dependencies
688
706
 
689
707
  ## 11.0.5
690
708
 
691
709
  ### Patch Changes
692
710
 
693
- - [#4707](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4707)
694
- [`6360c46009`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6360c46009) - Reenable
695
- integration tests for Edge browser
711
+ - [#4707](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4707)
712
+ [`6360c46009`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6360c46009) - Reenable
713
+ integration tests for Edge browser
696
714
 
697
715
  ## 11.0.4
698
716
 
699
717
  ### Patch Changes
700
718
 
701
- - [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885)
702
- [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded
703
- to TypeScript 3.9.6 and tslib to 2.0.0
719
+ - [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885)
720
+ [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded
721
+ to TypeScript 3.9.6 and tslib to 2.0.0
704
722
 
705
- Since tslib is a dependency for all our packages we recommend that products also follow this
706
- tslib upgrade to prevent duplicates of tslib being bundled.
723
+ Since tslib is a dependency for all our packages we recommend that products also follow this tslib
724
+ upgrade to prevent duplicates of tslib being bundled.
707
725
 
708
726
  ## 11.0.3
709
727
 
710
728
  ### Patch Changes
711
729
 
712
- - [#3823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3823)
713
- [`6262f382de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6262f382de) - Use the
714
- 'lodash' package instead of single-function 'lodash.\*' packages
715
- - [`e99262c6f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e99262c6f0) - All form
716
- elements now have a default font explicitly set
730
+ - [#3823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3823)
731
+ [`6262f382de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6262f382de) - Use the
732
+ 'lodash' package instead of single-function 'lodash.\*' packages
733
+ - [`e99262c6f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e99262c6f0) - All form
734
+ elements now have a default font explicitly set
717
735
 
718
736
  ## 11.0.2
719
737
 
720
738
  ### Patch Changes
721
739
 
722
- - [#3293](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3293)
723
- [`954cc87b62`](https://bitbucket.org/atlassian/atlassian-frontend/commits/954cc87b62) - The
724
- readme and package information has been updated to point to the new design system website.
740
+ - [#3293](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3293)
741
+ [`954cc87b62`](https://bitbucket.org/atlassian/atlassian-frontend/commits/954cc87b62) - The readme
742
+ and package information has been updated to point to the new design system website.
725
743
 
726
744
  ## 11.0.1
727
745
 
728
746
  ### Patch Changes
729
747
 
730
- - [#3428](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3428)
731
- [`db053b24d8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db053b24d8) - Update
732
- all the theme imports to be tree-shakable
748
+ - [#3428](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3428)
749
+ [`db053b24d8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db053b24d8) - Update all
750
+ the theme imports to be tree-shakable
733
751
 
734
752
  ## 11.0.0
735
753
 
736
754
  ### Major Changes
737
755
 
738
- - [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335)
739
- [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) -
740
- Officially dropping IE11 support, from this version onwards there are no warranties of the
741
- package working in IE11. For more information see:
742
- https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
756
+ - [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335)
757
+ [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially
758
+ dropping IE11 support, from this version onwards there are no warranties of the package working in
759
+ IE11. For more information see:
760
+ https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
743
761
 
744
762
  ### Patch Changes
745
763
 
746
- - Updated dependencies
764
+ - Updated dependencies
747
765
 
748
766
  ## 10.1.14
749
767
 
750
768
  ### Patch Changes
751
769
 
752
- - [#2866](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2866)
753
- [`54a9514fcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54a9514fcf) - Build
754
- and supporting files will no longer be published to npm
770
+ - [#2866](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2866)
771
+ [`54a9514fcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54a9514fcf) - Build and
772
+ supporting files will no longer be published to npm
755
773
 
756
774
  ## 10.1.13
757
775
 
758
776
  ### Patch Changes
759
777
 
760
- - [#2137](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2137)
761
- [`54d82b49f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54d82b49f0) - Remove
762
- unused dependencies
778
+ - [#2137](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2137)
779
+ [`54d82b49f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54d82b49f0) - Remove
780
+ unused dependencies
763
781
 
764
782
  ## 10.1.12
765
783
 
766
784
  ### Patch Changes
767
785
 
768
- - Updated dependencies
786
+ - Updated dependencies
769
787
 
770
788
  ## 10.1.11
771
789
 
772
790
  ### Patch Changes
773
791
 
774
- - [patch][68ff159118](https://bitbucket.org/atlassian/atlassian-frontend/commits/68ff159118):
792
+ - [patch][68ff159118](https://bitbucket.org/atlassian/atlassian-frontend/commits/68ff159118):
775
793
 
776
- Change imports to comply with Atlassian conventions- Updated dependencies
777
- [6b8e60827e](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b8e60827e):
794
+ Change imports to comply with Atlassian conventions- Updated dependencies
795
+ [6b8e60827e](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b8e60827e):
778
796
 
779
- - Updated dependencies
780
- [449ef134b3](https://bitbucket.org/atlassian/atlassian-frontend/commits/449ef134b3):
781
- - Updated dependencies
782
- [57c0487a02](https://bitbucket.org/atlassian/atlassian-frontend/commits/57c0487a02):
783
- - Updated dependencies
784
- [0059d26429](https://bitbucket.org/atlassian/atlassian-frontend/commits/0059d26429):
785
- - Updated dependencies
786
- [fd41d77c29](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd41d77c29):
787
- - @atlaskit/button@13.3.11
788
- - @atlaskit/icon@20.1.1
789
- - @atlaskit/form@7.2.1
790
- - @atlaskit/webdriver-runner@0.3.4
797
+ - Updated dependencies
798
+ [449ef134b3](https://bitbucket.org/atlassian/atlassian-frontend/commits/449ef134b3):
799
+ - Updated dependencies
800
+ [57c0487a02](https://bitbucket.org/atlassian/atlassian-frontend/commits/57c0487a02):
801
+ - Updated dependencies
802
+ [0059d26429](https://bitbucket.org/atlassian/atlassian-frontend/commits/0059d26429):
803
+ - Updated dependencies
804
+ [fd41d77c29](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd41d77c29):
805
+ - @atlaskit/button@13.3.11
806
+ - @atlaskit/icon@20.1.1
807
+ - @atlaskit/form@7.2.1
808
+ - @atlaskit/webdriver-runner@0.3.4
791
809
 
792
810
  ## 10.1.10
793
811
 
794
812
  ### Patch Changes
795
813
 
796
- - Updated dependencies
797
- [66dcced7a0](https://bitbucket.org/atlassian/atlassian-frontend/commits/66dcced7a0):
798
- - Updated dependencies
799
- [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
800
- - Updated dependencies
801
- [64fb94fb1e](https://bitbucket.org/atlassian/atlassian-frontend/commits/64fb94fb1e):
802
- - Updated dependencies
803
- [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
804
- - Updated dependencies
805
- [eea5e9bd8c](https://bitbucket.org/atlassian/atlassian-frontend/commits/eea5e9bd8c):
806
- - Updated dependencies
807
- [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
808
- - Updated dependencies
809
- [109c1a2c0a](https://bitbucket.org/atlassian/atlassian-frontend/commits/109c1a2c0a):
810
- - Updated dependencies
811
- [c57bb32f6d](https://bitbucket.org/atlassian/atlassian-frontend/commits/c57bb32f6d):
812
- - @atlaskit/docs@8.4.0
813
- - @atlaskit/icon@20.1.0
814
- - @atlaskit/webdriver-runner@0.3.0
815
- - @atlaskit/button@13.3.9
816
- - @atlaskit/form@7.1.5
817
- - @atlaskit/section-message@4.1.7
814
+ - Updated dependencies
815
+ [66dcced7a0](https://bitbucket.org/atlassian/atlassian-frontend/commits/66dcced7a0):
816
+ - Updated dependencies
817
+ [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
818
+ - Updated dependencies
819
+ [64fb94fb1e](https://bitbucket.org/atlassian/atlassian-frontend/commits/64fb94fb1e):
820
+ - Updated dependencies
821
+ [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
822
+ - Updated dependencies
823
+ [eea5e9bd8c](https://bitbucket.org/atlassian/atlassian-frontend/commits/eea5e9bd8c):
824
+ - Updated dependencies
825
+ [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
826
+ - Updated dependencies
827
+ [109c1a2c0a](https://bitbucket.org/atlassian/atlassian-frontend/commits/109c1a2c0a):
828
+ - Updated dependencies
829
+ [c57bb32f6d](https://bitbucket.org/atlassian/atlassian-frontend/commits/c57bb32f6d):
830
+ - @atlaskit/docs@8.4.0
831
+ - @atlaskit/icon@20.1.0
832
+ - @atlaskit/webdriver-runner@0.3.0
833
+ - @atlaskit/button@13.3.9
834
+ - @atlaskit/form@7.1.5
835
+ - @atlaskit/section-message@4.1.7
818
836
 
819
837
  ## 10.1.9
820
838
 
821
839
  ### Patch Changes
822
840
 
823
- - Updated dependencies
824
- [e3f01787dd](https://bitbucket.org/atlassian/atlassian-frontend/commits/e3f01787dd):
825
- - @atlaskit/webdriver-runner@0.2.0
826
- - @atlaskit/button@13.3.8
827
- - @atlaskit/form@7.1.4
828
- - @atlaskit/section-message@4.1.6
841
+ - Updated dependencies
842
+ [e3f01787dd](https://bitbucket.org/atlassian/atlassian-frontend/commits/e3f01787dd):
843
+ - @atlaskit/webdriver-runner@0.2.0
844
+ - @atlaskit/button@13.3.8
845
+ - @atlaskit/form@7.1.4
846
+ - @atlaskit/section-message@4.1.6
829
847
 
830
848
  ## 10.1.8
831
849
 
832
850
  ### Patch Changes
833
851
 
834
- - [patch][c1992227dc](https://bitbucket.org/atlassian/atlassian-frontend/commits/c1992227dc):
852
+ - [patch][c1992227dc](https://bitbucket.org/atlassian/atlassian-frontend/commits/c1992227dc):
835
853
 
836
- Bump to lodash.merge to 4.6.2- Updated dependencies
837
- [eaad41d56c](https://bitbucket.org/atlassian/atlassian-frontend/commits/eaad41d56c):
854
+ Bump to lodash.merge to 4.6.2- Updated dependencies
855
+ [eaad41d56c](https://bitbucket.org/atlassian/atlassian-frontend/commits/eaad41d56c):
838
856
 
839
- - Updated dependencies
840
- [c12ba5eb3e](https://bitbucket.org/atlassian/atlassian-frontend/commits/c12ba5eb3e):
841
- - Updated dependencies
842
- [0603860c07](https://bitbucket.org/atlassian/atlassian-frontend/commits/0603860c07):
843
- - @atlaskit/form@7.1.3
844
- - @atlaskit/icon@20.0.2
857
+ - Updated dependencies
858
+ [c12ba5eb3e](https://bitbucket.org/atlassian/atlassian-frontend/commits/c12ba5eb3e):
859
+ - Updated dependencies
860
+ [0603860c07](https://bitbucket.org/atlassian/atlassian-frontend/commits/0603860c07):
861
+ - @atlaskit/form@7.1.3
862
+ - @atlaskit/icon@20.0.2
845
863
 
846
864
  ## 10.1.7
847
865
 
848
866
  ### Patch Changes
849
867
 
850
- - [patch][6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
868
+ - [patch][6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
851
869
 
852
- Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
853
- [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
870
+ Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
871
+ [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
854
872
 
855
- - @atlaskit/docs@8.3.2
856
- - @atlaskit/visual-regression@0.1.9
857
- - @atlaskit/analytics-next@6.3.5
858
- - @atlaskit/button@13.3.7
859
- - @atlaskit/form@7.1.2
860
- - @atlaskit/icon@20.0.1
861
- - @atlaskit/section-message@4.1.5
862
- - @atlaskit/theme@9.5.1
873
+ - @atlaskit/docs@8.3.2
874
+ - @atlaskit/visual-regression@0.1.9
875
+ - @atlaskit/analytics-next@6.3.5
876
+ - @atlaskit/button@13.3.7
877
+ - @atlaskit/form@7.1.2
878
+ - @atlaskit/icon@20.0.1
879
+ - @atlaskit/section-message@4.1.5
880
+ - @atlaskit/theme@9.5.1
863
881
 
864
882
  ## 10.1.6
865
883
 
866
884
  ### Patch Changes
867
885
 
868
- - Updated dependencies
869
- [c0102a3ea2](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0102a3ea2):
870
- - @atlaskit/icon@20.0.0
871
- - @atlaskit/form@7.1.1
872
- - @atlaskit/section-message@4.1.4
873
- - @atlaskit/docs@8.3.1
874
- - @atlaskit/button@13.3.6
886
+ - Updated dependencies
887
+ [c0102a3ea2](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0102a3ea2):
888
+ - @atlaskit/icon@20.0.0
889
+ - @atlaskit/form@7.1.1
890
+ - @atlaskit/section-message@4.1.4
891
+ - @atlaskit/docs@8.3.1
892
+ - @atlaskit/button@13.3.6
875
893
 
876
894
  ## 10.1.5
877
895
 
878
896
  ### Patch Changes
879
897
 
880
- - [patch][4a223473c5](https://bitbucket.org/atlassian/atlassian-frontend/commits/4a223473c5):
898
+ - [patch][4a223473c5](https://bitbucket.org/atlassian/atlassian-frontend/commits/4a223473c5):
881
899
 
882
- Removes babel/runtime from dependencies. Users should see a smaller bundlesize as a result-
883
- [patch][6a8bc6f866](https://bitbucket.org/atlassian/atlassian-frontend/commits/6a8bc6f866):
900
+ Removes babel/runtime from dependencies. Users should see a smaller bundlesize as a result-
901
+ [patch][6a8bc6f866](https://bitbucket.org/atlassian/atlassian-frontend/commits/6a8bc6f866):
884
902
 
885
- Fixes an issue where focus rings and borders were not appearing as expected on some checkboxes-
886
- Updated dependencies
887
- [28f8f0e089](https://bitbucket.org/atlassian/atlassian-frontend/commits/28f8f0e089):
903
+ Fixes an issue where focus rings and borders were not appearing as expected on some checkboxes-
904
+ Updated dependencies
905
+ [28f8f0e089](https://bitbucket.org/atlassian/atlassian-frontend/commits/28f8f0e089):
888
906
 
889
- - Updated dependencies
890
- [82747f2922](https://bitbucket.org/atlassian/atlassian-frontend/commits/82747f2922):
891
- - Updated dependencies
892
- [4a223473c5](https://bitbucket.org/atlassian/atlassian-frontend/commits/4a223473c5):
893
- - @atlaskit/icon@19.1.0
894
- - @atlaskit/theme@9.5.0
895
- - @atlaskit/button@13.3.5
896
- - @atlaskit/section-message@4.1.3
907
+ - Updated dependencies
908
+ [82747f2922](https://bitbucket.org/atlassian/atlassian-frontend/commits/82747f2922):
909
+ - Updated dependencies
910
+ [4a223473c5](https://bitbucket.org/atlassian/atlassian-frontend/commits/4a223473c5):
911
+ - @atlaskit/icon@19.1.0
912
+ - @atlaskit/theme@9.5.0
913
+ - @atlaskit/button@13.3.5
914
+ - @atlaskit/section-message@4.1.3
897
915
 
898
916
  ## 10.1.4
899
917
 
900
918
  ### Patch Changes
901
919
 
902
- - [patch][24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
920
+ - [patch][24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
903
921
 
904
- Form has been converted to Typescript. TypeScript consumers will now get static type safety.
905
- Flow types are no longer provided. No API changes.-
906
- [patch][24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
922
+ Form has been converted to Typescript. TypeScript consumers will now get static type safety. Flow
923
+ types are no longer provided. No API changes.-
924
+ [patch][24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
907
925
 
908
- fixes disabled checkbox not having correct cursor when hovering over icons- Updated dependencies
909
- [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
926
+ fixes disabled checkbox not having correct cursor when hovering over icons- Updated dependencies
927
+ [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
910
928
 
911
- - Updated dependencies
912
- [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
913
- - Updated dependencies
914
- [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
915
- - Updated dependencies
916
- [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
917
- - @atlaskit/analytics-next@6.3.3
918
- - @atlaskit/form@7.0.0
929
+ - Updated dependencies
930
+ [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
931
+ - Updated dependencies
932
+ [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
933
+ - Updated dependencies
934
+ [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
935
+ - @atlaskit/analytics-next@6.3.3
936
+ - @atlaskit/form@7.0.0
919
937
 
920
938
  ## 10.1.3
921
939
 
922
940
  ### Patch Changes
923
941
 
924
- - [patch][d222c2b987](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d222c2b987):
942
+ - [patch][d222c2b987](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d222c2b987):
925
943
 
926
- Theme has been converted to Typescript. Typescript consumers will now get static type safety.
927
- Flow types are no longer provided.
944
+ Theme has been converted to Typescript. Typescript consumers will now get static type safety. Flow
945
+ types are no longer provided.
928
946
 
929
- ### Breaking
947
+ ### Breaking
930
948
 
931
- ** getTokens props changes ** When defining the value function passed into a ThemeProvider, the
932
- getTokens parameter cannot be called without props; if no props are provided an empty object
933
- `{}` must be passed in:
949
+ ** getTokens props changes ** When defining the value function passed into a ThemeProvider, the
950
+ getTokens parameter cannot be called without props; if no props are provided an empty object `{}`
951
+ must be passed in:
934
952
 
935
- ```javascript
936
- <CustomTheme.Provider
937
- value={t => ({ ...t(), backgroundColor: '#333'})}
938
- >
939
- ```
953
+ ```javascript
954
+ <CustomTheme.Provider
955
+ value={t => ({ ...t(), backgroundColor: '#333'})}
956
+ >
957
+ ```
940
958
 
941
- becomes:
959
+ becomes:
942
960
 
943
- ```javascript
944
- <CustomTheme.Provider
945
- value={t => ({ ...t({}), backgroundColor: '#333'})}
946
- >
947
- ```
961
+ ```javascript
962
+ <CustomTheme.Provider
963
+ value={t => ({ ...t({}), backgroundColor: '#333'})}
964
+ >
965
+ ```
948
966
 
949
- ** Color palette changes ** Color palettes have been moved into their own file. Users will need
950
- to update imports from this:
967
+ ** Color palette changes ** Color palettes have been moved into their own file. Users will need to
968
+ update imports from this:
951
969
 
952
- ```javascript
953
- import { colors } from '@atlaskit/theme';
970
+ ```javascript
971
+ import { colors } from '@atlaskit/theme';
954
972
 
955
- colors.colorPalette('8');
956
- ```
973
+ colors.colorPalette('8');
974
+ ```
957
975
 
958
- to this:
976
+ to this:
959
977
 
960
- ```javascript
961
- import { colorPalette } from '@atlaskit/theme';
978
+ ```javascript
979
+ import { colorPalette } from '@atlaskit/theme';
962
980
 
963
- colorPalette.colorPalette('8');
964
- ```
981
+ colorPalette.colorPalette('8');
982
+ ```
965
983
 
966
- or for multi entry-point users:
984
+ or for multi entry-point users:
967
985
 
968
- ```javascript
969
- import * as colors from '@atlaskit/theme/colors';
986
+ ```javascript
987
+ import * as colors from '@atlaskit/theme/colors';
970
988
 
971
- colors.colorPalette('8');
972
- ```
989
+ colors.colorPalette('8');
990
+ ```
973
991
 
974
- to this:
992
+ to this:
975
993
 
976
- ```javascript
977
- import * as colorPalettes from '@atlaskit/theme/color-palette';
994
+ ```javascript
995
+ import * as colorPalettes from '@atlaskit/theme/color-palette';
978
996
 
979
- colorPalettes.colorPalette('8');
980
- ```
997
+ colorPalettes.colorPalette('8');
998
+ ```
981
999
 
982
1000
  ## 10.1.2
983
1001
 
984
1002
  ### Patch Changes
985
1003
 
986
- - [patch][35d2229b2a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/35d2229b2a):
1004
+ - [patch][35d2229b2a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/35d2229b2a):
987
1005
 
988
- Adding missing license to packages and update to Copyright 2019 Atlassian Pty Ltd.
1006
+ Adding missing license to packages and update to Copyright 2019 Atlassian Pty Ltd.
989
1007
 
990
1008
  ## 10.1.1
991
1009
 
992
1010
  ### Patch Changes
993
1011
 
994
- - [patch][a2d0043716](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a2d0043716):
1012
+ - [patch][a2d0043716](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a2d0043716):
995
1013
 
996
- Updated version of analytics-next to fix potential incompatibilities with TS 3.6
1014
+ Updated version of analytics-next to fix potential incompatibilities with TS 3.6
997
1015
 
998
1016
  ## 10.1.0
999
1017
 
1000
1018
  ### Minor Changes
1001
1019
 
1002
- - [minor][f22f6e1e4f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f22f6e1e4f):
1020
+ - [minor][f22f6e1e4f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f22f6e1e4f):
1003
1021
 
1004
- Adding an optional prop `testId` that will set the attribute value `data-testid`. It will help
1005
- products to write better integration and end to end tests.
1022
+ Adding an optional prop `testId` that will set the attribute value `data-testid`. It will help
1023
+ products to write better integration and end to end tests.
1006
1024
 
1007
1025
  ## 10.0.0
1008
1026
 
1009
1027
  ### Major Changes
1010
1028
 
1011
- - [major][97bab7fd28](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/97bab7fd28):
1029
+ - [major][97bab7fd28](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/97bab7fd28):
1012
1030
 
1013
- `@atlaskit/checkbox` **10.x** includes the following changes:
1031
+ `@atlaskit/checkbox` **10.x** includes the following changes:
1014
1032
 
1015
- - Replaced previous theme implementation with new `@atlaskit/theme` v2 implementation
1016
- - Please read more about this implementation in the
1017
- [theming guide](https://atlaskit.atlassian.com/packages/core/theme/docs/theming-guide)
1018
- - Added `overrides` prop which enables targeted customisations of key components in the
1019
- @atlaskit/checkbox package.
1020
- - Please read more about this implementation in the
1021
- [overrides guide](https://atlaskit.atlassian.com/packages/core/theme/docs/overrides-guide)
1033
+ - Replaced previous theme implementation with new `@atlaskit/theme` v2 implementation
1034
+ - Please read more about this implementation in the
1035
+ [theming guide](https://atlaskit.atlassian.com/packages/core/theme/docs/theming-guide)
1036
+ - Added `overrides` prop which enables targeted customisations of key components in the
1037
+ @atlaskit/checkbox package.
1038
+ - Please read more about this implementation in the
1039
+ [overrides guide](https://atlaskit.atlassian.com/packages/core/theme/docs/overrides-guide)
1022
1040
 
1023
- ### Breaking Changes
1041
+ ### Breaking Changes
1024
1042
 
1025
- **HiddenCheckbox and spread props**
1043
+ **HiddenCheckbox and spread props**
1026
1044
 
1027
- Passing props to the `<Checkbox/>` component for them to be spread onto the underlying
1028
- `<HiddenCheckbox/>` component is now **no longer possible**. `@atlaskit/checkbox` still supports
1029
- passing props down to the `<HiddenCheckbox/>` component, however we've opted to make this
1030
- behaviour more explicit.
1045
+ Passing props to the `<Checkbox/>` component for them to be spread onto the underlying
1046
+ `<HiddenCheckbox/>` component is now **no longer possible**. `@atlaskit/checkbox` still supports
1047
+ passing props down to the `<HiddenCheckbox/>` component, however we've opted to make this
1048
+ behaviour more explicit.
1031
1049
 
1032
- Whereas previously you would do this:
1050
+ Whereas previously you would do this:
1033
1051
 
1034
- ```js
1035
- <Checkbox
1036
- ...supportedCheckboxProps
1037
- 'data-testid'='test-checkbox'
1038
- />
1039
- ```
1052
+ ```js
1053
+ <Checkbox
1054
+ ...supportedCheckboxProps
1055
+ 'data-testid'='test-checkbox'
1056
+ />
1057
+ ```
1040
1058
 
1041
- Now you would leverage the overrides prop to pass these props down to the `<HiddenCheckbox/>`
1042
- component like so:
1059
+ Now you would leverage the overrides prop to pass these props down to the `<HiddenCheckbox/>`
1060
+ component like so:
1043
1061
 
1044
- ```js
1045
- <Checkbox
1046
- ...supportedCheckboxProps
1047
- overrides={{
1048
- HiddenCheckbox:{
1049
- attributesFn: () => ({ 'data-testid': 'test-checkbox' })
1050
- }
1051
- }}
1052
- />
1053
- ```
1062
+ ```js
1063
+ <Checkbox
1064
+ ...supportedCheckboxProps
1065
+ overrides={{
1066
+ HiddenCheckbox:{
1067
+ attributesFn: () => ({ 'data-testid': 'test-checkbox' })
1068
+ }
1069
+ }}
1070
+ />
1071
+ ```
1054
1072
 
1055
1073
  ## 9.0.9
1056
1074
 
1057
1075
  ### Patch Changes
1058
1076
 
1059
- - [patch][097b696613](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/097b696613):
1077
+ - [patch][097b696613](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/097b696613):
1060
1078
 
1061
- Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving
1062
- non-relative imports as relative imports
1079
+ Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving
1080
+ non-relative imports as relative imports
1063
1081
 
1064
1082
  ## 9.0.8
1065
1083
 
1066
1084
  ### Patch Changes
1067
1085
 
1068
- - [patch][ecca4d1dbb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ecca4d1dbb):
1086
+ - [patch][ecca4d1dbb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ecca4d1dbb):
1069
1087
 
1070
- Upgraded Typescript to 3.3.x
1088
+ Upgraded Typescript to 3.3.x
1071
1089
 
1072
1090
  ## 9.0.7
1073
1091
 
1074
1092
  ### Patch Changes
1075
1093
 
1076
- - [patch][708028db86](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/708028db86):
1094
+ - [patch][708028db86](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/708028db86):
1077
1095
 
1078
- Change all the imports to theme in Core to use multi entry points
1096
+ Change all the imports to theme in Core to use multi entry points
1079
1097
 
1080
1098
  ## 9.0.6
1081
1099
 
1082
1100
  ### Patch Changes
1083
1101
 
1084
- - [patch][de35ce8c67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/de35ce8c67):
1102
+ - [patch][de35ce8c67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/de35ce8c67):
1085
1103
 
1086
- Updates component maintainers
1104
+ Updates component maintainers
1087
1105
 
1088
1106
  ## 9.0.5
1089
1107
 
1090
1108
  ### Patch Changes
1091
1109
 
1092
- - [patch][926b43142b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/926b43142b):
1110
+ - [patch][926b43142b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/926b43142b):
1093
1111
 
1094
- Analytics-next has been converted to Typescript. Typescript consumers will now get static type
1095
- safety. Flow types are no longer provided. No behavioural changes.
1112
+ Analytics-next has been converted to Typescript. Typescript consumers will now get static type
1113
+ safety. Flow types are no longer provided. No behavioural changes.
1096
1114
 
1097
- **Breaking changes**
1115
+ **Breaking changes**
1098
1116
 
1099
- - `withAnalyticsForSumTypeProps` alias has been removed, please use `withAnalyticsEvents`
1100
- - `AnalyticsContextWrappedComp` alias has been removed, please use `withAnalyticsContext`
1117
+ - `withAnalyticsForSumTypeProps` alias has been removed, please use `withAnalyticsEvents`
1118
+ - `AnalyticsContextWrappedComp` alias has been removed, please use `withAnalyticsContext`
1101
1119
 
1102
- **Breaking changes to TypeScript annotations**
1120
+ **Breaking changes to TypeScript annotations**
1103
1121
 
1104
- - `withAnalyticsEvents` now infers proptypes automatically, consumers no longer need to
1105
- provide props as a generic type.
1106
- - `withAnalyticsContext` now infers proptypes automatically, consumers no longer need to
1107
- provide props as a generic type.
1108
- - Type `WithAnalyticsEventProps` has been renamed to `WithAnalyticsEventsProps` to match
1109
- source code
1110
- - Type `CreateUIAnalyticsEventSignature` has been renamed to `CreateUIAnalyticsEvent` to match
1111
- source code
1112
- - Type `UIAnalyticsEventHandlerSignature` has been renamed to `UIAnalyticsEventHandler` to
1113
- match source code
1114
- - Type `AnalyticsEventsPayload` has been renamed to `AnalyticsEventPayload`
1115
- - Type `ObjectType` has been removed, please use `Record<string, any>` or `[key: string]: any`
1116
- - Type `UIAnalyticsEventInterface` has been removed, please use `UIAnalyticsEvent`
1117
- - Type `AnalyticsEventInterface` has been removed, please use `AnalyticsEvent`
1118
- - Type `CreateAndFireEventFunction` removed and should now be inferred by TypeScript
1119
- - Type `AnalyticsEventUpdater` removed and should now be inferred by TypeScript
1122
+ - `withAnalyticsEvents` now infers proptypes automatically, consumers no longer need to provide
1123
+ props as a generic type.
1124
+ - `withAnalyticsContext` now infers proptypes automatically, consumers no longer need to provide
1125
+ props as a generic type.
1126
+ - Type `WithAnalyticsEventProps` has been renamed to `WithAnalyticsEventsProps` to match source
1127
+ code
1128
+ - Type `CreateUIAnalyticsEventSignature` has been renamed to `CreateUIAnalyticsEvent` to match
1129
+ source code
1130
+ - Type `UIAnalyticsEventHandlerSignature` has been renamed to `UIAnalyticsEventHandler` to match
1131
+ source code
1132
+ - Type `AnalyticsEventsPayload` has been renamed to `AnalyticsEventPayload`
1133
+ - Type `ObjectType` has been removed, please use `Record<string, any>` or `[key: string]: any`
1134
+ - Type `UIAnalyticsEventInterface` has been removed, please use `UIAnalyticsEvent`
1135
+ - Type `AnalyticsEventInterface` has been removed, please use `AnalyticsEvent`
1136
+ - Type `CreateAndFireEventFunction` removed and should now be inferred by TypeScript
1137
+ - Type `AnalyticsEventUpdater` removed and should now be inferred by TypeScript
1120
1138
 
1121
1139
  ## 9.0.4
1122
1140
 
1123
1141
  ### Patch Changes
1124
1142
 
1125
- - [patch][9f8ab1084b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9f8ab1084b):
1143
+ - [patch][9f8ab1084b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9f8ab1084b):
1126
1144
 
1127
- Consume analytics-next ts type definitions as an ambient declaration.
1145
+ Consume analytics-next ts type definitions as an ambient declaration.
1128
1146
 
1129
1147
  ## 9.0.3
1130
1148
 
1131
1149
  ### Patch Changes
1132
1150
 
1133
- - [patch][bbff8a7d87](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bbff8a7d87):
1151
+ - [patch][bbff8a7d87](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bbff8a7d87):
1134
1152
 
1135
- Fixes bug, missing version.json file
1153
+ Fixes bug, missing version.json file
1136
1154
 
1137
1155
  ## 9.0.2
1138
1156
 
1139
1157
  ### Patch Changes
1140
1158
 
1141
- - [patch][18dfac7332](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/18dfac7332):
1159
+ - [patch][18dfac7332](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/18dfac7332):
1142
1160
 
1143
- In this PR, we are:
1161
+ In this PR, we are:
1144
1162
 
1145
- - Re-introducing dist build folders
1146
- - Adding back cjs
1147
- - Replacing es5 by cjs and es2015 by esm
1148
- - Creating folders at the root for entry-points
1149
- - Removing the generation of the entry-points at the root Please see this
1150
- [ticket](https://product-fabric.atlassian.net/browse/BUILDTOOLS-118) or this
1151
- [page](https://hello.atlassian.net/wiki/spaces/FED/pages/452325500/Finishing+Atlaskit+multiple+entry+points)
1152
- for further details
1163
+ - Re-introducing dist build folders
1164
+ - Adding back cjs
1165
+ - Replacing es5 by cjs and es2015 by esm
1166
+ - Creating folders at the root for entry-points
1167
+ - Removing the generation of the entry-points at the root Please see this
1168
+ [ticket](https://product-fabric.atlassian.net/browse/BUILDTOOLS-118) or this
1169
+ [page](https://hello.atlassian.net/wiki/spaces/FED/pages/452325500/Finishing+Atlaskit+multiple+entry+points)
1170
+ for further details
1153
1171
 
1154
1172
  ## 9.0.1
1155
1173
 
1156
1174
  ### Patch Changes
1157
1175
 
1158
- - [patch][d0db01b410](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d0db01b410):
1176
+ - [patch][d0db01b410](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d0db01b410):
1159
1177
 
1160
- TypeScript users of withAnalyticsEvents and withAnalyticsContext are now required to provide
1161
- props as a generic type. This is so that TypeScript can correctly calculate the props and
1162
- defaultProps of the returned component.
1178
+ TypeScript users of withAnalyticsEvents and withAnalyticsContext are now required to provide props
1179
+ as a generic type. This is so that TypeScript can correctly calculate the props and defaultProps
1180
+ of the returned component.
1163
1181
 
1164
- Before:
1182
+ Before:
1165
1183
 
1166
- ```typescript
1167
- withAnalyticsEvents()(Button) as ComponentClass<Props>;
1168
- ```
1184
+ ```typescript
1185
+ withAnalyticsEvents()(Button) as ComponentClass<Props>;
1186
+ ```
1169
1187
 
1170
- After:
1188
+ After:
1171
1189
 
1172
- ```typescript
1173
- withAnalyticsEvents<Props>()(Button);
1174
- ```
1190
+ ```typescript
1191
+ withAnalyticsEvents<Props>()(Button);
1192
+ ```
1175
1193
 
1176
1194
  ## 9.0.0
1177
1195
 
1178
1196
  ### Major Changes
1179
1197
 
1180
- - [major][87a2638655](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/87a2638655):
1198
+ - [major][87a2638655](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/87a2638655):
1181
1199
 
1182
- Replaced `styled-components` with `emotion 10` as part of Atlaskit-wide conversion process.
1200
+ Replaced `styled-components` with `emotion 10` as part of Atlaskit-wide conversion process.
1183
1201
 
1184
- **No changes to styling or API**; only a breaking change if checkbox is being styled using the
1185
- styled-components `styled` function or via the styled-components theming library.
1202
+ **No changes to styling or API**; only a breaking change if checkbox is being styled using the
1203
+ styled-components `styled` function or via the styled-components theming library.
1186
1204
 
1187
1205
  ## 8.0.5
1188
1206
 
1189
- - Updated dependencies
1190
- [06326ef3f7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/06326ef3f7):
1191
- - @atlaskit/docs@8.1.3
1192
- - @atlaskit/button@13.0.9
1193
- - @atlaskit/form@6.1.1
1194
- - @atlaskit/section-message@4.0.5
1195
- - @atlaskit/icon@19.0.0
1207
+ - Updated dependencies
1208
+ [06326ef3f7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/06326ef3f7):
1209
+ - @atlaskit/docs@8.1.3
1210
+ - @atlaskit/button@13.0.9
1211
+ - @atlaskit/form@6.1.1
1212
+ - @atlaskit/section-message@4.0.5
1213
+ - @atlaskit/icon@19.0.0
1196
1214
 
1197
1215
  ## 8.0.4
1198
1216
 
1199
1217
  ### Patch Changes
1200
1218
 
1201
- - [patch][9c404c7c44](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c404c7c44):
1219
+ - [patch][9c404c7c44](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c404c7c44):
1202
1220
 
1203
- Using updated icons
1221
+ Using updated icons
1204
1222
 
1205
1223
  ## 8.0.3
1206
1224
 
1207
1225
  ### Patch Changes
1208
1226
 
1209
- - [patch][9c80ef7539](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c80ef7539):
1227
+ - [patch][9c80ef7539](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c80ef7539):
1210
1228
 
1211
- The update to node 10 reveals that unknown type is breaking the extract react types. I had to
1212
- replace unknown type by any
1229
+ The update to node 10 reveals that unknown type is breaking the extract react types. I had to
1230
+ replace unknown type by any
1213
1231
 
1214
1232
  ## 8.0.2
1215
1233
 
1216
- - Updated dependencies
1217
- [cfc3c8adb3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cfc3c8adb3):
1218
- - @atlaskit/docs@8.1.2
1219
- - @atlaskit/button@13.0.8
1220
- - @atlaskit/form@6.0.5
1221
- - @atlaskit/section-message@4.0.2
1222
- - @atlaskit/icon@18.0.0
1234
+ - Updated dependencies
1235
+ [cfc3c8adb3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cfc3c8adb3):
1236
+ - @atlaskit/docs@8.1.2
1237
+ - @atlaskit/button@13.0.8
1238
+ - @atlaskit/form@6.0.5
1239
+ - @atlaskit/section-message@4.0.2
1240
+ - @atlaskit/icon@18.0.0
1223
1241
 
1224
1242
  ## 8.0.1
1225
1243
 
1226
1244
  ### Patch Changes
1227
1245
 
1228
- - [patch][c67483c207](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c67483c207):
1246
+ - [patch][c67483c207](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c67483c207):
1229
1247
 
1230
- Fixed a scrollbar bug with checkboxes
1248
+ Fixed a scrollbar bug with checkboxes
1231
1249
 
1232
1250
  ## 8.0.0
1233
1251
 
1234
- - [major][70862830d6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/70862830d6):
1252
+ - [major][70862830d6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/70862830d6):
1235
1253
 
1236
- - Checkbox has been converted to Typescript. Typescript consumers will now get static type
1237
- safety. Flow types are no longer provided. No API or behavioural changes.
1254
+ - Checkbox has been converted to Typescript. Typescript consumers will now get static type safety.
1255
+ Flow types are no longer provided. No API or behavioural changes.
1238
1256
 
1239
1257
  ## 7.0.1
1240
1258
 
1241
- - Updated dependencies
1242
- [6dd86f5b07](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6dd86f5b07):
1243
- - @atlaskit/form@6.0.2
1244
- - @atlaskit/icon@17.1.1
1245
- - @atlaskit/theme@9.0.2
1246
- - @atlaskit/section-message@4.0.0
1259
+ - Updated dependencies
1260
+ [6dd86f5b07](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6dd86f5b07):
1261
+ - @atlaskit/form@6.0.2
1262
+ - @atlaskit/icon@17.1.1
1263
+ - @atlaskit/theme@9.0.2
1264
+ - @atlaskit/section-message@4.0.0
1247
1265
 
1248
1266
  ## 7.0.0
1249
1267
 
1250
- - [major][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
1268
+ - [major][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
1251
1269
 
1252
- - Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use
1253
- this package, please ensure you use at least this version of react and react-dom.
1270
+ - Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use
1271
+ this package, please ensure you use at least this version of react and react-dom.
1254
1272
 
1255
1273
  ## 6.0.4
1256
1274
 
1257
- - Updated dependencies
1258
- [9c0b4744be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0b4744be):
1259
- - @atlaskit/docs@7.0.3
1260
- - @atlaskit/button@12.0.3
1261
- - @atlaskit/form@5.2.7
1262
- - @atlaskit/icon@16.0.9
1263
- - @atlaskit/section-message@2.0.3
1264
- - @atlaskit/theme@8.1.7
1275
+ - Updated dependencies
1276
+ [9c0b4744be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0b4744be):
1277
+ - @atlaskit/docs@7.0.3
1278
+ - @atlaskit/button@12.0.3
1279
+ - @atlaskit/form@5.2.7
1280
+ - @atlaskit/icon@16.0.9
1281
+ - @atlaskit/section-message@2.0.3
1282
+ - @atlaskit/theme@8.1.7
1265
1283
 
1266
1284
  ## 6.0.3
1267
1285
 
1268
- - Updated dependencies
1269
- [1e826b2966](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e826b2966):
1270
- - @atlaskit/docs@7.0.2
1271
- - @atlaskit/analytics-next@4.0.3
1272
- - @atlaskit/form@5.2.5
1273
- - @atlaskit/icon@16.0.8
1274
- - @atlaskit/section-message@2.0.2
1275
- - @atlaskit/theme@8.1.6
1276
- - @atlaskit/button@12.0.0
1286
+ - Updated dependencies
1287
+ [1e826b2966](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e826b2966):
1288
+ - @atlaskit/docs@7.0.2
1289
+ - @atlaskit/analytics-next@4.0.3
1290
+ - @atlaskit/form@5.2.5
1291
+ - @atlaskit/icon@16.0.8
1292
+ - @atlaskit/section-message@2.0.2
1293
+ - @atlaskit/theme@8.1.6
1294
+ - @atlaskit/button@12.0.0
1277
1295
 
1278
1296
  ## 6.0.2
1279
1297
 
1280
- - [patch][98e11001ff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/98e11001ff):
1298
+ - [patch][98e11001ff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/98e11001ff):
1281
1299
 
1282
- - Removes duplicate babel-runtime dependency
1300
+ - Removes duplicate babel-runtime dependency
1283
1301
 
1284
1302
  ## 6.0.1
1285
1303
 
1286
- - Updated dependencies
1287
- [9d5cc39394](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d5cc39394):
1288
- - @atlaskit/docs@7.0.1
1289
- - @atlaskit/analytics-next@4.0.1
1290
- - @atlaskit/form@5.2.1
1291
- - @atlaskit/icon@16.0.5
1292
- - @atlaskit/section-message@2.0.1
1293
- - @atlaskit/theme@8.0.1
1294
- - @atlaskit/button@11.0.0
1304
+ - Updated dependencies
1305
+ [9d5cc39394](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d5cc39394):
1306
+ - @atlaskit/docs@7.0.1
1307
+ - @atlaskit/analytics-next@4.0.1
1308
+ - @atlaskit/form@5.2.1
1309
+ - @atlaskit/icon@16.0.5
1310
+ - @atlaskit/section-message@2.0.1
1311
+ - @atlaskit/theme@8.0.1
1312
+ - @atlaskit/button@11.0.0
1295
1313
 
1296
1314
  ## 6.0.0
1297
1315
 
1298
- - [major][76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
1316
+ - [major][76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
1299
1317
 
1300
- - Drop ES5 from all the flow modules
1318
+ - Drop ES5 from all the flow modules
1301
1319
 
1302
- ### Dropping CJS support in all @atlaskit packages
1320
+ ### Dropping CJS support in all @atlaskit packages
1303
1321
 
1304
- As a breaking change, all @atlaskit packages will be dropping cjs distributions and will only
1305
- distribute esm. This means all distributed code will be transpiled, but will still contain
1306
- `import` and `export` declarations.
1322
+ As a breaking change, all @atlaskit packages will be dropping cjs distributions and will only
1323
+ distribute esm. This means all distributed code will be transpiled, but will still contain
1324
+ `import` and `export` declarations.
1307
1325
 
1308
- The major reason for doing this is to allow us to support multiple entry points in packages,
1309
- e.g:
1326
+ The major reason for doing this is to allow us to support multiple entry points in packages, e.g:
1310
1327
 
1311
- ```js
1312
- import colors from `@atlaskit/theme/colors`;
1313
- ```
1328
+ ```js
1329
+ import colors from `@atlaskit/theme/colors`;
1330
+ ```
1314
1331
 
1315
- Previously this was sort of possible for consumers by doing something like:
1332
+ Previously this was sort of possible for consumers by doing something like:
1316
1333
 
1317
- ```js
1318
- import colors from `@atlaskit/theme/dist/esm/colors`;
1319
- ```
1334
+ ```js
1335
+ import colors from `@atlaskit/theme/dist/esm/colors`;
1336
+ ```
1320
1337
 
1321
- This has a couple of issues. 1, it treats the file system as API making internal refactors
1322
- harder, we have to worry about how consumers might be using things that aren't _actually_
1323
- supposed to be used. 2. We are unable to do this _internally_ in @atlaskit packages. This leads
1324
- to lots of packages bundling all of theme, just to use a single color, especially in situations
1325
- where tree shaking fails.
1338
+ This has a couple of issues. 1, it treats the file system as API making internal refactors harder,
1339
+ we have to worry about how consumers might be using things that aren't _actually_ supposed to be
1340
+ used. 2. We are unable to do this _internally_ in @atlaskit packages. This leads to lots of
1341
+ packages bundling all of theme, just to use a single color, especially in situations where tree
1342
+ shaking fails.
1326
1343
 
1327
- To support being able to use multiple entrypoints internally, we unfortunately cannot have
1328
- multiple distributions as they would need to have very different imports from of their own
1329
- internal dependencies.
1344
+ To support being able to use multiple entrypoints internally, we unfortunately cannot have
1345
+ multiple distributions as they would need to have very different imports from of their own
1346
+ internal dependencies.
1330
1347
 
1331
- ES Modules are widely supported by all modern bundlers and can be worked around in node
1332
- environments.
1348
+ ES Modules are widely supported by all modern bundlers and can be worked around in node
1349
+ environments.
1333
1350
 
1334
- We may choose to revisit this solution in the future if we find any unintended condequences, but
1335
- we see this as a pretty sane path forward which should lead to some major bundle size decreases,
1336
- saner API's and simpler package architecture.
1351
+ We may choose to revisit this solution in the future if we find any unintended condequences, but
1352
+ we see this as a pretty sane path forward which should lead to some major bundle size decreases,
1353
+ saner API's and simpler package architecture.
1337
1354
 
1338
- Please reach out to #fabric-build (if in Atlassian) or create an issue in
1339
- [Design System Support](https://ecosystem.atlassian.net/secure/CreateIssue.jspa?pid=24670) (for
1340
- external) if you have any questions or queries about this.
1355
+ Please reach out to #fabric-build (if in Atlassian) or create an issue in
1356
+ [Design System Support](https://ecosystem.atlassian.net/secure/CreateIssue.jspa?pid=24670) (for
1357
+ external) if you have any questions or queries about this.
1341
1358
 
1342
1359
  ## 5.0.14
1343
1360
 
1344
- - [patch][c0ad531a70](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c0ad531a70):
1361
+ - [patch][c0ad531a70](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c0ad531a70):
1345
1362
 
1346
- - Added test to make use props are passed down to hidden input
1363
+ - Added test to make use props are passed down to hidden input
1347
1364
 
1348
1365
  ## 5.0.13
1349
1366
 
1350
- - [patch][3ae465b6f0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3ae465b6f0):
1367
+ - [patch][3ae465b6f0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3ae465b6f0):
1351
1368
 
1352
- - fix for checkbox logging error on mount
1369
+ - fix for checkbox logging error on mount
1353
1370
 
1354
1371
  ## 5.0.12
1355
1372
 
1356
- - [patch][b0153ee6c9](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b0153ee6c9):
1373
+ - [patch][b0153ee6c9](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b0153ee6c9):
1357
1374
 
1358
- - Enabled the isRequired validation on checkbox and added the asterisk after the checkbox
1359
- label to signify the required field
1375
+ - Enabled the isRequired validation on checkbox and added the asterisk after the checkbox label to
1376
+ signify the required field
1360
1377
 
1361
1378
  ## 5.0.11
1362
1379
 
1363
- - Updated dependencies
1364
- [d7ef59d432](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d7ef59d432):
1365
- - @atlaskit/docs@6.0.1
1366
- - @atlaskit/button@10.1.2
1367
- - @atlaskit/section-message@1.0.16
1368
- - @atlaskit/icon@16.0.0
1380
+ - Updated dependencies
1381
+ [d7ef59d432](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d7ef59d432):
1382
+ - @atlaskit/docs@6.0.1
1383
+ - @atlaskit/button@10.1.2
1384
+ - @atlaskit/section-message@1.0.16
1385
+ - @atlaskit/icon@16.0.0
1369
1386
 
1370
1387
  ## 5.0.10
1371
1388
 
1372
- - [patch][fad28be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/fad28be):
1389
+ - [patch][fad28be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/fad28be):
1373
1390
 
1374
- - Fixing invalid type for checkbox id prop
1391
+ - Fixing invalid type for checkbox id prop
1375
1392
 
1376
1393
  ## 5.0.9
1377
1394
 
1378
- - Updated dependencies [58b84fa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/58b84fa):
1379
- - @atlaskit/analytics-next@3.1.2
1380
- - @atlaskit/button@10.1.1
1381
- - @atlaskit/icon@15.0.2
1382
- - @atlaskit/section-message@1.0.14
1383
- - @atlaskit/theme@7.0.1
1384
- - @atlaskit/docs@6.0.0
1395
+ - Updated dependencies [58b84fa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/58b84fa):
1396
+ - @atlaskit/analytics-next@3.1.2
1397
+ - @atlaskit/button@10.1.1
1398
+ - @atlaskit/icon@15.0.2
1399
+ - @atlaskit/section-message@1.0.14
1400
+ - @atlaskit/theme@7.0.1
1401
+ - @atlaskit/docs@6.0.0
1385
1402
 
1386
1403
  ## 5.0.8
1387
1404
 
1388
- - Updated dependencies [d13242d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d13242d):
1389
- - @atlaskit/docs@5.2.3
1390
- - @atlaskit/button@10.0.4
1391
- - @atlaskit/icon@15.0.1
1392
- - @atlaskit/section-message@1.0.13
1393
- - @atlaskit/theme@7.0.0
1405
+ - Updated dependencies [d13242d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d13242d):
1406
+ - @atlaskit/docs@5.2.3
1407
+ - @atlaskit/button@10.0.4
1408
+ - @atlaskit/icon@15.0.1
1409
+ - @atlaskit/section-message@1.0.13
1410
+ - @atlaskit/theme@7.0.0
1394
1411
 
1395
1412
  ## 5.0.7
1396
1413
 
1397
- - Updated dependencies [ab9b69c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ab9b69c):
1398
- - @atlaskit/docs@5.2.2
1399
- - @atlaskit/button@10.0.1
1400
- - @atlaskit/section-message@1.0.12
1401
- - @atlaskit/icon@15.0.0
1414
+ - Updated dependencies [ab9b69c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ab9b69c):
1415
+ - @atlaskit/docs@5.2.2
1416
+ - @atlaskit/button@10.0.1
1417
+ - @atlaskit/section-message@1.0.12
1418
+ - @atlaskit/icon@15.0.0
1402
1419
 
1403
1420
  ## 5.0.6
1404
1421
 
1405
- - Updated dependencies [6998f11](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6998f11):
1406
- - @atlaskit/docs@5.2.1
1407
- - @atlaskit/analytics-next@3.1.1
1408
- - @atlaskit/icon@14.6.1
1409
- - @atlaskit/section-message@1.0.11
1410
- - @atlaskit/theme@6.2.1
1411
- - @atlaskit/button@10.0.0
1422
+ - Updated dependencies [6998f11](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6998f11):
1423
+ - @atlaskit/docs@5.2.1
1424
+ - @atlaskit/analytics-next@3.1.1
1425
+ - @atlaskit/icon@14.6.1
1426
+ - @atlaskit/section-message@1.0.11
1427
+ - @atlaskit/theme@6.2.1
1428
+ - @atlaskit/button@10.0.0
1412
1429
 
1413
1430
  ## 5.0.5
1414
1431
 
1415
- - [patch] Upgrade guide & minor flow type fixes
1416
- [0be287d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0be287d)
1432
+ - [patch] Upgrade guide & minor flow type fixes
1433
+ [0be287d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0be287d)
1417
1434
 
1418
1435
  ## 5.0.4
1419
1436
 
1420
- - [patch] Adds missing implicit @babel/runtime dependency
1421
- [b71751b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b71751b)
1437
+ - [patch] Adds missing implicit @babel/runtime dependency
1438
+ [b71751b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b71751b)
1422
1439
 
1423
1440
  ## 5.0.3
1424
1441
 
1425
- - [patch] Fixed bug where checkbox would use state isChecked value when passing false to isChecked
1426
- as props [eaf8d16](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/eaf8d16)
1442
+ - [patch] Fixed bug where checkbox would use state isChecked value when passing false to isChecked
1443
+ as props [eaf8d16](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/eaf8d16)
1427
1444
 
1428
1445
  ## 5.0.2
1429
1446
 
1430
- - [patch] Updated dependencies
1431
- [65c6514](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/65c6514)
1432
- - @atlaskit/docs@5.0.8
1433
- - @atlaskit/button@9.0.13
1434
- - @atlaskit/icon@14.0.0
1447
+ - [patch] Updated dependencies
1448
+ [65c6514](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/65c6514)
1449
+ - @atlaskit/docs@5.0.8
1450
+ - @atlaskit/button@9.0.13
1451
+ - @atlaskit/icon@14.0.0
1435
1452
 
1436
1453
  ## 5.0.1
1437
1454
 
1438
- - [patch] Checkbox now only fires onChange once
1439
- [c78e59e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c78e59e)
1455
+ - [patch] Checkbox now only fires onChange once
1456
+ [c78e59e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c78e59e)
1440
1457
 
1441
1458
  ## 5.0.0
1442
1459
 
1443
- - [major] Checkbox refactored to remove the need for CheckboxStateless
1444
- [80e1925](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/80e1925)
1460
+ - [major] Checkbox refactored to remove the need for CheckboxStateless
1461
+ [80e1925](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/80e1925)
1445
1462
 
1446
- `@atlaskit/checkbox` 5.x is part of an ongoing body of work to normalize atlaskit form
1447
- components. There are a few breaking changes you need to be aware of in upgrading from 4.x to
1448
- 5.x.
1463
+ `@atlaskit/checkbox` 5.x is part of an ongoing body of work to normalize atlaskit form components.
1464
+ There are a few breaking changes you need to be aware of in upgrading from 4.x to 5.x.
1449
1465
 
1450
- **Exports**
1466
+ **Exports**
1451
1467
 
1452
- `@atlaskit/checkbox` no longer specifies the Checkbox component as the default export. Moreover
1453
- the following changes have been made to exports from the `@atlaskit/checkbox` package.
1468
+ `@atlaskit/checkbox` no longer specifies the Checkbox component as the default export. Moreover
1469
+ the following changes have been made to exports from the `@atlaskit/checkbox` package.
1454
1470
 
1455
- ### Checkbox
1471
+ ### Checkbox
1456
1472
 
1457
- Checkbox is now a named export of the `@atlaskit/checkbox`package. Please import it as below.
1473
+ Checkbox is now a named export of the `@atlaskit/checkbox`package. Please import it as below.
1458
1474
 
1459
- ```
1460
- import { Checkbox } from @atlaskit/checkbox;
1461
- ```
1475
+ ```
1476
+ import { Checkbox } from @atlaskit/checkbox;
1477
+ ```
1462
1478
 
1463
- The Checkbox component is now a conditionally controlled component, the `isChecked` prop is
1464
- exposed for users to control the checked state of the component. This was the sole reason for
1465
- having the `CheckboxStateless` component in pre 5.x, and as a result leveraging this pattern
1466
- allows us to do away with the `CheckboxStateless` component.
1479
+ The Checkbox component is now a conditionally controlled component, the `isChecked` prop is
1480
+ exposed for users to control the checked state of the component. This was the sole reason for
1481
+ having the `CheckboxStateless` component in pre 5.x, and as a result leveraging this pattern
1482
+ allows us to do away with the `CheckboxStateless` component.
1467
1483
 
1468
- To let the component take care of checked state, leave the `isChecked` prop unset, or explicitly
1469
- set it to undefined.
1484
+ To let the component take care of checked state, leave the `isChecked` prop unset, or explicitly
1485
+ set it to undefined.
1470
1486
 
1471
- Additionally, one can control the initial checked state of a component by setting the
1472
- `defaultChecked` (boolean) prop. This is used as the initial value of the internal `isChecked`
1473
- property in state. This value will be overridden by additional user interactions with the
1474
- component.
1487
+ Additionally, one can control the initial checked state of a component by setting the
1488
+ `defaultChecked` (boolean) prop. This is used as the initial value of the internal `isChecked`
1489
+ property in state. This value will be overridden by additional user interactions with the
1490
+ component.
1475
1491
 
1476
- ### CheckboxStateless - deprecated
1492
+ ### CheckboxStateless - deprecated
1477
1493
 
1478
- This component has been deprecated in favor of the conditionally controlled component pattern
1479
- specified above.\*\*
1494
+ This component has been deprecated in favor of the conditionally controlled component pattern
1495
+ specified above.\*\*
1480
1496
 
1481
- ### CheckboxGroup - deprecated:
1497
+ ### CheckboxGroup - deprecated:
1482
1498
 
1483
- `@atlaskit/checkbox` no longer exports a CheckboxGroup component. It has been removed for the
1484
- following reasons:
1499
+ `@atlaskit/checkbox` no longer exports a CheckboxGroup component. It has been removed for the
1500
+ following reasons:
1485
1501
 
1486
- - It was really a thin wrapper enforcing very basic styling opinions over its children
1487
- (display: flex, flex: column).
1488
- - The existing styling blocks the horizontal display of checkbox group children.
1502
+ - It was really a thin wrapper enforcing very basic styling opinions over its children (display:
1503
+ flex, flex: column).
1504
+ - The existing styling blocks the horizontal display of checkbox group children.
1489
1505
 
1490
- **Prop Changes**
1506
+ **Prop Changes**
1491
1507
 
1492
- - `<Checkbox/>` - `initiallyChecked` renamed to `defaultChecked`
1493
- - `<Checkbox/>` - `label` prop now accepts type Node instead of type string.
1494
- - `<Checkbox/>` - `isChecked` is now an optional boolean prop on the Checkbox component.
1508
+ - `<Checkbox/>` - `initiallyChecked` renamed to `defaultChecked`
1509
+ - `<Checkbox/>` - `label` prop now accepts type Node instead of type string.
1510
+ - `<Checkbox/>` - `isChecked` is now an optional boolean prop on the Checkbox component.
1495
1511
 
1496
1512
  ## 4.0.6
1497
1513
 
1498
- - [patch] Adds sideEffects: false to allow proper tree shaking
1499
- [b5d6d04](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b5d6d04)
1514
+ - [patch] Adds sideEffects: false to allow proper tree shaking
1515
+ [b5d6d04](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b5d6d04)
1500
1516
 
1501
1517
  ## 4.0.4
1502
1518
 
1503
- - [patch] Updated dependencies
1504
- [df22ad8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/df22ad8)
1505
- - @atlaskit/theme@6.0.0
1506
- - @atlaskit/icon@13.2.5
1507
- - @atlaskit/button@9.0.6
1508
- - @atlaskit/docs@5.0.6
1519
+ - [patch] Updated dependencies
1520
+ [df22ad8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/df22ad8)
1521
+ - @atlaskit/theme@6.0.0
1522
+ - @atlaskit/icon@13.2.5
1523
+ - @atlaskit/button@9.0.6
1524
+ - @atlaskit/docs@5.0.6
1509
1525
 
1510
1526
  ## 4.0.3
1511
1527
 
1512
- - [patch] update the dependency of react-dom to 16.4.2 due to vulnerability in previous versions
1513
- read https://reactjs.org/blog/2018/08/01/react-v-16-4-2.html for details
1514
- [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
1515
- - [none] Updated dependencies
1516
- [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
1517
- - @atlaskit/analytics-next@3.0.4
1518
- - @atlaskit/button@9.0.5
1519
- - @atlaskit/theme@5.1.3
1520
- - @atlaskit/icon@13.2.4
1528
+ - [patch] update the dependency of react-dom to 16.4.2 due to vulnerability in previous versions
1529
+ read https://reactjs.org/blog/2018/08/01/react-v-16-4-2.html for details
1530
+ [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
1531
+ - [none] Updated dependencies
1532
+ [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
1533
+ - @atlaskit/analytics-next@3.0.4
1534
+ - @atlaskit/button@9.0.5
1535
+ - @atlaskit/theme@5.1.3
1536
+ - @atlaskit/icon@13.2.4
1521
1537
 
1522
1538
  ## 4.0.2
1523
1539
 
1524
- - [patch] Updated dependencies
1525
- [acd86a1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/acd86a1)
1526
- - @atlaskit/icon@13.2.2
1527
- - @atlaskit/button@9.0.4
1528
- - @atlaskit/theme@5.1.2
1529
- - @atlaskit/analytics-next@3.0.3
1530
- - @atlaskit/docs@5.0.2
1540
+ - [patch] Updated dependencies
1541
+ [acd86a1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/acd86a1)
1542
+ - @atlaskit/icon@13.2.2
1543
+ - @atlaskit/button@9.0.4
1544
+ - @atlaskit/theme@5.1.2
1545
+ - @atlaskit/analytics-next@3.0.3
1546
+ - @atlaskit/docs@5.0.2
1531
1547
 
1532
1548
  ## 4.0.1
1533
1549
 
1534
- - [patch] Add a SSR test for every package, add react-dom and build-utils in devDependencies
1535
- [7e331b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e331b5)
1536
- - [none] Updated dependencies
1537
- [7e331b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e331b5)
1538
- - @atlaskit/analytics-next@3.0.2
1539
- - @atlaskit/button@9.0.3
1540
- - @atlaskit/theme@5.1.1
1541
- - @atlaskit/icon@13.2.1
1550
+ - [patch] Add a SSR test for every package, add react-dom and build-utils in devDependencies
1551
+ [7e331b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e331b5)
1552
+ - [none] Updated dependencies
1553
+ [7e331b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e331b5)
1554
+ - @atlaskit/analytics-next@3.0.2
1555
+ - @atlaskit/button@9.0.3
1556
+ - @atlaskit/theme@5.1.1
1557
+ - @atlaskit/icon@13.2.1
1542
1558
 
1543
1559
  ## 4.0.0
1544
1560
 
1545
- - [major] Provides analytics for common component interations. See the
1546
- [Instrumented Components](https://atlaskit.atlassian.com/packages/core/analytics-next) section
1547
- for more details. If you are using enzyme for testing you will have to use
1548
- [our forked version of the library](https://atlaskit.atlassian.com/docs/guides/testing#we-use-a-forked-version-of-enzyme).
1549
- [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
1550
- - [major] Updates to React ^16.4.0
1551
- [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
1552
- - [major] Updated dependencies
1553
- [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
1554
- - @atlaskit/analytics-next@3.0.0
1555
- - @atlaskit/button@9.0.0
1556
- - @atlaskit/theme@5.0.0
1557
- - @atlaskit/docs@5.0.0
1558
- - @atlaskit/icon@13.0.0
1559
- - [major] Updated dependencies
1560
- [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
1561
- - @atlaskit/analytics-next@3.0.0
1562
- - @atlaskit/button@9.0.0
1563
- - @atlaskit/theme@5.0.0
1564
- - @atlaskit/docs@5.0.0
1565
- - @atlaskit/icon@13.0.0
1561
+ - [major] Provides analytics for common component interations. See the
1562
+ [Instrumented Components](https://atlaskit.atlassian.com/packages/core/analytics-next) section for
1563
+ more details. If you are using enzyme for testing you will have to use
1564
+ [our forked version of the library](https://atlaskit.atlassian.com/docs/guides/testing#we-use-a-forked-version-of-enzyme).
1565
+ [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
1566
+ - [major] Updates to React ^16.4.0
1567
+ [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
1568
+ - [major] Updated dependencies
1569
+ [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
1570
+ - @atlaskit/analytics-next@3.0.0
1571
+ - @atlaskit/button@9.0.0
1572
+ - @atlaskit/theme@5.0.0
1573
+ - @atlaskit/docs@5.0.0
1574
+ - @atlaskit/icon@13.0.0
1575
+ - [major] Updated dependencies
1576
+ [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
1577
+ - @atlaskit/analytics-next@3.0.0
1578
+ - @atlaskit/button@9.0.0
1579
+ - @atlaskit/theme@5.0.0
1580
+ - @atlaskit/docs@5.0.0
1581
+ - @atlaskit/icon@13.0.0
1566
1582
 
1567
1583
  ## 3.1.3
1568
1584
 
1569
- - [patch] Button should be a dev dependency
1570
- [50ca31b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/50ca31b)
1571
- - [none] Updated dependencies
1572
- [50ca31b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/50ca31b)
1585
+ - [patch] Button should be a dev dependency
1586
+ [50ca31b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/50ca31b)
1587
+ - [none] Updated dependencies
1588
+ [50ca31b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/50ca31b)
1573
1589
 
1574
1590
  ## 3.1.2
1575
1591
 
1576
- - [patch] Fix \$FlowFixMe and release packages
1577
- [25d0b2d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/25d0b2d)
1578
- - [none] Updated dependencies
1579
- [25d0b2d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/25d0b2d)
1580
- - @atlaskit/button@8.2.2
1581
- - @atlaskit/icon@12.3.1
1592
+ - [patch] Fix \$FlowFixMe and release packages
1593
+ [25d0b2d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/25d0b2d)
1594
+ - [none] Updated dependencies
1595
+ [25d0b2d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/25d0b2d)
1596
+ - @atlaskit/button@8.2.2
1597
+ - @atlaskit/icon@12.3.1
1582
1598
 
1583
1599
  ## 3.1.1
1584
1600
 
1585
- - [patch] update to active box color of checkbox to b50 to inline with ADG3 guideline
1586
- [21073ca](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/21073ca)
1587
- - [none] Updated dependencies
1588
- [21073ca](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/21073ca)
1601
+ - [patch] update to active box color of checkbox to b50 to inline with ADG3 guideline
1602
+ [21073ca](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/21073ca)
1603
+ - [none] Updated dependencies
1604
+ [21073ca](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/21073ca)
1589
1605
 
1590
1606
  ## 3.1.0
1591
1607
 
1592
- - [minor] Fixes types for Flow 0.74
1593
- [dc50cd2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dc50cd2)
1594
- - [none] Updated dependencies
1595
- [dc50cd2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dc50cd2)
1596
- - @atlaskit/button@8.2.0
1597
- - @atlaskit/icon@12.2.0
1608
+ - [minor] Fixes types for Flow 0.74
1609
+ [dc50cd2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dc50cd2)
1610
+ - [none] Updated dependencies
1611
+ [dc50cd2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dc50cd2)
1612
+ - @atlaskit/button@8.2.0
1613
+ - @atlaskit/icon@12.2.0
1598
1614
 
1599
1615
  ## 3.0.6
1600
1616
 
1601
- - [patch] Clean Changelogs - remove duplicates and empty entries
1602
- [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
1603
- - [none] Updated dependencies
1604
- [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
1605
- - @atlaskit/button@8.1.2
1606
- - @atlaskit/theme@4.0.4
1607
- - @atlaskit/icon@12.1.2
1617
+ - [patch] Clean Changelogs - remove duplicates and empty entries
1618
+ [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
1619
+ - [none] Updated dependencies
1620
+ [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
1621
+ - @atlaskit/button@8.1.2
1622
+ - @atlaskit/theme@4.0.4
1623
+ - @atlaskit/icon@12.1.2
1608
1624
 
1609
1625
  ## 3.0.5
1610
1626
 
1611
- - [patch] Update changelogs to remove duplicate
1612
- [cc58e17](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc58e17)
1613
- - [none] Updated dependencies
1614
- [cc58e17](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc58e17)
1615
- - @atlaskit/theme@4.0.3
1616
- - @atlaskit/icon@12.1.1
1617
- - @atlaskit/button@8.1.1
1618
- - @atlaskit/docs@4.1.1
1627
+ - [patch] Update changelogs to remove duplicate
1628
+ [cc58e17](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc58e17)
1629
+ - [none] Updated dependencies
1630
+ [cc58e17](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc58e17)
1631
+ - @atlaskit/theme@4.0.3
1632
+ - @atlaskit/icon@12.1.1
1633
+ - @atlaskit/button@8.1.1
1634
+ - @atlaskit/docs@4.1.1
1619
1635
 
1620
1636
  ## 3.0.4
1621
1637
 
1622
- - [none] Updated dependencies
1623
- [9d20f54](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d20f54)
1624
- - @atlaskit/icon@12.1.0
1625
- - @atlaskit/docs@4.1.0
1626
- - @atlaskit/theme@4.0.2
1627
- - @atlaskit/button@8.1.0
1638
+ - [none] Updated dependencies
1639
+ [9d20f54](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d20f54)
1640
+ - @atlaskit/icon@12.1.0
1641
+ - @atlaskit/docs@4.1.0
1642
+ - @atlaskit/theme@4.0.2
1643
+ - @atlaskit/button@8.1.0
1628
1644
 
1629
1645
  ## 3.0.3
1630
1646
 
1631
- - [patch] ref prop on checkbox stateless component is now reference to class
1632
- [05b4ffd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/05b4ffd)
1633
- - [none] Updated dependencies
1634
- [05b4ffd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/05b4ffd)
1647
+ - [patch] ref prop on checkbox stateless component is now reference to class
1648
+ [05b4ffd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/05b4ffd)
1649
+ - [none] Updated dependencies
1650
+ [05b4ffd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/05b4ffd)
1635
1651
 
1636
1652
  ## 3.0.2
1637
1653
 
1638
- - [patch] Fix for flow [33f632f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/33f632f)
1639
- - [patch] Update onChange function to pass type for name and value
1640
- [f3e768c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f3e768c)
1641
- - [none] Updated dependencies
1642
- [33f632f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/33f632f)
1643
- - [none] Updated dependencies
1644
- [f3e768c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f3e768c)
1654
+ - [patch] Fix for flow [33f632f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/33f632f)
1655
+ - [patch] Update onChange function to pass type for name and value
1656
+ [f3e768c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f3e768c)
1657
+ - [none] Updated dependencies
1658
+ [33f632f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/33f632f)
1659
+ - [none] Updated dependencies
1660
+ [f3e768c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f3e768c)
1645
1661
 
1646
1662
  ## 3.0.1
1647
1663
 
1648
- - [patch] Update readme's [223cd67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/223cd67)
1649
- - [patch] Updated dependencies
1650
- [223cd67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/223cd67)
1651
- - @atlaskit/icon@12.0.1
1652
- - @atlaskit/button@8.0.1
1653
- - @atlaskit/theme@4.0.1
1654
- - @atlaskit/docs@4.0.1
1664
+ - [patch] Update readme's [223cd67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/223cd67)
1665
+ - [patch] Updated dependencies
1666
+ [223cd67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/223cd67)
1667
+ - @atlaskit/icon@12.0.1
1668
+ - @atlaskit/button@8.0.1
1669
+ - @atlaskit/theme@4.0.1
1670
+ - @atlaskit/docs@4.0.1
1655
1671
 
1656
1672
  ## 3.0.0
1657
1673
 
1658
- - [major] makes styled-components a peer dependency and upgrades version range from 1.4.6 - 3 to
1659
- ^3.2.6 [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
1660
- - [patch] Updated dependencies
1661
- [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
1662
- - @atlaskit/icon@12.0.0
1663
- - @atlaskit/button@8.0.0
1664
- - @atlaskit/theme@4.0.0
1665
- - @atlaskit/docs@4.0.0
1674
+ - [major] makes styled-components a peer dependency and upgrades version range from 1.4.6 - 3 to
1675
+ ^3.2.6 [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
1676
+ - [patch] Updated dependencies
1677
+ [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
1678
+ - @atlaskit/icon@12.0.0
1679
+ - @atlaskit/button@8.0.0
1680
+ - @atlaskit/theme@4.0.0
1681
+ - @atlaskit/docs@4.0.0
1666
1682
 
1667
1683
  ## 2.1.0
1668
1684
 
1669
- - [minor] Updated the appearance for checkbox and radio items
1670
- [ece7426](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ece7426)
1671
- - [none] Updated dependencies
1672
- [ece7426](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ece7426)
1685
+ - [minor] Updated the appearance for checkbox and radio items
1686
+ [ece7426](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ece7426)
1687
+ - [none] Updated dependencies
1688
+ [ece7426](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ece7426)
1673
1689
 
1674
1690
  ## 2.0.2
1675
1691
 
1676
- - [patch] Updated dependencies
1677
- [d662caa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d662caa)
1678
- - @atlaskit/icon@11.3.0
1679
- - @atlaskit/button@7.2.5
1680
- - @atlaskit/theme@3.2.2
1681
- - @atlaskit/docs@3.0.4
1692
+ - [patch] Updated dependencies
1693
+ [d662caa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d662caa)
1694
+ - @atlaskit/icon@11.3.0
1695
+ - @atlaskit/button@7.2.5
1696
+ - @atlaskit/theme@3.2.2
1697
+ - @atlaskit/docs@3.0.4
1682
1698
 
1683
1699
  ## 2.0.0
1684
1700
 
1685
- - [major] Bump to React 16.3.
1686
- [4251858](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4251858)
1701
+ - [major] Bump to React 16.3.
1702
+ [4251858](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4251858)
1687
1703
 
1688
1704
  ## 1.4.0
1689
1705
 
1690
- - [minor] Add indeterminate prop to stateless checkbox
1691
- [3fc6c5e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3fc6c5e)
1706
+ - [minor] Add indeterminate prop to stateless checkbox
1707
+ [3fc6c5e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3fc6c5e)
1692
1708
 
1693
1709
  ## 1.3.1
1694
1710
 
1695
- - [patch] Re-releasing due to potentially broken babel release
1696
- [9ed0bba](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9ed0bba)
1711
+ - [patch] Re-releasing due to potentially broken babel release
1712
+ [9ed0bba](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9ed0bba)
1697
1713
 
1698
1714
  ## 1.3.0
1699
1715
 
1700
- - [minor] Update styled-components dependency to support versions 1.4.6 - 3
1701
- [ceccf30](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ceccf30)
1716
+ - [minor] Update styled-components dependency to support versions 1.4.6 - 3
1717
+ [ceccf30](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ceccf30)
1702
1718
 
1703
1719
  ## 1.2.3
1704
1720
 
1705
- - [patch] updated the repository url to https://bitbucket.org/atlassian/atlaskit-mk-2
1706
- [1e57e5a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e57e5a)
1721
+ - [patch] updated the repository url to https://bitbucket.org/atlassian/atlaskit-mk-2
1722
+ [1e57e5a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e57e5a)
1707
1723
 
1708
1724
  ## 1.2.2
1709
1725
 
1710
- - [patch] Packages Flow types for elements components
1711
- [3111e74](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3111e74)
1726
+ - [patch] Packages Flow types for elements components
1727
+ [3111e74](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3111e74)
1712
1728
 
1713
1729
  ## 1.2.1
1714
1730
 
1715
- - [patch] Resolved low hanging flow errors in field-base field-text comment icon item and website,
1716
- \$ [007de27](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/007de27)
1731
+ - [patch] Resolved low hanging flow errors in field-base field-text comment icon item and website,
1732
+ \$ [007de27](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/007de27)
1717
1733
 
1718
1734
  ## 1.2.0
1719
1735
 
1720
- - [minor] Add React 16 support.
1721
- [12ea6e4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/12ea6e4)
1736
+ - [minor] Add React 16 support.
1737
+ [12ea6e4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/12ea6e4)
1722
1738
 
1723
1739
  ## 1.1.8
1724
1740
 
1725
- - [patch] update flow dep, fix flow errors
1726
- [722ad83](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/722ad83)
1741
+ - [patch] update flow dep, fix flow errors
1742
+ [722ad83](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/722ad83)
1727
1743
 
1728
1744
  ## 1.1.7
1729
1745
 
1730
- - [patch] Updates dependency on button to 6.0.0
1731
- [2b02ebc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2b02ebc)
1732
- - [patch] Moved to new repo & build system. Cleaned up docs & examples & added Flow
1733
- [9b55672](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9b55672)
1746
+ - [patch] Updates dependency on button to 6.0.0
1747
+ [2b02ebc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2b02ebc)
1748
+ - [patch] Moved to new repo & build system. Cleaned up docs & examples & added Flow
1749
+ [9b55672](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9b55672)
1734
1750
 
1735
1751
  ## 1.1.6 (2017-11-24)
1736
1752
 
1737
1753
  ### Bug Fixes
1738
1754
 
1739
- - **component:** fixed typo in Checkbox defaultProps
1740
- ([4388a11](https://bitbucket.org/atlassian/atlaskit/commits/4388a11))
1755
+ - **component:** fixed typo in Checkbox defaultProps
1756
+ ([4388a11](https://bitbucket.org/atlassian/atlaskit/commits/4388a11))
1741
1757
 
1742
1758
  ## 1.1.5 (2017-11-22)
1743
1759
 
1744
1760
  ### Bug Fixes
1745
1761
 
1746
- - **component:** checkbox and radio should not highlight when parent element is focused
1747
- ([5c900ff](https://bitbucket.org/atlassian/atlaskit/commits/5c900ff))
1748
- - **component:** removed focus styling from radio and checkbox svg as they will never be focused
1749
- ([ec68128](https://bitbucket.org/atlassian/atlaskit/commits/ec68128))
1762
+ - **component:** checkbox and radio should not highlight when parent element is focused
1763
+ ([5c900ff](https://bitbucket.org/atlassian/atlaskit/commits/5c900ff))
1764
+ - **component:** removed focus styling from radio and checkbox svg as they will never be focused
1765
+ ([ec68128](https://bitbucket.org/atlassian/atlaskit/commits/ec68128))
1750
1766
 
1751
1767
  ## 1.1.4 (2017-11-15)
1752
1768
 
1753
1769
  ### Bug Fixes
1754
1770
 
1755
- - **component:** bumping internal dependencies to latest major version
1756
- ([91833c3](https://bitbucket.org/atlassian/atlaskit/commits/91833c3))
1771
+ - **component:** bumping internal dependencies to latest major version
1772
+ ([91833c3](https://bitbucket.org/atlassian/atlaskit/commits/91833c3))
1757
1773
 
1758
1774
  ## 1.1.3 (2017-10-27)
1759
1775
 
1760
1776
  ### Bug Fixes
1761
1777
 
1762
- - **stories:** rebuild stories
1763
- ([7aa7337](https://bitbucket.org/atlassian/atlaskit/commits/7aa7337))
1778
+ - **stories:** rebuild stories ([7aa7337](https://bitbucket.org/atlassian/atlaskit/commits/7aa7337))
1764
1779
 
1765
1780
  ## 1.1.2 (2017-10-22)
1766
1781
 
1767
1782
  ### Bug Fixes
1768
1783
 
1769
- - **package:** update dependencies for react-16
1770
- ([077d1ad](https://bitbucket.org/atlassian/atlaskit/commits/077d1ad))
1784
+ - **package:** update dependencies for react-16
1785
+ ([077d1ad](https://bitbucket.org/atlassian/atlaskit/commits/077d1ad))
1771
1786
 
1772
1787
  ## 1.1.1 (2017-10-10)
1773
1788
 
1774
1789
  ### Bug Fixes
1775
1790
 
1776
- - **package:** removed internal label from keywords
1777
- ([b76b4f2](https://bitbucket.org/atlassian/atlaskit/commits/b76b4f2))
1791
+ - **package:** removed internal label from keywords
1792
+ ([b76b4f2](https://bitbucket.org/atlassian/atlaskit/commits/b76b4f2))
1778
1793
 
1779
1794
  # 1.1.0 (2017-09-27)
1780
1795
 
1781
1796
  ### Bug Fixes
1782
1797
 
1783
- - **component:** change margin of icon
1784
- ([4459e96](https://bitbucket.org/atlassian/atlaskit/commits/4459e96))
1798
+ - **component:** change margin of icon
1799
+ ([4459e96](https://bitbucket.org/atlassian/atlaskit/commits/4459e96))
1785
1800
 
1786
1801
  ### Features
1787
1802
 
1788
- - **component:** dark mode checkbox
1789
- ([554c978](https://bitbucket.org/atlassian/atlaskit/commits/554c978))
1803
+ - **component:** dark mode checkbox
1804
+ ([554c978](https://bitbucket.org/atlassian/atlaskit/commits/554c978))
1790
1805
 
1791
1806
  # 1.0.0 (2017-09-13)
1792
1807
 
1793
1808
  ### Features
1794
1809
 
1795
- - **component:** create checkbox component
1796
- ([5ce7055](https://bitbucket.org/atlassian/atlaskit/commits/5ce7055))
1810
+ - **component:** create checkbox component
1811
+ ([5ce7055](https://bitbucket.org/atlassian/atlaskit/commits/5ce7055))