@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.
- package/CHANGELOG.md +874 -861
- package/README.md +2 -1
- package/__perf__/checkbox.tsx +54 -72
- package/__perf__/default.tsx +7 -7
- package/codemods/12.0.0-lite-mode.tsx +12 -16
- package/codemods/__tests__/12.0.0-lite-mode.tsx +105 -105
- package/codemods/migrations/remove-imports.tsx +3 -3
- package/codemods/migrations/remove-props.tsx +9 -13
- package/codemods/migrations/rename-import.tsx +10 -10
- package/codemods/migrations/rename-input-ref-to-ref.tsx +4 -4
- package/codemods/utils.tsx +360 -400
- package/dist/cjs/checkbox.js +20 -1
- package/dist/cjs/internal/checkbox-icon.js +2 -0
- package/dist/cjs/internal/label-text.js +4 -0
- package/dist/cjs/internal/label.js +5 -0
- package/dist/cjs/internal/required-indicator.js +6 -2
- package/dist/es2019/checkbox.js +21 -1
- package/dist/es2019/internal/checkbox-icon.js +2 -0
- package/dist/es2019/internal/label-text.js +4 -0
- package/dist/es2019/internal/label.js +5 -0
- package/dist/es2019/internal/required-indicator.js +6 -2
- package/dist/esm/checkbox.js +21 -1
- package/dist/esm/internal/checkbox-icon.js +2 -0
- package/dist/esm/internal/label-text.js +4 -0
- package/dist/esm/internal/label.js +5 -0
- package/dist/esm/internal/required-indicator.js +6 -2
- package/dist/types/internal/label-text.d.ts +3 -0
- package/dist/types/internal/label.d.ts +4 -1
- package/dist/types/internal/required-indicator.d.ts +3 -0
- package/dist/types-ts4.5/internal/label-text.d.ts +3 -0
- package/dist/types-ts4.5/internal/label.d.ts +4 -1
- package/dist/types-ts4.5/internal/required-indicator.d.ts +3 -0
- package/extract-react-types/checkbox-props.tsx +1 -1
- package/package.json +93 -95
- 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
|
-
-
|
|
8
|
-
|
|
9
|
-
|
|
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
|
-
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
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
|
-
-
|
|
41
|
+
- Updated dependencies
|
|
23
42
|
|
|
24
43
|
## 13.2.0
|
|
25
44
|
|
|
26
45
|
### Minor Changes
|
|
27
46
|
|
|
28
|
-
-
|
|
29
|
-
|
|
30
|
-
|
|
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
|
-
-
|
|
37
|
-
|
|
38
|
-
|
|
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
|
-
-
|
|
45
|
-
|
|
46
|
-
|
|
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
|
-
-
|
|
53
|
-
|
|
54
|
-
|
|
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
|
-
-
|
|
62
|
-
|
|
63
|
-
|
|
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
|
-
-
|
|
70
|
-
|
|
71
|
-
|
|
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
|
-
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
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
|
-
-
|
|
102
|
+
- Updated dependencies
|
|
85
103
|
|
|
86
104
|
## 13.0.2
|
|
87
105
|
|
|
88
106
|
### Patch Changes
|
|
89
107
|
|
|
90
|
-
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
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
|
-
-
|
|
117
|
+
- Updated dependencies
|
|
100
118
|
|
|
101
119
|
## 13.0.0
|
|
102
120
|
|
|
103
121
|
### Major Changes
|
|
104
122
|
|
|
105
|
-
-
|
|
106
|
-
|
|
107
|
-
|
|
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
|
-
-
|
|
115
|
-
|
|
116
|
-
|
|
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
|
-
-
|
|
123
|
-
|
|
124
|
-
|
|
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
|
-
-
|
|
131
|
-
|
|
132
|
-
|
|
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
|
-
-
|
|
139
|
-
|
|
140
|
-
|
|
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
|
-
-
|
|
147
|
-
|
|
148
|
-
|
|
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
|
-
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
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
|
-
-
|
|
164
|
-
|
|
165
|
-
|
|
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
|
-
-
|
|
172
|
-
|
|
173
|
-
|
|
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
|
-
-
|
|
180
|
-
|
|
181
|
-
|
|
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
|
-
-
|
|
189
|
-
|
|
190
|
-
|
|
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
|
-
-
|
|
197
|
-
|
|
198
|
-
|
|
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
|
-
-
|
|
205
|
-
|
|
206
|
-
|
|
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
|
-
-
|
|
213
|
-
|
|
214
|
-
|
|
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
|
-
-
|
|
234
|
+
- Updated dependencies
|
|
219
235
|
|
|
220
236
|
## 12.4.6
|
|
221
237
|
|
|
222
238
|
### Patch Changes
|
|
223
239
|
|
|
224
|
-
-
|
|
240
|
+
- Updated dependencies
|
|
225
241
|
|
|
226
242
|
## 12.4.5
|
|
227
243
|
|
|
228
244
|
### Patch Changes
|
|
229
245
|
|
|
230
|
-
-
|
|
246
|
+
- Updated dependencies
|
|
231
247
|
|
|
232
248
|
## 12.4.4
|
|
233
249
|
|
|
234
250
|
### Patch Changes
|
|
235
251
|
|
|
236
|
-
-
|
|
252
|
+
- Updated dependencies
|
|
237
253
|
|
|
238
254
|
## 12.4.3
|
|
239
255
|
|
|
240
256
|
### Patch Changes
|
|
241
257
|
|
|
242
|
-
-
|
|
258
|
+
- Updated dependencies
|
|
243
259
|
|
|
244
260
|
## 12.4.2
|
|
245
261
|
|
|
246
262
|
### Patch Changes
|
|
247
263
|
|
|
248
|
-
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
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
|
-
-
|
|
273
|
+
- Updated dependencies
|
|
258
274
|
|
|
259
275
|
## 12.4.0
|
|
260
276
|
|
|
261
277
|
### Minor Changes
|
|
262
278
|
|
|
263
|
-
-
|
|
264
|
-
|
|
265
|
-
|
|
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
|
-
-
|
|
285
|
+
- Updated dependencies
|
|
270
286
|
|
|
271
287
|
## 12.3.20
|
|
272
288
|
|
|
273
289
|
### Patch Changes
|
|
274
290
|
|
|
275
|
-
-
|
|
276
|
-
|
|
277
|
-
|
|
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
|
-
-
|
|
284
|
-
|
|
285
|
-
|
|
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
|
-
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
-
|
|
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
|
-
-
|
|
301
|
-
|
|
302
|
-
|
|
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
|
-
-
|
|
309
|
-
|
|
310
|
-
|
|
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
|
-
-
|
|
332
|
+
- Updated dependencies
|
|
317
333
|
|
|
318
334
|
## 12.3.14
|
|
319
335
|
|
|
320
336
|
### Patch Changes
|
|
321
337
|
|
|
322
|
-
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
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
|
-
-
|
|
348
|
+
- Updated dependencies
|
|
333
349
|
|
|
334
350
|
## 12.3.12
|
|
335
351
|
|
|
336
352
|
### Patch Changes
|
|
337
353
|
|
|
338
|
-
-
|
|
339
|
-
|
|
340
|
-
|
|
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
|
-
-
|
|
362
|
+
- Updated dependencies
|
|
347
363
|
|
|
348
364
|
## 12.3.10
|
|
349
365
|
|
|
350
366
|
### Patch Changes
|
|
351
367
|
|
|
352
|
-
-
|
|
368
|
+
- Updated dependencies
|
|
353
369
|
|
|
354
370
|
## 12.3.9
|
|
355
371
|
|
|
356
372
|
### Patch Changes
|
|
357
373
|
|
|
358
|
-
-
|
|
374
|
+
- Updated dependencies
|
|
359
375
|
|
|
360
376
|
## 12.3.8
|
|
361
377
|
|
|
362
378
|
### Patch Changes
|
|
363
379
|
|
|
364
|
-
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
-
|
|
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
|
-
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
-
|
|
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
|
-
-
|
|
399
|
+
- Updated dependencies
|
|
384
400
|
|
|
385
401
|
## 12.3.5
|
|
386
402
|
|
|
387
403
|
### Patch Changes
|
|
388
404
|
|
|
389
|
-
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
-
|
|
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
|
-
-
|
|
415
|
+
- Updated dependencies
|
|
400
416
|
|
|
401
417
|
## 12.3.3
|
|
402
418
|
|
|
403
419
|
### Patch Changes
|
|
404
420
|
|
|
405
|
-
-
|
|
421
|
+
- Updated dependencies
|
|
406
422
|
|
|
407
423
|
## 12.3.2
|
|
408
424
|
|
|
409
425
|
### Patch Changes
|
|
410
426
|
|
|
411
|
-
-
|
|
427
|
+
- Updated dependencies
|
|
412
428
|
|
|
413
429
|
## 12.3.1
|
|
414
430
|
|
|
415
431
|
### Patch Changes
|
|
416
432
|
|
|
417
|
-
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
-
|
|
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
|
-
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
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
|
-
-
|
|
434
|
-
|
|
435
|
-
-
|
|
436
|
-
|
|
437
|
-
-
|
|
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
|
-
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
-
|
|
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
|
-
-
|
|
454
|
-
|
|
455
|
-
|
|
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
|
-
-
|
|
462
|
-
|
|
463
|
-
|
|
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
|
-
-
|
|
468
|
-
|
|
469
|
-
-
|
|
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
|
-
-
|
|
476
|
-
|
|
477
|
-
|
|
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
|
-
-
|
|
484
|
-
|
|
485
|
-
|
|
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
|
-
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
-
|
|
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
|
-
-
|
|
501
|
-
|
|
502
|
-
|
|
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
|
-
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
-
|
|
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
|
-
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
-
|
|
521
|
-
|
|
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
|
-
-
|
|
528
|
-
|
|
529
|
-
|
|
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
|
-
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
-
|
|
633
|
-
|
|
634
|
-
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
-
|
|
638
|
-
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
-
|
|
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
|
-
-
|
|
649
|
-
-
|
|
650
|
-
-
|
|
651
|
-
-
|
|
652
|
-
-
|
|
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
|
-
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
-
|
|
670
|
-
|
|
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
|
-
-
|
|
677
|
-
|
|
678
|
-
|
|
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
|
-
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
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
|
-
-
|
|
711
|
+
- Updated dependencies
|
|
696
712
|
|
|
697
713
|
## 11.0.5
|
|
698
714
|
|
|
699
715
|
### Patch Changes
|
|
700
716
|
|
|
701
|
-
-
|
|
702
|
-
|
|
703
|
-
|
|
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
|
-
-
|
|
710
|
-
|
|
711
|
-
|
|
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
|
-
|
|
714
|
-
|
|
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
|
-
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
-
|
|
724
|
-
|
|
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
|
-
-
|
|
731
|
-
|
|
732
|
-
|
|
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
|
-
-
|
|
739
|
-
|
|
740
|
-
|
|
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
|
-
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
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
|
-
-
|
|
770
|
+
- Updated dependencies
|
|
755
771
|
|
|
756
772
|
## 10.1.14
|
|
757
773
|
|
|
758
774
|
### Patch Changes
|
|
759
775
|
|
|
760
|
-
-
|
|
761
|
-
|
|
762
|
-
|
|
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
|
-
-
|
|
769
|
-
|
|
770
|
-
|
|
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
|
-
-
|
|
792
|
+
- Updated dependencies
|
|
777
793
|
|
|
778
794
|
## 10.1.11
|
|
779
795
|
|
|
780
796
|
### Patch Changes
|
|
781
797
|
|
|
782
|
-
-
|
|
798
|
+
- [patch][68ff159118](https://bitbucket.org/atlassian/atlassian-frontend/commits/68ff159118):
|
|
783
799
|
|
|
784
|
-
|
|
785
|
-
|
|
800
|
+
Change imports to comply with Atlassian conventions- Updated dependencies
|
|
801
|
+
[6b8e60827e](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b8e60827e):
|
|
786
802
|
|
|
787
|
-
-
|
|
788
|
-
|
|
789
|
-
-
|
|
790
|
-
|
|
791
|
-
-
|
|
792
|
-
|
|
793
|
-
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
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
|
-
-
|
|
805
|
-
|
|
806
|
-
-
|
|
807
|
-
|
|
808
|
-
-
|
|
809
|
-
|
|
810
|
-
-
|
|
811
|
-
|
|
812
|
-
-
|
|
813
|
-
|
|
814
|
-
-
|
|
815
|
-
|
|
816
|
-
-
|
|
817
|
-
|
|
818
|
-
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
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
|
-
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
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
|
-
-
|
|
858
|
+
- [patch][c1992227dc](https://bitbucket.org/atlassian/atlassian-frontend/commits/c1992227dc):
|
|
843
859
|
|
|
844
|
-
|
|
845
|
-
|
|
860
|
+
Bump to lodash.merge to 4.6.2- Updated dependencies
|
|
861
|
+
[eaad41d56c](https://bitbucket.org/atlassian/atlassian-frontend/commits/eaad41d56c):
|
|
846
862
|
|
|
847
|
-
-
|
|
848
|
-
|
|
849
|
-
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
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
|
-
-
|
|
874
|
+
- [patch][6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
|
|
859
875
|
|
|
860
|
-
|
|
861
|
-
|
|
876
|
+
Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
|
|
877
|
+
[6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
|
|
862
878
|
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
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
|
-
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
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
|
-
-
|
|
904
|
+
- [patch][4a223473c5](https://bitbucket.org/atlassian/atlassian-frontend/commits/4a223473c5):
|
|
889
905
|
|
|
890
|
-
|
|
891
|
-
|
|
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
|
-
|
|
894
|
-
|
|
895
|
-
|
|
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
|
-
-
|
|
898
|
-
|
|
899
|
-
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
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
|
-
-
|
|
926
|
+
- [patch][24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
|
|
911
927
|
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
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
|
-
|
|
917
|
-
|
|
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
|
-
-
|
|
920
|
-
|
|
921
|
-
-
|
|
922
|
-
|
|
923
|
-
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
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
|
-
-
|
|
948
|
+
- [patch][d222c2b987](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d222c2b987):
|
|
933
949
|
|
|
934
|
-
|
|
935
|
-
|
|
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
|
-
|
|
953
|
+
### Breaking
|
|
938
954
|
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
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
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
959
|
+
```javascript
|
|
960
|
+
<CustomTheme.Provider
|
|
961
|
+
value={t => ({ ...t(), backgroundColor: '#333'})}
|
|
962
|
+
>
|
|
963
|
+
```
|
|
948
964
|
|
|
949
|
-
|
|
965
|
+
becomes:
|
|
950
966
|
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
967
|
+
```javascript
|
|
968
|
+
<CustomTheme.Provider
|
|
969
|
+
value={t => ({ ...t({}), backgroundColor: '#333'})}
|
|
970
|
+
>
|
|
971
|
+
```
|
|
956
972
|
|
|
957
|
-
|
|
958
|
-
|
|
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
|
-
|
|
961
|
-
|
|
976
|
+
```javascript
|
|
977
|
+
import { colors } from '@atlaskit/theme';
|
|
962
978
|
|
|
963
|
-
|
|
964
|
-
|
|
979
|
+
colors.colorPalette('8');
|
|
980
|
+
```
|
|
965
981
|
|
|
966
|
-
|
|
982
|
+
to this:
|
|
967
983
|
|
|
968
|
-
|
|
969
|
-
|
|
984
|
+
```javascript
|
|
985
|
+
import { colorPalette } from '@atlaskit/theme';
|
|
970
986
|
|
|
971
|
-
|
|
972
|
-
|
|
987
|
+
colorPalette.colorPalette('8');
|
|
988
|
+
```
|
|
973
989
|
|
|
974
|
-
|
|
990
|
+
or for multi entry-point users:
|
|
975
991
|
|
|
976
|
-
|
|
977
|
-
|
|
992
|
+
```javascript
|
|
993
|
+
import * as colors from '@atlaskit/theme/colors';
|
|
978
994
|
|
|
979
|
-
|
|
980
|
-
|
|
995
|
+
colors.colorPalette('8');
|
|
996
|
+
```
|
|
981
997
|
|
|
982
|
-
|
|
998
|
+
to this:
|
|
983
999
|
|
|
984
|
-
|
|
985
|
-
|
|
1000
|
+
```javascript
|
|
1001
|
+
import * as colorPalettes from '@atlaskit/theme/color-palette';
|
|
986
1002
|
|
|
987
|
-
|
|
988
|
-
|
|
1003
|
+
colorPalettes.colorPalette('8');
|
|
1004
|
+
```
|
|
989
1005
|
|
|
990
1006
|
## 10.1.2
|
|
991
1007
|
|
|
992
1008
|
### Patch Changes
|
|
993
1009
|
|
|
994
|
-
-
|
|
1010
|
+
- [patch][35d2229b2a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/35d2229b2a):
|
|
995
1011
|
|
|
996
|
-
|
|
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
|
-
-
|
|
1018
|
+
- [patch][a2d0043716](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a2d0043716):
|
|
1003
1019
|
|
|
1004
|
-
|
|
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
|
-
-
|
|
1026
|
+
- [minor][f22f6e1e4f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f22f6e1e4f):
|
|
1011
1027
|
|
|
1012
|
-
|
|
1013
|
-
|
|
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
|
-
-
|
|
1035
|
+
- [major][97bab7fd28](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/97bab7fd28):
|
|
1020
1036
|
|
|
1021
|
-
|
|
1037
|
+
`@atlaskit/checkbox` **10.x** includes the following changes:
|
|
1022
1038
|
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
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
|
-
|
|
1047
|
+
### Breaking Changes
|
|
1032
1048
|
|
|
1033
|
-
|
|
1049
|
+
**HiddenCheckbox and spread props**
|
|
1034
1050
|
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
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
|
-
|
|
1056
|
+
Whereas previously you would do this:
|
|
1041
1057
|
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1058
|
+
```js
|
|
1059
|
+
<Checkbox
|
|
1060
|
+
...supportedCheckboxProps
|
|
1061
|
+
'data-testid'='test-checkbox'
|
|
1062
|
+
/>
|
|
1063
|
+
```
|
|
1048
1064
|
|
|
1049
|
-
|
|
1050
|
-
|
|
1065
|
+
Now you would leverage the overrides prop to pass these props down to the `<HiddenCheckbox/>`
|
|
1066
|
+
component like so:
|
|
1051
1067
|
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
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
|
-
-
|
|
1083
|
+
- [patch][097b696613](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/097b696613):
|
|
1068
1084
|
|
|
1069
|
-
|
|
1070
|
-
|
|
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
|
-
-
|
|
1092
|
+
- [patch][ecca4d1dbb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ecca4d1dbb):
|
|
1077
1093
|
|
|
1078
|
-
|
|
1094
|
+
Upgraded Typescript to 3.3.x
|
|
1079
1095
|
|
|
1080
1096
|
## 9.0.7
|
|
1081
1097
|
|
|
1082
1098
|
### Patch Changes
|
|
1083
1099
|
|
|
1084
|
-
-
|
|
1100
|
+
- [patch][708028db86](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/708028db86):
|
|
1085
1101
|
|
|
1086
|
-
|
|
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
|
-
-
|
|
1108
|
+
- [patch][de35ce8c67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/de35ce8c67):
|
|
1093
1109
|
|
|
1094
|
-
|
|
1110
|
+
Updates component maintainers
|
|
1095
1111
|
|
|
1096
1112
|
## 9.0.5
|
|
1097
1113
|
|
|
1098
1114
|
### Patch Changes
|
|
1099
1115
|
|
|
1100
|
-
-
|
|
1116
|
+
- [patch][926b43142b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/926b43142b):
|
|
1101
1117
|
|
|
1102
|
-
|
|
1103
|
-
|
|
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
|
-
|
|
1121
|
+
**Breaking changes**
|
|
1106
1122
|
|
|
1107
|
-
|
|
1108
|
-
|
|
1123
|
+
- `withAnalyticsForSumTypeProps` alias has been removed, please use `withAnalyticsEvents`
|
|
1124
|
+
- `AnalyticsContextWrappedComp` alias has been removed, please use `withAnalyticsContext`
|
|
1109
1125
|
|
|
1110
|
-
|
|
1126
|
+
**Breaking changes to TypeScript annotations**
|
|
1111
1127
|
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
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
|
-
-
|
|
1149
|
+
- [patch][9f8ab1084b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9f8ab1084b):
|
|
1134
1150
|
|
|
1135
|
-
|
|
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
|
-
-
|
|
1157
|
+
- [patch][bbff8a7d87](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bbff8a7d87):
|
|
1142
1158
|
|
|
1143
|
-
|
|
1159
|
+
Fixes bug, missing version.json file
|
|
1144
1160
|
|
|
1145
1161
|
## 9.0.2
|
|
1146
1162
|
|
|
1147
1163
|
### Patch Changes
|
|
1148
1164
|
|
|
1149
|
-
-
|
|
1165
|
+
- [patch][18dfac7332](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/18dfac7332):
|
|
1150
1166
|
|
|
1151
|
-
|
|
1167
|
+
In this PR, we are:
|
|
1152
1168
|
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
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
|
-
-
|
|
1182
|
+
- [patch][d0db01b410](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d0db01b410):
|
|
1167
1183
|
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
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
|
-
|
|
1188
|
+
Before:
|
|
1173
1189
|
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1190
|
+
```typescript
|
|
1191
|
+
withAnalyticsEvents()(Button) as ComponentClass<Props>;
|
|
1192
|
+
```
|
|
1177
1193
|
|
|
1178
|
-
|
|
1194
|
+
After:
|
|
1179
1195
|
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1196
|
+
```typescript
|
|
1197
|
+
withAnalyticsEvents<Props>()(Button);
|
|
1198
|
+
```
|
|
1183
1199
|
|
|
1184
1200
|
## 9.0.0
|
|
1185
1201
|
|
|
1186
1202
|
### Major Changes
|
|
1187
1203
|
|
|
1188
|
-
-
|
|
1204
|
+
- [major][87a2638655](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/87a2638655):
|
|
1189
1205
|
|
|
1190
|
-
|
|
1206
|
+
Replaced `styled-components` with `emotion 10` as part of Atlaskit-wide conversion process.
|
|
1191
1207
|
|
|
1192
|
-
|
|
1193
|
-
|
|
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
|
-
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
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
|
-
-
|
|
1225
|
+
- [patch][9c404c7c44](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c404c7c44):
|
|
1210
1226
|
|
|
1211
|
-
|
|
1227
|
+
Using updated icons
|
|
1212
1228
|
|
|
1213
1229
|
## 8.0.3
|
|
1214
1230
|
|
|
1215
1231
|
### Patch Changes
|
|
1216
1232
|
|
|
1217
|
-
-
|
|
1233
|
+
- [patch][9c80ef7539](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c80ef7539):
|
|
1218
1234
|
|
|
1219
|
-
|
|
1220
|
-
|
|
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
|
-
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
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
|
-
-
|
|
1252
|
+
- [patch][c67483c207](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c67483c207):
|
|
1237
1253
|
|
|
1238
|
-
|
|
1254
|
+
Fixed a scrollbar bug with checkboxes
|
|
1239
1255
|
|
|
1240
1256
|
## 8.0.0
|
|
1241
1257
|
|
|
1242
|
-
-
|
|
1258
|
+
- [major][70862830d6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/70862830d6):
|
|
1243
1259
|
|
|
1244
|
-
|
|
1245
|
-
|
|
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
|
-
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
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
|
-
-
|
|
1274
|
+
- [major][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
|
|
1259
1275
|
|
|
1260
|
-
|
|
1261
|
-
|
|
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
|
-
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
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
|
-
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
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
|
-
-
|
|
1304
|
+
- [patch][98e11001ff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/98e11001ff):
|
|
1289
1305
|
|
|
1290
|
-
|
|
1306
|
+
- Removes duplicate babel-runtime dependency
|
|
1291
1307
|
|
|
1292
1308
|
## 6.0.1
|
|
1293
1309
|
|
|
1294
|
-
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
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
|
-
-
|
|
1322
|
+
- [major][76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
|
|
1307
1323
|
|
|
1308
|
-
|
|
1324
|
+
- Drop ES5 from all the flow modules
|
|
1309
1325
|
|
|
1310
|
-
|
|
1326
|
+
### Dropping CJS support in all @atlaskit packages
|
|
1311
1327
|
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
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
|
-
|
|
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
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1334
|
+
```js
|
|
1335
|
+
import colors from `@atlaskit/theme/colors`;
|
|
1336
|
+
```
|
|
1322
1337
|
|
|
1323
|
-
|
|
1338
|
+
Previously this was sort of possible for consumers by doing something like:
|
|
1324
1339
|
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1340
|
+
```js
|
|
1341
|
+
import colors from `@atlaskit/theme/dist/esm/colors`;
|
|
1342
|
+
```
|
|
1328
1343
|
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
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
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
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
|
-
|
|
1340
|
-
|
|
1354
|
+
ES Modules are widely supported by all modern bundlers and can be worked around in node
|
|
1355
|
+
environments.
|
|
1341
1356
|
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
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
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
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
|
-
-
|
|
1367
|
+
- [patch][c0ad531a70](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c0ad531a70):
|
|
1353
1368
|
|
|
1354
|
-
|
|
1369
|
+
- Added test to make use props are passed down to hidden input
|
|
1355
1370
|
|
|
1356
1371
|
## 5.0.13
|
|
1357
1372
|
|
|
1358
|
-
-
|
|
1373
|
+
- [patch][3ae465b6f0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3ae465b6f0):
|
|
1359
1374
|
|
|
1360
|
-
|
|
1375
|
+
- fix for checkbox logging error on mount
|
|
1361
1376
|
|
|
1362
1377
|
## 5.0.12
|
|
1363
1378
|
|
|
1364
|
-
-
|
|
1379
|
+
- [patch][b0153ee6c9](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b0153ee6c9):
|
|
1365
1380
|
|
|
1366
|
-
|
|
1367
|
-
|
|
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
|
-
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
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
|
-
-
|
|
1395
|
+
- [patch][fad28be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/fad28be):
|
|
1381
1396
|
|
|
1382
|
-
|
|
1397
|
+
- Fixing invalid type for checkbox id prop
|
|
1383
1398
|
|
|
1384
1399
|
## 5.0.9
|
|
1385
1400
|
|
|
1386
|
-
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
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
|
-
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
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
|
-
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
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
|
-
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
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
|
-
-
|
|
1424
|
-
|
|
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
|
-
-
|
|
1429
|
-
|
|
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
|
-
-
|
|
1434
|
-
|
|
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
|
-
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
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
|
-
-
|
|
1447
|
-
|
|
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
|
-
-
|
|
1452
|
-
|
|
1466
|
+
- [major] Checkbox refactored to remove the need for CheckboxStateless
|
|
1467
|
+
[80e1925](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/80e1925)
|
|
1453
1468
|
|
|
1454
|
-
|
|
1455
|
-
|
|
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
|
-
|
|
1472
|
+
**Exports**
|
|
1459
1473
|
|
|
1460
|
-
|
|
1461
|
-
|
|
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
|
-
|
|
1477
|
+
### Checkbox
|
|
1464
1478
|
|
|
1465
|
-
|
|
1479
|
+
Checkbox is now a named export of the `@atlaskit/checkbox`package. Please import it as below.
|
|
1466
1480
|
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1481
|
+
```
|
|
1482
|
+
import { Checkbox } from @atlaskit/checkbox;
|
|
1483
|
+
```
|
|
1470
1484
|
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
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
|
-
|
|
1477
|
-
|
|
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
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
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
|
-
|
|
1498
|
+
### CheckboxStateless - deprecated
|
|
1485
1499
|
|
|
1486
|
-
|
|
1487
|
-
|
|
1500
|
+
This component has been deprecated in favor of the conditionally controlled component pattern
|
|
1501
|
+
specified above.\*\*
|
|
1488
1502
|
|
|
1489
|
-
|
|
1503
|
+
### CheckboxGroup - deprecated:
|
|
1490
1504
|
|
|
1491
|
-
|
|
1492
|
-
|
|
1505
|
+
`@atlaskit/checkbox` no longer exports a CheckboxGroup component. It has been removed for the
|
|
1506
|
+
following reasons:
|
|
1493
1507
|
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
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
|
-
|
|
1512
|
+
**Prop Changes**
|
|
1499
1513
|
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
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
|
-
-
|
|
1507
|
-
|
|
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
|
-
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
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
|
-
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
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
|
-
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
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
|
-
-
|
|
1543
|
-
|
|
1544
|
-
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
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
|
-
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
-
|
|
1559
|
-
|
|
1560
|
-
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
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
|
-
-
|
|
1578
|
-
|
|
1579
|
-
-
|
|
1580
|
-
|
|
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
|
-
-
|
|
1585
|
-
|
|
1586
|
-
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
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
|
-
-
|
|
1594
|
-
|
|
1595
|
-
-
|
|
1596
|
-
|
|
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
|
-
-
|
|
1601
|
-
|
|
1602
|
-
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
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
|
-
-
|
|
1610
|
-
|
|
1611
|
-
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
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
|
-
-
|
|
1620
|
-
|
|
1621
|
-
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
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
|
-
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
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
|
-
-
|
|
1640
|
-
|
|
1641
|
-
-
|
|
1642
|
-
|
|
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
|
-
-
|
|
1647
|
-
-
|
|
1648
|
-
|
|
1649
|
-
-
|
|
1650
|
-
|
|
1651
|
-
-
|
|
1652
|
-
|
|
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
|
-
-
|
|
1657
|
-
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
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
|
-
-
|
|
1667
|
-
|
|
1668
|
-
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
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
|
-
-
|
|
1678
|
-
|
|
1679
|
-
-
|
|
1680
|
-
|
|
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
|
-
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
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
|
-
-
|
|
1694
|
-
|
|
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
|
-
-
|
|
1699
|
-
|
|
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
|
-
-
|
|
1704
|
-
|
|
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
|
-
-
|
|
1709
|
-
|
|
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
|
-
-
|
|
1714
|
-
|
|
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
|
-
-
|
|
1719
|
-
|
|
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
|
-
-
|
|
1724
|
-
|
|
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
|
-
-
|
|
1729
|
-
|
|
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
|
-
-
|
|
1734
|
-
|
|
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
|
-
-
|
|
1739
|
-
|
|
1740
|
-
-
|
|
1741
|
-
|
|
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
|
-
-
|
|
1748
|
-
|
|
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
|
-
-
|
|
1755
|
-
|
|
1756
|
-
-
|
|
1757
|
-
|
|
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
|
-
-
|
|
1764
|
-
|
|
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
|
-
-
|
|
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
|
-
-
|
|
1778
|
-
|
|
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
|
-
-
|
|
1785
|
-
|
|
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
|
-
-
|
|
1792
|
-
|
|
1804
|
+
- **component:** change margin of icon
|
|
1805
|
+
([4459e96](https://bitbucket.org/atlassian/atlaskit/commits/4459e96))
|
|
1793
1806
|
|
|
1794
1807
|
### Features
|
|
1795
1808
|
|
|
1796
|
-
-
|
|
1797
|
-
|
|
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
|
-
-
|
|
1804
|
-
|
|
1816
|
+
- **component:** create checkbox component
|
|
1817
|
+
([5ce7055](https://bitbucket.org/atlassian/atlaskit/commits/5ce7055))
|