@atlaskit/checkbox 13.4.0 → 13.5.1

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