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