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