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