@atlaskit/calendar 14.2.1 → 14.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/CHANGELOG.md +793 -780
  2. package/README.md +2 -1
  3. package/__perf__/examples.tsx +53 -70
  4. package/codemods/11.0.0-lite-mode.tsx +2 -2
  5. package/codemods/__tests__/11.0.0-lite-mode.tsx +21 -21
  6. package/codemods/__tests__/flatten-certain-inner-props-as-prop.tsx +29 -31
  7. package/codemods/__tests__/remove-inner-props.tsx +28 -28
  8. package/codemods/migrations/flatten-certain-inner-props-as-prop.tsx +3 -3
  9. package/codemods/utils.tsx +150 -174
  10. package/dist/cjs/calendar.js +8 -3
  11. package/dist/cjs/internal/components/date.js +7 -0
  12. package/dist/cjs/internal/components/header.js +5 -0
  13. package/dist/cjs/internal/components/week-day-grid.js +5 -0
  14. package/dist/cjs/internal/components/week-days.js +5 -0
  15. package/dist/cjs/internal/components/week-header.js +5 -0
  16. package/dist/cjs/internal/styles/date.js +2 -0
  17. package/dist/es2019/calendar.js +10 -2
  18. package/dist/es2019/internal/components/date.js +7 -0
  19. package/dist/es2019/internal/components/header.js +5 -0
  20. package/dist/es2019/internal/components/week-day-grid.js +4 -0
  21. package/dist/es2019/internal/components/week-days.js +5 -0
  22. package/dist/es2019/internal/components/week-header.js +5 -0
  23. package/dist/es2019/internal/styles/date.js +2 -0
  24. package/dist/esm/calendar.js +10 -2
  25. package/dist/esm/internal/components/date.js +7 -0
  26. package/dist/esm/internal/components/header.js +5 -0
  27. package/dist/esm/internal/components/week-day-grid.js +4 -0
  28. package/dist/esm/internal/components/week-days.js +5 -0
  29. package/dist/esm/internal/components/week-header.js +5 -0
  30. package/dist/esm/internal/styles/date.js +2 -0
  31. package/dist/types/internal/components/header.d.ts +1 -1
  32. package/dist/types/internal/components/week-day-grid.d.ts +4 -1
  33. package/dist/types/internal/components/week-days.d.ts +1 -1
  34. package/dist/types/internal/hooks/use-calendar-ref.d.ts +1 -1
  35. package/dist/types/internal/hooks/use-focusing.d.ts +1 -1
  36. package/dist/types/internal/hooks/use-handle-date-select.d.ts +1 -1
  37. package/dist/types/internal/styles/date.d.ts +1 -1
  38. package/dist/types/types.d.ts +2 -2
  39. package/dist/types-ts4.5/internal/components/header.d.ts +1 -1
  40. package/dist/types-ts4.5/internal/components/week-day-grid.d.ts +4 -1
  41. package/dist/types-ts4.5/internal/components/week-days.d.ts +1 -1
  42. package/dist/types-ts4.5/internal/hooks/use-calendar-ref.d.ts +1 -1
  43. package/dist/types-ts4.5/internal/hooks/use-focusing.d.ts +1 -1
  44. package/dist/types-ts4.5/internal/hooks/use-handle-date-select.d.ts +1 -1
  45. package/dist/types-ts4.5/internal/styles/date.d.ts +1 -1
  46. package/dist/types-ts4.5/types.d.ts +2 -2
  47. package/package.json +98 -100
  48. package/report.api.md +77 -76
package/CHANGELOG.md CHANGED
@@ -1,1672 +1,1685 @@
1
1
  # @atlaskit/calendar
2
2
 
3
+ ## 14.3.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
+ ## 14.2.2
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies
21
+
3
22
  ## 14.2.1
4
23
 
5
24
  ### Patch Changes
6
25
 
7
- - Updated dependencies
26
+ - Updated dependencies
8
27
 
9
28
  ## 14.2.0
10
29
 
11
30
  ### Minor Changes
12
31
 
13
- - [#90213](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/90213)
14
- [`aa06d98a6384`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/aa06d98a6384) -
15
- Add support for React 18.
32
+ - [#90213](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/90213)
33
+ [`aa06d98a6384`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/aa06d98a6384) -
34
+ Add support for React 18 in non-strict mode.
16
35
 
17
36
  ## 14.1.0
18
37
 
19
38
  ### Minor Changes
20
39
 
21
- - [#88752](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/88752)
22
- [`c164ec1faceb`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c164ec1faceb) -
23
- [ux] Internal changes to typography, small visual change to calendar week header text.
40
+ - [#88752](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/88752)
41
+ [`c164ec1faceb`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c164ec1faceb) -
42
+ [ux] Internal changes to typography, small visual change to calendar week header text.
24
43
 
25
44
  ## 14.0.13
26
45
 
27
46
  ### Patch Changes
28
47
 
29
- - [#84135](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/84135)
30
- [`87ddd92e0265`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/87ddd92e0265) -
31
- [ux] Unnecessary tab stop for keyboard users removed.
48
+ - [#84135](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/84135)
49
+ [`87ddd92e0265`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/87ddd92e0265) -
50
+ [ux] Unnecessary tab stop for keyboard users removed.
32
51
 
33
52
  ## 14.0.12
34
53
 
35
54
  ### Patch Changes
36
55
 
37
- - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
38
- [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
39
- Upgrade Typescript from `4.9.5` to `5.4.2`
56
+ - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
57
+ [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
58
+ Upgrade Typescript from `4.9.5` to `5.4.2`
40
59
 
41
60
  ## 14.0.11
42
61
 
43
62
  ### Patch Changes
44
63
 
45
- - Updated dependencies
64
+ - Updated dependencies
46
65
 
47
66
  ## 14.0.10
48
67
 
49
68
  ### Patch Changes
50
69
 
51
- - Updated dependencies
70
+ - Updated dependencies
52
71
 
53
72
  ## 14.0.9
54
73
 
55
74
  ### Patch Changes
56
75
 
57
- - Updated dependencies
76
+ - Updated dependencies
58
77
 
59
78
  ## 14.0.8
60
79
 
61
80
  ### Patch Changes
62
81
 
63
- - [#72130](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72130)
64
- [`b037e5451037`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b037e5451037) -
65
- Update new button text color fallback for default theme (non-token) to match that of old button
66
- current text color
67
- - Updated dependencies
82
+ - [#72130](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72130)
83
+ [`b037e5451037`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b037e5451037) -
84
+ Update new button text color fallback for default theme (non-token) to match that of old button
85
+ current text color
86
+ - Updated dependencies
68
87
 
69
88
  ## 14.0.7
70
89
 
71
90
  ### Patch Changes
72
91
 
73
- - Updated dependencies
92
+ - Updated dependencies
74
93
 
75
94
  ## 14.0.6
76
95
 
77
96
  ### Patch Changes
78
97
 
79
- - [#65872](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/65872)
80
- [`42fb30840f3c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/42fb30840f3c) -
81
- [ux] Migrate buttons in Calendar to consume new icon buttons.
82
- - Updated dependencies
98
+ - [#65872](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/65872)
99
+ [`42fb30840f3c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/42fb30840f3c) -
100
+ [ux] Migrate buttons in Calendar to consume new icon buttons.
101
+ - Updated dependencies
83
102
 
84
103
  ## 14.0.5
85
104
 
86
105
  ### Patch Changes
87
106
 
88
- - [#63677](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63677)
89
- [`f320c8ce5039`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f320c8ce5039) -
90
- This package has been added to the Jira push model.
107
+ - [#63677](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63677)
108
+ [`f320c8ce5039`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f320c8ce5039) -
109
+ This package has been added to the Jira push model.
91
110
 
92
111
  ## 14.0.4
93
112
 
94
113
  ### Patch Changes
95
114
 
96
- - Updated dependencies
115
+ - Updated dependencies
97
116
 
98
117
  ## 14.0.3
99
118
 
100
119
  ### Patch Changes
101
120
 
102
- - [#59147](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59147)
103
- [`f12e489f23b0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f12e489f23b0) -
104
- Re-build and deploy packages to NPM to resolve React/Compiled not found error (HOT-106483).
121
+ - [#59147](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59147)
122
+ [`f12e489f23b0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f12e489f23b0) -
123
+ Re-build and deploy packages to NPM to resolve React/Compiled not found error (HOT-106483).
105
124
 
106
125
  ## 14.0.2
107
126
 
108
127
  ### Patch Changes
109
128
 
110
- - [#58458](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58458)
111
- [`536478cdcf0b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/536478cdcf0b) -
112
- Made some tiny tweaks to the weekday header so its height is now an integer.
129
+ - [#58458](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58458)
130
+ [`536478cdcf0b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/536478cdcf0b) -
131
+ Made some tiny tweaks to the weekday header so its height is now an integer.
113
132
 
114
133
  ## 14.0.1
115
134
 
116
135
  ### Patch Changes
117
136
 
118
- - Updated dependencies
137
+ - Updated dependencies
119
138
 
120
139
  ## 14.0.0
121
140
 
122
141
  ### Major Changes
123
142
 
124
- - [#41791](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41791)
125
- [`ec7c2a38247`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec7c2a38247) -
126
- Removed all remaining legacy theming logic from the Calendar, Form, InlineDialog, InlineEdit and
127
- InlineMessage components.
143
+ - [#41791](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41791)
144
+ [`ec7c2a38247`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec7c2a38247) - Removed
145
+ all remaining legacy theming logic from the Calendar, Form, InlineDialog, InlineEdit and
146
+ InlineMessage components.
128
147
 
129
148
  ## 13.3.3
130
149
 
131
150
  ### Patch Changes
132
151
 
133
- - [#42445](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42445)
134
- [`5645b5a1132`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5645b5a1132) - Fix TS
135
- errors for forge-ui in AFM
152
+ - [#42445](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42445)
153
+ [`5645b5a1132`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5645b5a1132) - Fix TS
154
+ errors for forge-ui in AFM
136
155
 
137
156
  ## 13.3.2
138
157
 
139
158
  ### Patch Changes
140
159
 
141
- - Updated dependencies
160
+ - Updated dependencies
142
161
 
143
162
  ## 13.3.1
144
163
 
145
164
  ### Patch Changes
146
165
 
147
- - [#39443](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39443)
148
- [`75b9f4664c6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/75b9f4664c6) - [ux]
149
- Hide weekday header row from assistive technologies.
166
+ - [#39443](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39443)
167
+ [`75b9f4664c6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/75b9f4664c6) - [ux]
168
+ Hide weekday header row from assistive technologies.
150
169
 
151
170
  ## 13.3.0
152
171
 
153
172
  ### Minor Changes
154
173
 
155
- - [#39246](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39246)
156
- [`26825f14d51`](https://bitbucket.org/atlassian/atlassian-frontend/commits/26825f14d51) - [ux]
157
- This adds greater keyboard accessibility to calendar, and removes the feature flag that gated
158
- this change.
174
+ - [#39246](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39246)
175
+ [`26825f14d51`](https://bitbucket.org/atlassian/atlassian-frontend/commits/26825f14d51) - [ux]
176
+ This adds greater keyboard accessibility to calendar, and removes the feature flag that gated this
177
+ change.
159
178
 
160
179
  ## 13.2.2
161
180
 
162
181
  ### Patch Changes
163
182
 
164
- - [#38521](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38521)
165
- [`ceedd1f27df`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ceedd1f27df) - [ux]
166
- Ensures month/year does not render as live region until it has changed or has otherwise been
167
- interacted with for better usability. Part of feature flag for keyboard accessibility.
183
+ - [#38521](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38521)
184
+ [`ceedd1f27df`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ceedd1f27df) - [ux]
185
+ Ensures month/year does not render as live region until it has changed or has otherwise been
186
+ interacted with for better usability. Part of feature flag for keyboard accessibility.
168
187
 
169
188
  ## 13.2.1
170
189
 
171
190
  ### Patch Changes
172
191
 
173
- - [#38162](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38162)
174
- [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete
175
- version.json
176
- - Updated dependencies
192
+ - [#38162](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38162)
193
+ [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete
194
+ version.json
195
+ - Updated dependencies
177
196
 
178
197
  ## 13.2.0
179
198
 
180
199
  ### Minor Changes
181
200
 
182
- - [#38403](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38403)
183
- [`b5716b91b31`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b5716b91b31) - [ux]
184
- We are testing adding keyboard accessibility for Calendar behind a feature flag. This will add
185
- more affordances for users of assistive technologies to use the calendar, and updates the
186
- `tabIndex` prop to only use recommended values. If this fix is successful it will be available
187
- in a later release.
201
+ - [#38403](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38403)
202
+ [`b5716b91b31`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b5716b91b31) - [ux] We
203
+ are testing adding keyboard accessibility for Calendar behind a feature flag. This will add more
204
+ affordances for users of assistive technologies to use the calendar, and updates the `tabIndex`
205
+ prop to only use recommended values. If this fix is successful it will be available in a later
206
+ release.
188
207
 
189
208
  ## 13.1.17
190
209
 
191
210
  ### Patch Changes
192
211
 
193
- - [#37611](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37611)
194
- [`0ed39bbcb73`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ed39bbcb73) - [ux]
195
- correct fallback color of focused state to meet contrast requirement
212
+ - [#37611](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37611)
213
+ [`0ed39bbcb73`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ed39bbcb73) - [ux]
214
+ correct fallback color of focused state to meet contrast requirement
196
215
 
197
216
  ## 13.1.16
198
217
 
199
218
  ### Patch Changes
200
219
 
201
- - [#37533](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37533)
202
- [`1ed303de3e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1ed303de3e8) -
203
- Updated dependencies
220
+ - [#37533](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37533)
221
+ [`1ed303de3e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1ed303de3e8) - Updated
222
+ dependencies
204
223
 
205
224
  ## 13.1.15
206
225
 
207
226
  ### Patch Changes
208
227
 
209
- - [#37278](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37278)
210
- [`3fadbb8bf73`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3fadbb8bf73) -
211
- Internal changes.
228
+ - [#37278](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37278)
229
+ [`3fadbb8bf73`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3fadbb8bf73) - Internal
230
+ changes.
212
231
 
213
232
  ## 13.1.14
214
233
 
215
234
  ### Patch Changes
216
235
 
217
- - [#36412](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36412)
218
- [`7e4085cd951`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e4085cd951) - Allow
219
- caret version range in @atlaskit/primitives dependency.
236
+ - [#36412](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36412)
237
+ [`7e4085cd951`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e4085cd951) - Allow
238
+ caret version range in @atlaskit/primitives dependency.
220
239
 
221
240
  ## 13.1.13
222
241
 
223
242
  ### Patch Changes
224
243
 
225
- - Updated dependencies
244
+ - Updated dependencies
226
245
 
227
246
  ## 13.1.12
228
247
 
229
248
  ### Patch Changes
230
249
 
231
- - Updated dependencies
250
+ - Updated dependencies
232
251
 
233
252
  ## 13.1.11
234
253
 
235
254
  ### Patch Changes
236
255
 
237
- - Updated dependencies
256
+ - Updated dependencies
238
257
 
239
258
  ## 13.1.10
240
259
 
241
260
  ### Patch Changes
242
261
 
243
- - [#35712](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35712)
244
- [`76d4d797a2d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76d4d797a2d) -
245
- Updates calendar for primitives bump.
246
- - Updated dependencies
262
+ - [#35712](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35712)
263
+ [`76d4d797a2d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76d4d797a2d) - Updates
264
+ calendar for primitives bump.
265
+ - Updated dependencies
247
266
 
248
267
  ## 13.1.9
249
268
 
250
269
  ### Patch Changes
251
270
 
252
- - Updated dependencies
271
+ - Updated dependencies
253
272
 
254
273
  ## 13.1.8
255
274
 
256
275
  ### Patch Changes
257
276
 
258
- - [#35337](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35337)
259
- [`529814693a1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/529814693a1) - Pin
260
- version of @atlaskit/primitives so it resolves to correct version
277
+ - [#35337](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35337)
278
+ [`529814693a1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/529814693a1) - Pin
279
+ version of @atlaskit/primitives so it resolves to correct version
261
280
 
262
281
  ## 13.1.7
263
282
 
264
283
  ### Patch Changes
265
284
 
266
- - [#33833](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33833)
267
- [`b8b41649492`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b8b41649492) - Update
268
- how certain background colors are referenced by name. Internal changes only.
269
- - Updated dependencies
285
+ - [#33833](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33833)
286
+ [`b8b41649492`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b8b41649492) - Update
287
+ how certain background colors are referenced by name. Internal changes only.
288
+ - Updated dependencies
270
289
 
271
290
  ## 13.1.6
272
291
 
273
292
  ### Patch Changes
274
293
 
275
- - [#34922](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34922)
276
- [`779727e307a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/779727e307a) -
277
- Internal change only. Replace all instances of Box with stable @atlaskit/primitives version.
294
+ - [#34922](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34922)
295
+ [`779727e307a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/779727e307a) - Internal
296
+ change only. Replace all instances of Box with stable @atlaskit/primitives version.
278
297
 
279
298
  ## 13.1.5
280
299
 
281
300
  ### Patch Changes
282
301
 
283
- - Updated dependencies
302
+ - Updated dependencies
284
303
 
285
304
  ## 13.1.4
286
305
 
287
306
  ### Patch Changes
288
307
 
289
- - [#34881](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34881)
290
- [`774ed69ecef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/774ed69ecef) -
291
- Internal changes to use space tokens for spacing values. There is no visual change.
308
+ - [#34881](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34881)
309
+ [`774ed69ecef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/774ed69ecef) - Internal
310
+ changes to use space tokens for spacing values. There is no visual change.
292
311
 
293
312
  ## 13.1.3
294
313
 
295
314
  ### Patch Changes
296
315
 
297
- - [#34727](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34727)
298
- [`74fec133d99`](https://bitbucket.org/atlassian/atlassian-frontend/commits/74fec133d99) - [ux]
299
- Add proper grid roles to calendar.
316
+ - [#34727](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34727)
317
+ [`74fec133d99`](https://bitbucket.org/atlassian/atlassian-frontend/commits/74fec133d99) - [ux] Add
318
+ proper grid roles to calendar.
300
319
 
301
320
  ## 13.1.2
302
321
 
303
322
  ### Patch Changes
304
323
 
305
- - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
306
- [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
307
- legacy types are published for TS 4.5-4.8
324
+ - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
325
+ [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
326
+ legacy types are published for TS 4.5-4.8
308
327
 
309
328
  ## 13.1.1
310
329
 
311
330
  ### Patch Changes
312
331
 
313
- - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
314
- [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) -
315
- Upgrade Typescript from `4.5.5` to `4.9.5`
332
+ - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
333
+ [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade
334
+ Typescript from `4.5.5` to `4.9.5`
316
335
 
317
336
  ## 13.1.0
318
337
 
319
338
  ### Minor Changes
320
339
 
321
- - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
322
- [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
323
- minor dependency bump
340
+ - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
341
+ [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
342
+ minor dependency bump
324
343
 
325
344
  ### Patch Changes
326
345
 
327
- - Updated dependencies
346
+ - Updated dependencies
328
347
 
329
348
  ## 13.0.14
330
349
 
331
350
  ### Patch Changes
332
351
 
333
- - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424)
334
- [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY
335
- remove before merging to master; dupe adf-schema via adf-utils
352
+ - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424)
353
+ [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY
354
+ remove before merging to master; dupe adf-schema via adf-utils
336
355
 
337
356
  ## 13.0.13
338
357
 
339
358
  ### Patch Changes
340
359
 
341
- - Updated dependencies
360
+ - Updated dependencies
342
361
 
343
362
  ## 13.0.12
344
363
 
345
364
  ### Patch Changes
346
365
 
347
- - Updated dependencies
366
+ - Updated dependencies
348
367
 
349
368
  ## 13.0.11
350
369
 
351
370
  ### Patch Changes
352
371
 
353
- - [#31891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31891)
354
- [`70922a6fcea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70922a6fcea) - [ux]
355
- style(calendar): update icon fallback color from N70 to N700 to match tokens and fix color
356
- contrast issue
357
- - [`c0fb88b3af6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0fb88b3af6) - [ux]
358
- style(calendar): update icon color token from text.subtlest to color.icon
372
+ - [#31891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31891)
373
+ [`70922a6fcea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70922a6fcea) - [ux]
374
+ style(calendar): update icon fallback color from N70 to N700 to match tokens and fix color
375
+ contrast issue
376
+ - [`c0fb88b3af6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0fb88b3af6) - [ux]
377
+ style(calendar): update icon color token from text.subtlest to color.icon
359
378
 
360
379
  ## 13.0.10
361
380
 
362
381
  ### Patch Changes
363
382
 
364
- - Updated dependencies
383
+ - Updated dependencies
365
384
 
366
385
  ## 13.0.9
367
386
 
368
387
  ### Patch Changes
369
388
 
370
- - Updated dependencies
389
+ - Updated dependencies
371
390
 
372
391
  ## 13.0.8
373
392
 
374
393
  ### Patch Changes
375
394
 
376
- - Updated dependencies
395
+ - Updated dependencies
377
396
 
378
397
  ## 13.0.7
379
398
 
380
399
  ### Patch Changes
381
400
 
382
- - [#31242](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31242)
383
- [`cfe48bb7ece`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cfe48bb7ece) -
384
- Internal change only. Replace usages of Inline/Stack with stable version from
385
- `@atlaskit/primitives`.
401
+ - [#31242](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31242)
402
+ [`cfe48bb7ece`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cfe48bb7ece) - Internal
403
+ change only. Replace usages of Inline/Stack with stable version from `@atlaskit/primitives`.
386
404
 
387
405
  ## 13.0.6
388
406
 
389
407
  ### Patch Changes
390
408
 
391
- - [#31041](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31041)
392
- [`842bb999a85`](https://bitbucket.org/atlassian/atlassian-frontend/commits/842bb999a85) -
393
- Internal change only. Replace usages of Inline/Stack with stable version from
394
- `@atlaskit/primitives`.
409
+ - [#31041](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31041)
410
+ [`842bb999a85`](https://bitbucket.org/atlassian/atlassian-frontend/commits/842bb999a85) - Internal
411
+ change only. Replace usages of Inline/Stack with stable version from `@atlaskit/primitives`.
395
412
 
396
413
  ## 13.0.5
397
414
 
398
415
  ### Patch Changes
399
416
 
400
- - [#30882](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30882)
401
- [`1fc7949b336`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1fc7949b336) - [ux]
402
- Fixes a bug where the background for the calendar element was incorrectly set to
403
- 'elevation.surface'
417
+ - [#30882](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30882)
418
+ [`1fc7949b336`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1fc7949b336) - [ux]
419
+ Fixes a bug where the background for the calendar element was incorrectly set to
420
+ 'elevation.surface'
404
421
 
405
422
  ## 13.0.4
406
423
 
407
424
  ### Patch Changes
408
425
 
409
- - Updated dependencies
426
+ - Updated dependencies
410
427
 
411
428
  ## 13.0.3
412
429
 
413
430
  ### Patch Changes
414
431
 
415
- - [#27634](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27634)
416
- [`22b754d311f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/22b754d311f) -
417
- Updates usage of removed design token `utilities.UNSAFE_util.transparent` in favour of its
418
- replacement `utilities.UNSAFE.transparent`
419
- - Updated dependencies
432
+ - [#27634](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27634)
433
+ [`22b754d311f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/22b754d311f) - Updates
434
+ usage of removed design token `utilities.UNSAFE_util.transparent` in favour of its replacement
435
+ `utilities.UNSAFE.transparent`
436
+ - Updated dependencies
420
437
 
421
438
  ## 13.0.2
422
439
 
423
440
  ### Patch Changes
424
441
 
425
- - [#27891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27891)
426
- [`eadbf13d8c0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eadbf13d8c0) -
427
- Updated usages of `Text`, `Box`, `Stack`, and `Inline` primitives to reflect their updated APIs.
428
- There are no visual or behaviour changes.
429
- - Updated dependencies
442
+ - [#27891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27891)
443
+ [`eadbf13d8c0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eadbf13d8c0) - Updated
444
+ usages of `Text`, `Box`, `Stack`, and `Inline` primitives to reflect their updated APIs. There are
445
+ no visual or behaviour changes.
446
+ - Updated dependencies
430
447
 
431
448
  ## 13.0.1
432
449
 
433
450
  ### Patch Changes
434
451
 
435
- - [#28064](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28064)
436
- [`b0f6dd0bc35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b0f6dd0bc35) -
437
- Updated to use typography tokens. There is no expected behaviour or visual change.
452
+ - [#28064](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28064)
453
+ [`b0f6dd0bc35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b0f6dd0bc35) - Updated
454
+ to use typography tokens. There is no expected behaviour or visual change.
438
455
 
439
456
  ## 13.0.0
440
457
 
441
458
  ### Major Changes
442
459
 
443
- - [#28165](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28165)
444
- [`642298a54dc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/642298a54dc) - Major
445
- changes:
460
+ - [#28165](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28165)
461
+ [`642298a54dc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/642298a54dc) - Major
462
+ changes:
446
463
 
447
- - Removing support for legacy dark mode.
464
+ - Removing support for legacy dark mode.
448
465
 
449
- Minor changes:
466
+ Minor changes:
450
467
 
451
- - Removal of row containers in day of month grid.
452
- - Vertically center heading inside the calendar.
453
- - Minor changes to visual layout to conform to design system tokens.
454
- - Composition change of DOM elements in day of week header.
455
- - Remove hardcoded `width: 289px`. Calendar now fills natural width of content.
468
+ - Removal of row containers in day of month grid.
469
+ - Vertically center heading inside the calendar.
470
+ - Minor changes to visual layout to conform to design system tokens.
471
+ - Composition change of DOM elements in day of week header.
472
+ - Remove hardcoded `width: 289px`. Calendar now fills natural width of content.
456
473
 
457
474
  ### Patch Changes
458
475
 
459
- - Updated dependencies
476
+ - Updated dependencies
460
477
 
461
478
  ## 12.4.5
462
479
 
463
480
  ### Patch Changes
464
481
 
465
- - Updated dependencies
482
+ - Updated dependencies
466
483
 
467
484
  ## 12.4.4
468
485
 
469
486
  ### Patch Changes
470
487
 
471
- - Updated dependencies
488
+ - Updated dependencies
472
489
 
473
490
  ## 12.4.3
474
491
 
475
492
  ### Patch Changes
476
493
 
477
- - Updated dependencies
494
+ - Updated dependencies
478
495
 
479
496
  ## 12.4.2
480
497
 
481
498
  ### Patch Changes
482
499
 
483
- - [#26488](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26488)
484
- [`bc989043572`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc989043572) -
485
- Internal changes to apply spacing tokens. This should be a no-op change.
500
+ - [#26488](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26488)
501
+ [`bc989043572`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc989043572) - Internal
502
+ changes to apply spacing tokens. This should be a no-op change.
486
503
 
487
504
  ## 12.4.1
488
505
 
489
506
  ### Patch Changes
490
507
 
491
- - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874)
492
- [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) -
493
- Upgrade Typescript from `4.3.5` to `4.5.5`
508
+ - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874)
509
+ [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade
510
+ Typescript from `4.3.5` to `4.5.5`
494
511
 
495
512
  ## 12.4.0
496
513
 
497
514
  ### Minor Changes
498
515
 
499
- - [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004)
500
- [`764726e020b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/764726e020b) -
501
- Updates `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
516
+ - [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004)
517
+ [`764726e020b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/764726e020b) - Updates
518
+ `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
502
519
 
503
520
  ### Patch Changes
504
521
 
505
- - Updated dependencies
522
+ - Updated dependencies
506
523
 
507
524
  ## 12.3.2
508
525
 
509
526
  ### Patch Changes
510
527
 
511
- - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492)
512
- [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) -
513
- Upgrade Typescript from `4.2.4` to `4.3.5`.
528
+ - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492)
529
+ [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade
530
+ Typescript from `4.2.4` to `4.3.5`.
514
531
 
515
532
  ## 12.3.1
516
533
 
517
534
  ### Patch Changes
518
535
 
519
- - [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381)
520
- [`124a1b7532b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/124a1b7532b) - Remove
521
- calendar's background when design tokens are provided, to allow calendar to match the color of
522
- any surface in light or dark mode
523
- - [`6bf81ead961`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6bf81ead961) -
524
- Internal code change turning on new linting rules.
525
- - Updated dependencies
536
+ - [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381)
537
+ [`124a1b7532b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/124a1b7532b) - Remove
538
+ calendar's background when design tokens are provided, to allow calendar to match the color of any
539
+ surface in light or dark mode
540
+ - [`6bf81ead961`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6bf81ead961) - Internal
541
+ code change turning on new linting rules.
542
+ - Updated dependencies
526
543
 
527
544
  ## 12.3.0
528
545
 
529
546
  ### Minor Changes
530
547
 
531
- - [#22642](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22642)
532
- [`e1e33cfe0db`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e1e33cfe0db) - [ux]
533
- Adds tabIndex prop for `@atlaskit/calendar`, useful when needing to disable calendar from
534
- receiving focus by keyboard.
548
+ - [#22642](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22642)
549
+ [`e1e33cfe0db`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e1e33cfe0db) - [ux]
550
+ Adds tabIndex prop for `@atlaskit/calendar`, useful when needing to disable calendar from
551
+ receiving focus by keyboard.
535
552
 
536
553
  ## 12.2.0
537
554
 
538
555
  ### Minor Changes
539
556
 
540
- - [#22029](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22029)
541
- [`6f7a4353204`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6f7a4353204) - Added
542
- ability to provide custom aria-labels for next- and previous-month buttons using
543
- `nextMonthLabel` and `previousMonthLabel`
557
+ - [#22029](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22029)
558
+ [`6f7a4353204`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6f7a4353204) - Added
559
+ ability to provide custom aria-labels for next- and previous-month buttons using `nextMonthLabel`
560
+ and `previousMonthLabel`
544
561
 
545
562
  ### Patch Changes
546
563
 
547
- - Updated dependencies
564
+ - Updated dependencies
548
565
 
549
566
  ## 12.1.14
550
567
 
551
568
  ### Patch Changes
552
569
 
553
- - [#21570](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21570)
554
- [`c8c7eec9fb8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c8c7eec9fb8) - [ux]
555
- Updates tokens used for selected hovered state
570
+ - [#21570](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21570)
571
+ [`c8c7eec9fb8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c8c7eec9fb8) - [ux]
572
+ Updates tokens used for selected hovered state
556
573
 
557
574
  ## 12.1.13
558
575
 
559
576
  ### Patch Changes
560
577
 
561
- - Updated dependencies
578
+ - Updated dependencies
562
579
 
563
580
  ## 12.1.12
564
581
 
565
582
  ### Patch Changes
566
583
 
567
- - [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650)
568
- [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) -
569
- Upgrade to TypeScript 4.2.4
570
- - Updated dependencies
584
+ - [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650)
585
+ [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade
586
+ to TypeScript 4.2.4
587
+ - Updated dependencies
571
588
 
572
589
  ## 12.1.11
573
590
 
574
591
  ### Patch Changes
575
592
 
576
- - Updated dependencies
593
+ - Updated dependencies
577
594
 
578
595
  ## 12.1.10
579
596
 
580
597
  ### Patch Changes
581
598
 
582
- - [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618)
583
- [`62edf20ab1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62edf20ab1e) -
584
- Migrates all usage of brand tokens to either selected or information tokens. This change is
585
- purely for semantic reasons, there are no visual or behavioural changes.
586
- - Updated dependencies
599
+ - [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618)
600
+ [`62edf20ab1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62edf20ab1e) - Migrates
601
+ all usage of brand tokens to either selected or information tokens. This change is purely for
602
+ semantic reasons, there are no visual or behavioural changes.
603
+ - Updated dependencies
587
604
 
588
605
  ## 12.1.9
589
606
 
590
607
  ### Patch Changes
591
608
 
592
- - Updated dependencies
609
+ - Updated dependencies
593
610
 
594
611
  ## 12.1.8
595
612
 
596
613
  ### Patch Changes
597
614
 
598
- - Updated dependencies
615
+ - Updated dependencies
599
616
 
600
617
  ## 12.1.7
601
618
 
602
619
  ### Patch Changes
603
620
 
604
- - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752)
605
- [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) -
606
- Updates usage of deprecated token names so they're aligned with the latest naming conventions.
607
- No UI or visual changes
608
- - Updated dependencies
621
+ - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752)
622
+ [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - Updates
623
+ usage of deprecated token names so they're aligned with the latest naming conventions. No UI or
624
+ visual changes
625
+ - Updated dependencies
609
626
 
610
627
  ## 12.1.6
611
628
 
612
629
  ### Patch Changes
613
630
 
614
- - Updated dependencies
631
+ - Updated dependencies
615
632
 
616
633
  ## 12.1.5
617
634
 
618
635
  ### Patch Changes
619
636
 
620
- - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998)
621
- [`f460cc7c411`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f460cc7c411) - Builds
622
- for this package now pass through a tokens babel plugin, removing runtime invocations of the
623
- tokens() function and improving bundle size.
624
- - Updated dependencies
637
+ - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998)
638
+ [`f460cc7c411`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f460cc7c411) - Builds
639
+ for this package now pass through a tokens babel plugin, removing runtime invocations of the
640
+ tokens() function and improving bundle size.
641
+ - Updated dependencies
625
642
 
626
643
  ## 12.1.4
627
644
 
628
645
  ### Patch Changes
629
646
 
630
- - Updated dependencies
647
+ - Updated dependencies
631
648
 
632
649
  ## 12.1.3
633
650
 
634
651
  ### Patch Changes
635
652
 
636
- - [#15531](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15531)
637
- [`192d35cfdbd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/192d35cfdbd) -
638
- Defaults native button usage to type="button" to prevent unintended submittig of forms.
639
- - [`f7d71a9ba09`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f7d71a9ba09) -
640
- Replaces visually hidden styles in component to instead use '@atlaskit/visually-hidden'.
653
+ - [#15531](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15531)
654
+ [`192d35cfdbd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/192d35cfdbd) - Defaults
655
+ native button usage to type="button" to prevent unintended submittig of forms.
656
+ - [`f7d71a9ba09`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f7d71a9ba09) - Replaces
657
+ visually hidden styles in component to instead use '@atlaskit/visually-hidden'.
641
658
 
642
659
  ## 12.1.2
643
660
 
644
661
  ### Patch Changes
645
662
 
646
- - Updated dependencies
663
+ - Updated dependencies
647
664
 
648
665
  ## 12.1.1
649
666
 
650
667
  ### Patch Changes
651
668
 
652
- - Updated dependencies
669
+ - Updated dependencies
653
670
 
654
671
  ## 12.1.0
655
672
 
656
673
  ### Minor Changes
657
674
 
658
- - [#13302](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13302)
659
- [`89c0316aa2c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/89c0316aa2c) -
660
- Instrumented Calendar with the new theming package, `@atlaskit/tokens`. Tokens will be visible
661
- only in applications configured to use the new Tokens API (currently in alpha).These changes are
662
- intended to be interoperable with the legacy theme implementation. Legacy dark mode users should
663
- expect no visual or breaking changes.
675
+ - [#13302](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13302)
676
+ [`89c0316aa2c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/89c0316aa2c) -
677
+ Instrumented Calendar with the new theming package, `@atlaskit/tokens`. Tokens will be visible
678
+ only in applications configured to use the new Tokens API (currently in alpha).These changes are
679
+ intended to be interoperable with the legacy theme implementation. Legacy dark mode users should
680
+ expect no visual or breaking changes.
664
681
 
665
682
  ### Patch Changes
666
683
 
667
- - [`2d7cc544696`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2d7cc544696) -
668
- Updates token usage to match the latest token set
669
- - Updated dependencies
684
+ - [`2d7cc544696`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2d7cc544696) - Updates
685
+ token usage to match the latest token set
686
+ - Updated dependencies
670
687
 
671
688
  ## 12.0.3
672
689
 
673
690
  ### Patch Changes
674
691
 
675
- - Updated dependencies
692
+ - Updated dependencies
676
693
 
677
694
  ## 12.0.2
678
695
 
679
696
  ### Patch Changes
680
697
 
681
- - [#9328](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9328)
682
- [`414b6216adf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/414b6216adf) -
683
- Upgrade date-fns to ^2.17
698
+ - [#9328](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9328)
699
+ [`414b6216adf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/414b6216adf) - Upgrade
700
+ date-fns to ^2.17
684
701
 
685
702
  ## 12.0.1
686
703
 
687
704
  ### Patch Changes
688
705
 
689
- - [#12880](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12880)
690
- [`378d1cef00f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/378d1cef00f) - Bump
691
- `@atlaskit/theme` to version `^11.3.0`.
706
+ - [#12880](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12880)
707
+ [`378d1cef00f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/378d1cef00f) - Bump
708
+ `@atlaskit/theme` to version `^11.3.0`.
692
709
 
693
710
  ## 12.0.0
694
711
 
695
712
  ### Major Changes
696
713
 
697
- - [#12328](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12328)
698
- [`4ab5a7e9069`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ab5a7e9069) - ###
699
- Major:
714
+ - [#12328](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12328)
715
+ [`4ab5a7e9069`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ab5a7e9069) - ###
716
+ Major:
700
717
 
701
- Removes `defaultDisabled` prop, a stateless/uncontrolled variant of the `disabled` prop. As a
702
- stateless calendar would never change its disabled dates, this prop was unnecessary.
718
+ Removes `defaultDisabled` prop, a stateless/uncontrolled variant of the `disabled` prop. As a
719
+ stateless calendar would never change its disabled dates, this prop was unnecessary.
703
720
 
704
- ### New Features:
721
+ ### New Features:
705
722
 
706
- Adds three props to make disabling dates more practical, performant and expressive in
707
- `@atlaskit/calendar`. These features are also available for DatePicker:
723
+ Adds three props to make disabling dates more practical, performant and expressive in
724
+ `@atlaskit/calendar`. These features are also available for DatePicker:
708
725
 
709
- - `minDate` for the minimum valid date
710
- - `maxDate` for the maximum valid date
711
- - `disabledDateFilter`, a function that takes a date string, and returns whether or not it
712
- should be disabled.
726
+ - `minDate` for the minimum valid date
727
+ - `maxDate` for the maximum valid date
728
+ - `disabledDateFilter`, a function that takes a date string, and returns whether or not it should
729
+ be disabled.
713
730
 
714
- ### Bugs
731
+ ### Bugs
715
732
 
716
- - Disabled dates that lie outside of the currently selected month now have correct hover
717
- styles
733
+ - Disabled dates that lie outside of the currently selected month now have correct hover styles
718
734
 
719
735
  ### Patch Changes
720
736
 
721
- - Updated dependencies
737
+ - Updated dependencies
722
738
 
723
739
  ## 11.1.1
724
740
 
725
741
  ### Patch Changes
726
742
 
727
- - [#12167](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12167)
728
- [`d6f7ff383cf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6f7ff383cf) -
729
- Updates to development dependency `storybook-addon-performance`
743
+ - [#12167](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12167)
744
+ [`d6f7ff383cf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6f7ff383cf) - Updates
745
+ to development dependency `storybook-addon-performance`
730
746
 
731
747
  ## 11.1.0
732
748
 
733
749
  ### Minor Changes
734
750
 
735
- - [#10230](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10230)
736
- [`d872280cff1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d872280cff1) -
737
- Calendar now exports a `WeekDay` type. This is the type used by the `weekStartDay` prop.
751
+ - [#10230](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10230)
752
+ [`d872280cff1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d872280cff1) - Calendar
753
+ now exports a `WeekDay` type. This is the type used by the `weekStartDay` prop.
738
754
 
739
755
  ### Patch Changes
740
756
 
741
- - Updated dependencies
757
+ - Updated dependencies
742
758
 
743
759
  ## 11.0.1
744
760
 
745
761
  ### Patch Changes
746
762
 
747
- - [#9756](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9756)
748
- [`4eb2615652c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4eb2615652c) -
749
- Internal refactor to use common utils.
750
- - Updated dependencies
763
+ - [#9756](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9756)
764
+ [`4eb2615652c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4eb2615652c) - Internal
765
+ refactor to use common utils.
766
+ - Updated dependencies
751
767
 
752
768
  ## 11.0.0
753
769
 
754
770
  ### Major Changes
755
771
 
756
- - [#9083](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9083)
757
- [`8ed4c2efc42`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8ed4c2efc42) - In
758
- this version we made calendar dramatically faster and lighter 🤩
772
+ - [#9083](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9083)
773
+ [`8ed4c2efc42`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8ed4c2efc42) - In this
774
+ version we made calendar dramatically faster and lighter 🤩
759
775
 
760
- - General performance improvements
761
- - Moved from using tables to CSS grid to display the days
762
- - Removed unnecessary DOM elements
763
- - The `className` and `style` props have been added
764
- - **BREAKING** The `innerProps` prop has been removed, generally consumers have only used this
765
- for style props which are now available directly
776
+ - General performance improvements
777
+ - Moved from using tables to CSS grid to display the days
778
+ - Removed unnecessary DOM elements
779
+ - The `className` and `style` props have been added
780
+ - **BREAKING** The `innerProps` prop has been removed, generally consumers have only used this for
781
+ style props which are now available directly
766
782
 
767
- **Running the codemod cli**
783
+ **Running the codemod cli**
768
784
 
769
- To run the codemod: **You first need to have the latest version installed**
785
+ To run the codemod: **You first need to have the latest version installed**
770
786
 
771
- ```bash
772
- yarn upgrade @atlaskit/calendar@^11.0.0
773
- ```
787
+ ```bash
788
+ yarn upgrade @atlaskit/calendar@^11.0.0
789
+ ```
774
790
 
775
- Once upgraded, use `@atlaskit/codemod-cli` via `npx`:
791
+ Once upgraded, use `@atlaskit/codemod-cli` via `npx`:
776
792
 
777
- ```bash
778
- npx @atlaskit/codemod-cli --parser babel --extensions ts,tsx,js [relativePath]
779
- ```
793
+ ```bash
794
+ npx @atlaskit/codemod-cli --parser babel --extensions ts,tsx,js [relativePath]
795
+ ```
780
796
 
781
- The CLI will show a list of components and versions so select `@atlaskit/calendar@^11.0.0` and
782
- you will automatically be upgraded. If your usage of calendar cannot be upgraded a comment will
783
- be left that a manual change is required.
797
+ The CLI will show a list of components and versions so select `@atlaskit/calendar@^11.0.0` and you
798
+ will automatically be upgraded. If your usage of calendar cannot be upgraded a comment will be
799
+ left that a manual change is required.
784
800
 
785
- Run `npx @atlaskit/codemod-cli -h` for more details on usage. For Atlassians, refer to the
786
- [documentation](https://hello.atlassian.net/wiki/spaces/AF/pages/2627171992/Codemods) for more
787
- details on the codemod CLI.
801
+ Run `npx @atlaskit/codemod-cli -h` for more details on usage. For Atlassians, refer to the
802
+ [documentation](https://hello.atlassian.net/wiki/spaces/AF/pages/2627171992/Codemods) for more
803
+ details on the codemod CLI.
788
804
 
789
805
  ### Patch Changes
790
806
 
791
- - [`c119fdd32e7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c119fdd32e7) -
792
- Internal change to update usage of the custom `glyph` prop in @atlaskit/icon.
793
- - Updated dependencies
807
+ - [`c119fdd32e7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c119fdd32e7) - Internal
808
+ change to update usage of the custom `glyph` prop in @atlaskit/icon.
809
+ - Updated dependencies
794
810
 
795
811
  ## 10.3.3
796
812
 
797
813
  ### Patch Changes
798
814
 
799
- - [#9299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9299)
800
- [`471e2431a7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/471e2431a7c) -
801
- Downgrade back to date-fns 1.30.1 We discovered big bundle size increases associated with the
802
- date-fns upgrade. We're reverting the upgarde to investigate
815
+ - [#9299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9299)
816
+ [`471e2431a7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/471e2431a7c) -
817
+ Downgrade back to date-fns 1.30.1 We discovered big bundle size increases associated with the
818
+ date-fns upgrade. We're reverting the upgarde to investigate
803
819
 
804
820
  ## 10.3.2
805
821
 
806
822
  ### Patch Changes
807
823
 
808
- - [#8291](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8291)
809
- [`70f0701c2e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70f0701c2e6) -
810
- Upgrade date-fns to 2.17
824
+ - [#8291](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8291)
825
+ [`70f0701c2e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70f0701c2e6) - Upgrade
826
+ date-fns to 2.17
811
827
 
812
828
  ## 10.3.1
813
829
 
814
830
  ### Patch Changes
815
831
 
816
- - [#8644](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8644)
817
- [`79c23df6340`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79c23df6340) - Use
818
- injected package name and version for analytics instead of version.json.
819
- - [`42785088a12`](https://bitbucket.org/atlassian/atlassian-frontend/commits/42785088a12) - -
820
- Migrate old entry points to new one. Calendar now has only following exports:
832
+ - [#8644](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8644)
833
+ [`79c23df6340`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79c23df6340) - Use
834
+ injected package name and version for analytics instead of version.json.
835
+ - [`42785088a12`](https://bitbucket.org/atlassian/atlassian-frontend/commits/42785088a12) - -
836
+ Migrate old entry points to new one. Calendar now has only following exports:
821
837
 
822
- - **default export**. Can be imported like:
823
- - `import Calendar from '@atlaskit/calendar'`
824
- - **named type exports** (`CalendarProps`, `ChangeEvent`, `SelectEvent`). Can be imported
825
- like:
826
- - `import { CalendarProps, ChangeEvent, SelectEvent } from '@atlaskit/calendar'`
827
- - `import { CalendarProps, ChangeEvent, SelectEvent } from '@atlaskit/calendar/types'`.
838
+ - **default export**. Can be imported like:
839
+ - `import Calendar from '@atlaskit/calendar'`
840
+ - **named type exports** (`CalendarProps`, `ChangeEvent`, `SelectEvent`). Can be imported like:
841
+ - `import { CalendarProps, ChangeEvent, SelectEvent } from '@atlaskit/calendar'`
842
+ - `import { CalendarProps, ChangeEvent, SelectEvent } from '@atlaskit/calendar/types'`.
828
843
 
829
- **Internal change**
844
+ **Internal change**
830
845
 
831
- - Remove reference of private types and props from the documentation. Right now private type
832
- is `CalendarInternalRef` and private prop is `calendarRef`.
833
- - Rename calendar exported private ref type from `CalendarInternalRef` to `CalendarRef`.
834
- - Rename calendar private prop from `internalRef` to `calendarRef`.
846
+ - Remove reference of private types and props from the documentation. Right now private type is
847
+ `CalendarInternalRef` and private prop is `calendarRef`.
848
+ - Rename calendar exported private ref type from `CalendarInternalRef` to `CalendarRef`.
849
+ - Rename calendar private prop from `internalRef` to `calendarRef`.
835
850
 
836
- - [`f74ba30c53c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f74ba30c53c) -
837
- **Internal change**
851
+ - [`f74ba30c53c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f74ba30c53c) -
852
+ **Internal change**
838
853
 
839
- - We have improved re-rendering quite a bit by memoizing components, loops and rendered
840
- elements.
841
- - Duplicate "pad-to-two" util has been removed.
842
- - Refactored few variables/functions/types.
843
- - Extracted out few components for readability purpose.
854
+ - We have improved re-rendering quite a bit by memoizing components, loops and rendered elements.
855
+ - Duplicate "pad-to-two" util has been removed.
856
+ - Refactored few variables/functions/types.
857
+ - Extracted out few components for readability purpose.
844
858
 
845
- - Updated dependencies
859
+ - Updated dependencies
846
860
 
847
861
  ## 10.3.0
848
862
 
849
863
  ### Minor Changes
850
864
 
851
- - [#8178](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8178)
852
- [`d069f7834ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d069f7834ef) -
853
- Calendar now accepts a `weekStartDay` prop that controls which day of the week should be used at
854
- the start. This prop accepts the following values:
865
+ - [#8178](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8178)
866
+ [`d069f7834ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d069f7834ef) - Calendar
867
+ now accepts a `weekStartDay` prop that controls which day of the week should be used at the start.
868
+ This prop accepts the following values:
855
869
 
856
- - `0` sunday (default value)
857
- - `1` monday
858
- - `2` tuesday
859
- - `3` wednesday
860
- - `4` thursday
861
- - `5` friday
862
- - `6` saturday
870
+ - `0` sunday (default value)
871
+ - `1` monday
872
+ - `2` tuesday
873
+ - `3` wednesday
874
+ - `4` thursday
875
+ - `5` friday
876
+ - `6` saturday
863
877
 
864
- - [`ccde1b6b939`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ccde1b6b939) -
865
- Convert all styles of Calendar from styled-components to emotion CSS and apply different styles
866
- via data-attributes. Internally theme mode is now accessed via Global theme context and used to
867
- generate colors.
868
- - [`e20f4c2806e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e20f4c2806e) -
869
- Improvement in internal analytics performance
878
+ - [`ccde1b6b939`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ccde1b6b939) - Convert
879
+ all styles of Calendar from styled-components to emotion CSS and apply different styles via
880
+ data-attributes. Internally theme mode is now accessed via Global theme context and used to
881
+ generate colors.
882
+ - [`e20f4c2806e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e20f4c2806e) -
883
+ Improvement in internal analytics performance
870
884
 
871
- **Dev changes**
885
+ **Dev changes**
872
886
 
873
- - Migrated from `@atlaskit/analytics-next` React HOC to React hooks. This improved
874
- re-rendering quite a bit.
887
+ - Migrated from `@atlaskit/analytics-next` React HOC to React hooks. This improved re-rendering
888
+ quite a bit.
875
889
 
876
890
  ### Patch Changes
877
891
 
878
- - [`aedbf4ed383`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aedbf4ed383) -
879
- **Internal change**
892
+ - [`aedbf4ed383`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aedbf4ed383) -
893
+ **Internal change**
880
894
 
881
- We have removed [calendar-base](https://www.npmjs.com/package/calendar-base) dependency which
882
- was not maintained for quite sometime and moved its logic internally. This will help us fixing
883
- any issue we might get or any new functionality we might want to support.
895
+ We have removed [calendar-base](https://www.npmjs.com/package/calendar-base) dependency which was
896
+ not maintained for quite sometime and moved its logic internally. This will help us fixing any
897
+ issue we might get or any new functionality we might want to support.
884
898
 
885
- - Updated dependencies
899
+ - Updated dependencies
886
900
 
887
901
  ## 10.2.0
888
902
 
889
903
  ### Minor Changes
890
904
 
891
- - [#8029](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8029)
892
- [`4dae77b2678`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4dae77b2678) -
893
- Calendar now accepts a `weekStartDay` prop that controls which day of the week should be used at
894
- the start. This prop accepts the following values:
905
+ - [#8029](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8029)
906
+ [`4dae77b2678`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4dae77b2678) - Calendar
907
+ now accepts a `weekStartDay` prop that controls which day of the week should be used at the start.
908
+ This prop accepts the following values:
895
909
 
896
- - `0` sunday (default value)
897
- - `1` monday
898
- - `2` tuesday
899
- - `3` wednesday
900
- - `4` thursday
901
- - `5` friday
902
- - `6` saturday
910
+ - `0` sunday (default value)
911
+ - `1` monday
912
+ - `2` tuesday
913
+ - `3` wednesday
914
+ - `4` thursday
915
+ - `5` friday
916
+ - `6` saturday
903
917
 
904
918
  ### Patch Changes
905
919
 
906
- - Updated dependencies
920
+ - Updated dependencies
907
921
 
908
922
  ## 10.1.0
909
923
 
910
924
  ### Minor Changes
911
925
 
912
- - [#7762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7762)
913
- [`985961ce983`](https://bitbucket.org/atlassian/atlassian-frontend/commits/985961ce983) -
914
- Internal change from class to function components
915
-
916
- - We have converted all the components from class to functional. This improved performance
917
- quite a bit. Initial rendering, hydration, interaction, bundlesize and re-rendering; all
918
- have been improved.
919
- - We have made all the prop typings optional now. Earlier they were not aligned with the prop
920
- values (which were all optional earlier).
921
- - We have stopped exporting internal `CalendarClassType` and `ArrowKeys` types which were not
922
- compatible with functional components. Instead we have exported `CalendarInternalRef` type
923
- temporarily for backward compatibility and a new optional prop `internalRef` which consumers
924
- can use to access internal api's. Right now only `@atlaskit/datetime-picker` uses
925
- `navigate()` api for navigation which will be removed soon. This new type and prop are not
926
- recommended. So please don't use them.
927
- - We have also exported a new type `SelectEvent` along with already exported `ChangeEvent`,
928
- which consumers can use with `onSelect` and `onChange` prop.
929
- - We have also added `ref` support which points to the top level element. Earlier it was not
930
- officially supported.
931
- - Dev changes includes: folder restructuring and cleanup, lodash removal, memoizing components
932
- etc.
926
+ - [#7762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7762)
927
+ [`985961ce983`](https://bitbucket.org/atlassian/atlassian-frontend/commits/985961ce983) - Internal
928
+ change from class to function components
929
+
930
+ - We have converted all the components from class to functional. This improved performance quite a
931
+ bit. Initial rendering, hydration, interaction, bundlesize and re-rendering; all have been
932
+ improved.
933
+ - We have made all the prop typings optional now. Earlier they were not aligned with the prop
934
+ values (which were all optional earlier).
935
+ - We have stopped exporting internal `CalendarClassType` and `ArrowKeys` types which were not
936
+ compatible with functional components. Instead we have exported `CalendarInternalRef` type
937
+ temporarily for backward compatibility and a new optional prop `internalRef` which consumers can
938
+ use to access internal api's. Right now only `@atlaskit/datetime-picker` uses `navigate()` api
939
+ for navigation which will be removed soon. This new type and prop are not recommended. So please
940
+ don't use them.
941
+ - We have also exported a new type `SelectEvent` along with already exported `ChangeEvent`, which
942
+ consumers can use with `onSelect` and `onChange` prop.
943
+ - We have also added `ref` support which points to the top level element. Earlier it was not
944
+ officially supported.
945
+ - Dev changes includes: folder restructuring and cleanup, lodash removal, memoizing components
946
+ etc.
933
947
 
934
948
  ## 10.0.10
935
949
 
936
950
  ### Patch Changes
937
951
 
938
- - [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857)
939
- [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) -
940
- Transpile packages using babel rather than tsc
952
+ - [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857)
953
+ [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile
954
+ packages using babel rather than tsc
941
955
 
942
956
  ## 10.0.9
943
957
 
944
958
  ### Patch Changes
945
959
 
946
- - [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497)
947
- [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export
948
- types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules
949
- compiler option. This requires version 3.8 of Typescript, read more about how we handle
950
- Typescript versions here: https://atlaskit.atlassian.com/get-started Also add `typescript` to
951
- `devDependencies` to denote version that the package was built with.
960
+ - [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497)
961
+ [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export
962
+ types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules
963
+ compiler option. This requires version 3.8 of Typescript, read more about how we handle Typescript
964
+ versions here: https://atlaskit.atlassian.com/get-started Also add `typescript` to
965
+ `devDependencies` to denote version that the package was built with.
952
966
 
953
967
  ## 10.0.8
954
968
 
955
969
  ### Patch Changes
956
970
 
957
- - Updated dependencies
971
+ - Updated dependencies
958
972
 
959
973
  ## 10.0.7
960
974
 
961
975
  ### Patch Changes
962
976
 
963
- - [#5164](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5164)
964
- [`2ac834240e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2ac834240e) - Undo
965
- analytics-next file restructure to allow external ts definitions to continue working
977
+ - [#5164](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5164)
978
+ [`2ac834240e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2ac834240e) - Undo
979
+ analytics-next file restructure to allow external ts definitions to continue working
966
980
 
967
981
  ## 10.0.6
968
982
 
969
983
  ### Patch Changes
970
984
 
971
- - Updated dependencies
985
+ - Updated dependencies
972
986
 
973
987
  ## 10.0.5
974
988
 
975
989
  ### Patch Changes
976
990
 
977
- - [#4649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4649)
978
- [`b284fba3d1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b284fba3d1) -
979
- Components that had missing names are now fixed - this helps when looking for them using the
980
- React Dev Tools.
991
+ - [#4649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4649)
992
+ [`b284fba3d1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b284fba3d1) - Components
993
+ that had missing names are now fixed - this helps when looking for them using the React Dev Tools.
981
994
 
982
995
  ## 10.0.4
983
996
 
984
997
  ### Patch Changes
985
998
 
986
- - [#4707](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4707)
987
- [`6360c46009`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6360c46009) - Reenable
988
- integration tests for Edge browser
999
+ - [#4707](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4707)
1000
+ [`6360c46009`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6360c46009) - Reenable
1001
+ integration tests for Edge browser
989
1002
 
990
1003
  ## 10.0.3
991
1004
 
992
1005
  ### Patch Changes
993
1006
 
994
- - [#4424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4424)
995
- [`8598d0bd13`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8598d0bd13) - Remove
996
- unnecessary code and tests for IE11.
997
- - Updated dependencies
1007
+ - [#4424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4424)
1008
+ [`8598d0bd13`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8598d0bd13) - Remove
1009
+ unnecessary code and tests for IE11.
1010
+ - Updated dependencies
998
1011
 
999
1012
  ## 10.0.2
1000
1013
 
1001
1014
  ### Patch Changes
1002
1015
 
1003
- - [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885)
1004
- [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded
1005
- to TypeScript 3.9.6 and tslib to 2.0.0
1016
+ - [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885)
1017
+ [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded
1018
+ to TypeScript 3.9.6 and tslib to 2.0.0
1006
1019
 
1007
- Since tslib is a dependency for all our packages we recommend that products also follow this
1008
- tslib upgrade to prevent duplicates of tslib being bundled.
1020
+ Since tslib is a dependency for all our packages we recommend that products also follow this tslib
1021
+ upgrade to prevent duplicates of tslib being bundled.
1009
1022
 
1010
1023
  ## 10.0.1
1011
1024
 
1012
1025
  ### Patch Changes
1013
1026
 
1014
- - [#3823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3823)
1015
- [`6262f382de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6262f382de) - Use the
1016
- 'lodash' package instead of single-function 'lodash.\*' packages
1017
- - Updated dependencies
1027
+ - [#3823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3823)
1028
+ [`6262f382de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6262f382de) - Use the
1029
+ 'lodash' package instead of single-function 'lodash.\*' packages
1030
+ - Updated dependencies
1018
1031
 
1019
1032
  ## 10.0.0
1020
1033
 
1021
1034
  ### Major Changes
1022
1035
 
1023
- - [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335)
1024
- [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) -
1025
- Officially dropping IE11 support, from this version onwards there are no warranties of the
1026
- package working in IE11. For more information see:
1027
- https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
1036
+ - [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335)
1037
+ [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially
1038
+ dropping IE11 support, from this version onwards there are no warranties of the package working in
1039
+ IE11. For more information see:
1040
+ https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
1028
1041
 
1029
1042
  ### Patch Changes
1030
1043
 
1031
- - Updated dependencies
1044
+ - Updated dependencies
1032
1045
 
1033
1046
  ## 9.2.10
1034
1047
 
1035
1048
  ### Patch Changes
1036
1049
 
1037
- - [#2443](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2443)
1038
- [`69643331c3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/69643331c3) - Prevent
1039
- day names table header from wrapping into two line
1050
+ - [#2443](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2443)
1051
+ [`69643331c3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/69643331c3) - Prevent
1052
+ day names table header from wrapping into two line
1040
1053
 
1041
1054
  ## 9.2.9
1042
1055
 
1043
1056
  ### Patch Changes
1044
1057
 
1045
- - [#2866](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2866)
1046
- [`54a9514fcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54a9514fcf) - Build
1047
- and supporting files will no longer be published to npm
1058
+ - [#2866](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2866)
1059
+ [`54a9514fcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54a9514fcf) - Build and
1060
+ supporting files will no longer be published to npm
1048
1061
 
1049
1062
  ## 9.2.8
1050
1063
 
1051
1064
  ### Patch Changes
1052
1065
 
1053
- - Updated dependencies
1066
+ - Updated dependencies
1054
1067
 
1055
1068
  ## 9.2.7
1056
1069
 
1057
1070
  ### Patch Changes
1058
1071
 
1059
- - [patch][62390c4755](https://bitbucket.org/atlassian/atlassian-frontend/commits/62390c4755):
1072
+ - [patch][62390c4755](https://bitbucket.org/atlassian/atlassian-frontend/commits/62390c4755):
1060
1073
 
1061
- Change imports to comply with Atlassian conventions- Updated dependencies
1062
- [6b8e60827e](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b8e60827e):
1074
+ Change imports to comply with Atlassian conventions- Updated dependencies
1075
+ [6b8e60827e](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b8e60827e):
1063
1076
 
1064
- - Updated dependencies
1065
- [449ef134b3](https://bitbucket.org/atlassian/atlassian-frontend/commits/449ef134b3):
1066
- - Updated dependencies
1067
- [57c0487a02](https://bitbucket.org/atlassian/atlassian-frontend/commits/57c0487a02):
1068
- - Updated dependencies
1069
- [6efb12e06d](https://bitbucket.org/atlassian/atlassian-frontend/commits/6efb12e06d):
1070
- - Updated dependencies
1071
- [fd41d77c29](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd41d77c29):
1072
- - @atlaskit/button@13.3.11
1073
- - @atlaskit/icon@20.1.1
1074
- - @atlaskit/select@11.0.10
1075
- - @atlaskit/webdriver-runner@0.3.4
1077
+ - Updated dependencies
1078
+ [449ef134b3](https://bitbucket.org/atlassian/atlassian-frontend/commits/449ef134b3):
1079
+ - Updated dependencies
1080
+ [57c0487a02](https://bitbucket.org/atlassian/atlassian-frontend/commits/57c0487a02):
1081
+ - Updated dependencies
1082
+ [6efb12e06d](https://bitbucket.org/atlassian/atlassian-frontend/commits/6efb12e06d):
1083
+ - Updated dependencies
1084
+ [fd41d77c29](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd41d77c29):
1085
+ - @atlaskit/button@13.3.11
1086
+ - @atlaskit/icon@20.1.1
1087
+ - @atlaskit/select@11.0.10
1088
+ - @atlaskit/webdriver-runner@0.3.4
1076
1089
 
1077
1090
  ## 9.2.6
1078
1091
 
1079
1092
  ### Patch Changes
1080
1093
 
1081
- - Updated dependencies
1082
- [66dcced7a0](https://bitbucket.org/atlassian/atlassian-frontend/commits/66dcced7a0):
1083
- - Updated dependencies
1084
- [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1085
- - Updated dependencies
1086
- [64fb94fb1e](https://bitbucket.org/atlassian/atlassian-frontend/commits/64fb94fb1e):
1087
- - Updated dependencies
1088
- [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1089
- - Updated dependencies
1090
- [eea5e9bd8c](https://bitbucket.org/atlassian/atlassian-frontend/commits/eea5e9bd8c):
1091
- - Updated dependencies
1092
- [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1093
- - Updated dependencies
1094
- [109c1a2c0a](https://bitbucket.org/atlassian/atlassian-frontend/commits/109c1a2c0a):
1095
- - Updated dependencies
1096
- [c57bb32f6d](https://bitbucket.org/atlassian/atlassian-frontend/commits/c57bb32f6d):
1097
- - @atlaskit/docs@8.4.0
1098
- - @atlaskit/icon@20.1.0
1099
- - @atlaskit/webdriver-runner@0.3.0
1100
- - @atlaskit/button@13.3.9
1101
- - @atlaskit/select@11.0.9
1094
+ - Updated dependencies
1095
+ [66dcced7a0](https://bitbucket.org/atlassian/atlassian-frontend/commits/66dcced7a0):
1096
+ - Updated dependencies
1097
+ [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1098
+ - Updated dependencies
1099
+ [64fb94fb1e](https://bitbucket.org/atlassian/atlassian-frontend/commits/64fb94fb1e):
1100
+ - Updated dependencies
1101
+ [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1102
+ - Updated dependencies
1103
+ [eea5e9bd8c](https://bitbucket.org/atlassian/atlassian-frontend/commits/eea5e9bd8c):
1104
+ - Updated dependencies
1105
+ [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1106
+ - Updated dependencies
1107
+ [109c1a2c0a](https://bitbucket.org/atlassian/atlassian-frontend/commits/109c1a2c0a):
1108
+ - Updated dependencies
1109
+ [c57bb32f6d](https://bitbucket.org/atlassian/atlassian-frontend/commits/c57bb32f6d):
1110
+ - @atlaskit/docs@8.4.0
1111
+ - @atlaskit/icon@20.1.0
1112
+ - @atlaskit/webdriver-runner@0.3.0
1113
+ - @atlaskit/button@13.3.9
1114
+ - @atlaskit/select@11.0.9
1102
1115
 
1103
1116
  ## 9.2.5
1104
1117
 
1105
1118
  ### Patch Changes
1106
1119
 
1107
- - Updated dependencies
1108
- [e3f01787dd](https://bitbucket.org/atlassian/atlassian-frontend/commits/e3f01787dd):
1109
- - @atlaskit/webdriver-runner@0.2.0
1110
- - @atlaskit/button@13.3.8
1111
- - @atlaskit/select@11.0.8
1120
+ - Updated dependencies
1121
+ [e3f01787dd](https://bitbucket.org/atlassian/atlassian-frontend/commits/e3f01787dd):
1122
+ - @atlaskit/webdriver-runner@0.2.0
1123
+ - @atlaskit/button@13.3.8
1124
+ - @atlaskit/select@11.0.8
1112
1125
 
1113
1126
  ## 9.2.4
1114
1127
 
1115
1128
  ### Patch Changes
1116
1129
 
1117
- - [patch][6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
1130
+ - [patch][6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
1118
1131
 
1119
- Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
1120
- [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
1132
+ Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
1133
+ [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
1121
1134
 
1122
- - @atlaskit/docs@8.3.2
1123
- - @atlaskit/analytics-next@6.3.5
1124
- - @atlaskit/button@13.3.7
1125
- - @atlaskit/icon@20.0.1
1126
- - @atlaskit/select@11.0.7
1127
- - @atlaskit/theme@9.5.1
1128
- - @atlaskit/locale@1.0.5
1135
+ - @atlaskit/docs@8.3.2
1136
+ - @atlaskit/analytics-next@6.3.5
1137
+ - @atlaskit/button@13.3.7
1138
+ - @atlaskit/icon@20.0.1
1139
+ - @atlaskit/select@11.0.7
1140
+ - @atlaskit/theme@9.5.1
1141
+ - @atlaskit/locale@1.0.5
1129
1142
 
1130
1143
  ## 9.2.3
1131
1144
 
1132
1145
  ### Patch Changes
1133
1146
 
1134
- - Updated dependencies
1135
- [c0102a3ea2](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0102a3ea2):
1136
- - @atlaskit/icon@20.0.0
1137
- - @atlaskit/locale@1.0.4
1138
- - @atlaskit/docs@8.3.1
1139
- - @atlaskit/button@13.3.6
1140
- - @atlaskit/select@11.0.6
1147
+ - Updated dependencies
1148
+ [c0102a3ea2](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0102a3ea2):
1149
+ - @atlaskit/icon@20.0.0
1150
+ - @atlaskit/locale@1.0.4
1151
+ - @atlaskit/docs@8.3.1
1152
+ - @atlaskit/button@13.3.6
1153
+ - @atlaskit/select@11.0.6
1141
1154
 
1142
1155
  ## 9.2.2
1143
1156
 
1144
1157
  ### Patch Changes
1145
1158
 
1146
- - [patch][36f6e99c5b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/36f6e99c5b):
1159
+ - [patch][36f6e99c5b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/36f6e99c5b):
1147
1160
 
1148
- Fix type errors caused when generating declaration files
1161
+ Fix type errors caused when generating declaration files
1149
1162
 
1150
1163
  ## 9.2.1
1151
1164
 
1152
- - Updated dependencies
1153
- [30acc30979](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/30acc30979):
1154
- - @atlaskit/select@11.0.0
1155
- - @atlaskit/button@13.3.4
1156
- - @atlaskit/locale@1.0.2
1165
+ - Updated dependencies
1166
+ [30acc30979](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/30acc30979):
1167
+ - @atlaskit/select@11.0.0
1168
+ - @atlaskit/button@13.3.4
1169
+ - @atlaskit/locale@1.0.2
1157
1170
 
1158
1171
  ## 9.2.0
1159
1172
 
1160
1173
  ### Minor Changes
1161
1174
 
1162
- - [minor][7fe4bcf86d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7fe4bcf86d):
1175
+ - [minor][7fe4bcf86d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7fe4bcf86d):
1163
1176
 
1164
- Adding an optional prop `testId` that will set the attribute value `data-testid`. It will help
1165
- products to write better integration and end to end tests.
1177
+ Adding an optional prop `testId` that will set the attribute value `data-testid`. It will help
1178
+ products to write better integration and end to end tests.
1166
1179
 
1167
1180
  ## 9.1.1
1168
1181
 
1169
1182
  ### Patch Changes
1170
1183
 
1171
- - [patch][35d2229b2a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/35d2229b2a):
1184
+ - [patch][35d2229b2a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/35d2229b2a):
1172
1185
 
1173
- Adding missing license to packages and update to Copyright 2019 Atlassian Pty Ltd.
1186
+ Adding missing license to packages and update to Copyright 2019 Atlassian Pty Ltd.
1174
1187
 
1175
1188
  ## 9.1.0
1176
1189
 
1177
1190
  ### Minor Changes
1178
1191
 
1179
- - [minor][cc42bbc6ad](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc42bbc6ad):
1192
+ - [minor][cc42bbc6ad](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc42bbc6ad):
1180
1193
 
1181
- Exporting type of Calendar class and some components are relying on it
1194
+ Exporting type of Calendar class and some components are relying on it
1182
1195
 
1183
1196
  ## 9.0.1
1184
1197
 
1185
1198
  ### Patch Changes
1186
1199
 
1187
- - [patch][a2d0043716](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a2d0043716):
1200
+ - [patch][a2d0043716](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a2d0043716):
1188
1201
 
1189
- Updated version of analytics-next to fix potential incompatibilities with TS 3.6
1202
+ Updated version of analytics-next to fix potential incompatibilities with TS 3.6
1190
1203
 
1191
1204
  ## 9.0.0
1192
1205
 
1193
1206
  ### Major Changes
1194
1207
 
1195
- - [major][8c725d46ec](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8c725d46ec):
1208
+ - [major][8c725d46ec](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8c725d46ec):
1196
1209
 
1197
- @atlaskit/calendar has been converted to Typescript. Typescript consumers will now get static
1198
- type safety. Flow types are no longer provided. No API or behavioural changes.
1210
+ @atlaskit/calendar has been converted to Typescript. Typescript consumers will now get static type
1211
+ safety. Flow types are no longer provided. No API or behavioural changes.
1199
1212
 
1200
1213
  ## 8.1.0
1201
1214
 
1202
1215
  ### Minor Changes
1203
1216
 
1204
- - [minor][e3d466543f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e3d466543f):
1217
+ - [minor][e3d466543f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e3d466543f):
1205
1218
 
1206
- Add locale support for Calendar/DateTimePicker/DatePicker/TimePicker:
1219
+ Add locale support for Calendar/DateTimePicker/DatePicker/TimePicker:
1207
1220
 
1208
- - New prop `locale` enables localization for date/time format in `DatePicker`, `TimePicker`
1209
- and `DateTimePicker`, and months/days in `Calendar`.
1210
- - Deprecated `dateFormat`, `timeFormat` and `formatDisplayLabel` props. Please use `locale`
1211
- instead. If provided, these props will override `locale`.
1212
- - Default date/time placeholders now use `locale` to format the date.
1213
- - The default date parser for `DatePicker` has been changed from `date-fns.parse` to one based
1214
- on the `locale` prop and accept text in a format that matches the placeholder.
1221
+ - New prop `locale` enables localization for date/time format in `DatePicker`, `TimePicker` and
1222
+ `DateTimePicker`, and months/days in `Calendar`.
1223
+ - Deprecated `dateFormat`, `timeFormat` and `formatDisplayLabel` props. Please use `locale`
1224
+ instead. If provided, these props will override `locale`.
1225
+ - Default date/time placeholders now use `locale` to format the date.
1226
+ - The default date parser for `DatePicker` has been changed from `date-fns.parse` to one based on
1227
+ the `locale` prop and accept text in a format that matches the placeholder.
1215
1228
 
1216
1229
  ## 8.0.10
1217
1230
 
1218
1231
  ### Patch Changes
1219
1232
 
1220
- - [patch][097b696613](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/097b696613):
1233
+ - [patch][097b696613](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/097b696613):
1221
1234
 
1222
- Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving
1223
- non-relative imports as relative imports
1235
+ Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving
1236
+ non-relative imports as relative imports
1224
1237
 
1225
1238
  ## 8.0.9
1226
1239
 
1227
1240
  ### Patch Changes
1228
1241
 
1229
- - [patch][ecca4d1dbb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ecca4d1dbb):
1242
+ - [patch][ecca4d1dbb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ecca4d1dbb):
1230
1243
 
1231
- Upgraded Typescript to 3.3.x
1244
+ Upgraded Typescript to 3.3.x
1232
1245
 
1233
1246
  ## 8.0.8
1234
1247
 
1235
1248
  ### Patch Changes
1236
1249
 
1237
- - [patch][708028db86](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/708028db86):
1250
+ - [patch][708028db86](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/708028db86):
1238
1251
 
1239
- Change all the imports to theme in Core to use multi entry points
1252
+ Change all the imports to theme in Core to use multi entry points
1240
1253
 
1241
1254
  ## 8.0.7
1242
1255
 
1243
1256
  ### Patch Changes
1244
1257
 
1245
- - [patch][de35ce8c67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/de35ce8c67):
1258
+ - [patch][de35ce8c67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/de35ce8c67):
1246
1259
 
1247
- Updates component maintainers
1260
+ Updates component maintainers
1248
1261
 
1249
1262
  ## 8.0.6
1250
1263
 
1251
- - Updated dependencies
1252
- [926b43142b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/926b43142b):
1253
- - @atlaskit/analytics-next@6.0.0
1254
- - @atlaskit/button@13.1.2
1264
+ - Updated dependencies
1265
+ [926b43142b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/926b43142b):
1266
+ - @atlaskit/analytics-next@6.0.0
1267
+ - @atlaskit/button@13.1.2
1255
1268
 
1256
1269
  ## 8.0.5
1257
1270
 
1258
1271
  ### Patch Changes
1259
1272
 
1260
- - [patch][ebfeb03eb7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ebfeb03eb7):
1273
+ - [patch][ebfeb03eb7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ebfeb03eb7):
1261
1274
 
1262
- popper has been converted to Typescript. Typescript consumers will now get static type safety.
1263
- Flow types are no longer provided. No API or behavioural changes.
1275
+ popper has been converted to Typescript. Typescript consumers will now get static type safety.
1276
+ Flow types are no longer provided. No API or behavioural changes.
1264
1277
 
1265
1278
  ## 8.0.4
1266
1279
 
1267
1280
  ### Patch Changes
1268
1281
 
1269
- - [patch][9f8ab1084b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9f8ab1084b):
1282
+ - [patch][9f8ab1084b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9f8ab1084b):
1270
1283
 
1271
- Consume analytics-next ts type definitions as an ambient declaration.
1284
+ Consume analytics-next ts type definitions as an ambient declaration.
1272
1285
 
1273
1286
  ## 8.0.3
1274
1287
 
1275
- - Updated dependencies
1276
- [06326ef3f7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/06326ef3f7):
1277
- - @atlaskit/docs@8.1.3
1278
- - @atlaskit/button@13.0.9
1279
- - @atlaskit/icon@19.0.0
1288
+ - Updated dependencies
1289
+ [06326ef3f7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/06326ef3f7):
1290
+ - @atlaskit/docs@8.1.3
1291
+ - @atlaskit/button@13.0.9
1292
+ - @atlaskit/icon@19.0.0
1280
1293
 
1281
1294
  ## 8.0.2
1282
1295
 
1283
1296
  ### Patch Changes
1284
1297
 
1285
- - [patch][4615439434](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4615439434):
1298
+ - [patch][4615439434](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4615439434):
1286
1299
 
1287
- index.ts will now be ignored when publishing to npm
1300
+ index.ts will now be ignored when publishing to npm
1288
1301
 
1289
1302
  ## 8.0.1
1290
1303
 
1291
- - Updated dependencies
1292
- [cfc3c8adb3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cfc3c8adb3):
1293
- - @atlaskit/docs@8.1.2
1294
- - @atlaskit/button@13.0.8
1295
- - @atlaskit/icon@18.0.0
1304
+ - Updated dependencies
1305
+ [cfc3c8adb3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cfc3c8adb3):
1306
+ - @atlaskit/docs@8.1.2
1307
+ - @atlaskit/button@13.0.8
1308
+ - @atlaskit/icon@18.0.0
1296
1309
 
1297
1310
  ## 8.0.0
1298
1311
 
1299
- - [major][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
1312
+ - [major][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
1300
1313
 
1301
- - Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use
1302
- this package, please ensure you use at least this version of react and react-dom.
1314
+ - Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use
1315
+ this package, please ensure you use at least this version of react and react-dom.
1303
1316
 
1304
1317
  ## 7.0.22
1305
1318
 
1306
- - Updated dependencies
1307
- [9c0b4744be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0b4744be):
1308
- - @atlaskit/docs@7.0.3
1309
- - @atlaskit/button@12.0.3
1310
- - @atlaskit/icon@16.0.9
1311
- - @atlaskit/theme@8.1.7
1319
+ - Updated dependencies
1320
+ [9c0b4744be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0b4744be):
1321
+ - @atlaskit/docs@7.0.3
1322
+ - @atlaskit/button@12.0.3
1323
+ - @atlaskit/icon@16.0.9
1324
+ - @atlaskit/theme@8.1.7
1312
1325
 
1313
1326
  ## 7.0.21
1314
1327
 
1315
- - Updated dependencies
1316
- [1e826b2966](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e826b2966):
1317
- - @atlaskit/docs@7.0.2
1318
- - @atlaskit/analytics-next@4.0.3
1319
- - @atlaskit/icon@16.0.8
1320
- - @atlaskit/theme@8.1.6
1321
- - @atlaskit/button@12.0.0
1328
+ - Updated dependencies
1329
+ [1e826b2966](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e826b2966):
1330
+ - @atlaskit/docs@7.0.2
1331
+ - @atlaskit/analytics-next@4.0.3
1332
+ - @atlaskit/icon@16.0.8
1333
+ - @atlaskit/theme@8.1.6
1334
+ - @atlaskit/button@12.0.0
1322
1335
 
1323
1336
  ## 7.0.20
1324
1337
 
1325
- - Updated dependencies
1326
- [9d5cc39394](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d5cc39394):
1327
- - @atlaskit/docs@7.0.1
1328
- - @atlaskit/analytics-next@4.0.1
1329
- - @atlaskit/icon@16.0.5
1330
- - @atlaskit/theme@8.0.1
1331
- - @atlaskit/button@11.0.0
1338
+ - Updated dependencies
1339
+ [9d5cc39394](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d5cc39394):
1340
+ - @atlaskit/docs@7.0.1
1341
+ - @atlaskit/analytics-next@4.0.1
1342
+ - @atlaskit/icon@16.0.5
1343
+ - @atlaskit/theme@8.0.1
1344
+ - @atlaskit/button@11.0.0
1332
1345
 
1333
1346
  ## 7.0.19
1334
1347
 
1335
- - [patch][f8cf9e271e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f8cf9e271e):
1348
+ - [patch][f8cf9e271e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f8cf9e271e):
1336
1349
 
1337
- - Internal changes only. Calendar is now ssr-friendly.
1350
+ - Internal changes only. Calendar is now ssr-friendly.
1338
1351
 
1339
1352
  ## 7.0.18
1340
1353
 
1341
- - Updated dependencies
1342
- [76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
1343
- - @atlaskit/button@10.1.3
1344
- - @atlaskit/icon@16.0.4
1345
- - @atlaskit/docs@7.0.0
1346
- - @atlaskit/analytics-next@4.0.0
1347
- - @atlaskit/theme@8.0.0
1354
+ - Updated dependencies
1355
+ [76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
1356
+ - @atlaskit/button@10.1.3
1357
+ - @atlaskit/icon@16.0.4
1358
+ - @atlaskit/docs@7.0.0
1359
+ - @atlaskit/analytics-next@4.0.0
1360
+ - @atlaskit/theme@8.0.0
1348
1361
 
1349
1362
  ## 7.0.17
1350
1363
 
1351
- - Updated dependencies
1352
- [d7ef59d432](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d7ef59d432):
1353
- - @atlaskit/docs@6.0.1
1354
- - @atlaskit/button@10.1.2
1355
- - @atlaskit/icon@16.0.0
1364
+ - Updated dependencies
1365
+ [d7ef59d432](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d7ef59d432):
1366
+ - @atlaskit/docs@6.0.1
1367
+ - @atlaskit/button@10.1.2
1368
+ - @atlaskit/icon@16.0.0
1356
1369
 
1357
1370
  ## 7.0.16
1358
1371
 
1359
- - Updated dependencies [58b84fa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/58b84fa):
1360
- - @atlaskit/analytics-next@3.1.2
1361
- - @atlaskit/button@10.1.1
1362
- - @atlaskit/icon@15.0.2
1363
- - @atlaskit/theme@7.0.1
1364
- - @atlaskit/docs@6.0.0
1372
+ - Updated dependencies [58b84fa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/58b84fa):
1373
+ - @atlaskit/analytics-next@3.1.2
1374
+ - @atlaskit/button@10.1.1
1375
+ - @atlaskit/icon@15.0.2
1376
+ - @atlaskit/theme@7.0.1
1377
+ - @atlaskit/docs@6.0.0
1365
1378
 
1366
1379
  ## 7.0.15
1367
1380
 
1368
- - Updated dependencies [d13242d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d13242d):
1369
- - @atlaskit/docs@5.2.3
1370
- - @atlaskit/button@10.0.4
1371
- - @atlaskit/icon@15.0.1
1372
- - @atlaskit/theme@7.0.0
1381
+ - Updated dependencies [d13242d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d13242d):
1382
+ - @atlaskit/docs@5.2.3
1383
+ - @atlaskit/button@10.0.4
1384
+ - @atlaskit/icon@15.0.1
1385
+ - @atlaskit/theme@7.0.0
1373
1386
 
1374
1387
  ## 7.0.14
1375
1388
 
1376
- - Updated dependencies [ab9b69c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ab9b69c):
1377
- - @atlaskit/docs@5.2.2
1378
- - @atlaskit/button@10.0.1
1379
- - @atlaskit/icon@15.0.0
1389
+ - Updated dependencies [ab9b69c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ab9b69c):
1390
+ - @atlaskit/docs@5.2.2
1391
+ - @atlaskit/button@10.0.1
1392
+ - @atlaskit/icon@15.0.0
1380
1393
 
1381
1394
  ## 7.0.13
1382
1395
 
1383
- - Updated dependencies [6998f11](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6998f11):
1384
- - @atlaskit/docs@5.2.1
1385
- - @atlaskit/analytics-next@3.1.1
1386
- - @atlaskit/icon@14.6.1
1387
- - @atlaskit/theme@6.2.1
1388
- - @atlaskit/button@10.0.0
1396
+ - Updated dependencies [6998f11](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6998f11):
1397
+ - @atlaskit/docs@5.2.1
1398
+ - @atlaskit/analytics-next@3.1.1
1399
+ - @atlaskit/icon@14.6.1
1400
+ - @atlaskit/theme@6.2.1
1401
+ - @atlaskit/button@10.0.0
1389
1402
 
1390
1403
  ## 7.0.12
1391
1404
 
1392
- - [patch][21f5216](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/21f5216):
1405
+ - [patch][21f5216](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/21f5216):
1393
1406
 
1394
- - Remove enzyme-to-json as it is used in our jestFrameworkSetup.js
1407
+ - Remove enzyme-to-json as it is used in our jestFrameworkSetup.js
1395
1408
 
1396
1409
  ## 7.0.11
1397
1410
 
1398
- - [patch][a637f5e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a637f5e):
1411
+ - [patch][a637f5e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a637f5e):
1399
1412
 
1400
- - Refine and fix some flow type errors found by fixing @atlaskit/analytics-next HOCs to allow
1401
- flow to type check properly
1413
+ - Refine and fix some flow type errors found by fixing @atlaskit/analytics-next HOCs to allow flow
1414
+ to type check properly
1402
1415
 
1403
1416
  ## 7.0.10
1404
1417
 
1405
- - [patch] Adds missing implicit @babel/runtime dependency
1406
- [b71751b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b71751b)
1418
+ - [patch] Adds missing implicit @babel/runtime dependency
1419
+ [b71751b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b71751b)
1407
1420
 
1408
1421
  ## 7.0.9
1409
1422
 
1410
- - [patch] Updated dependencies
1411
- [65c6514](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/65c6514)
1412
- - @atlaskit/docs@5.0.8
1413
- - @atlaskit/button@9.0.13
1414
- - @atlaskit/icon@14.0.0
1423
+ - [patch] Updated dependencies
1424
+ [65c6514](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/65c6514)
1425
+ - @atlaskit/docs@5.0.8
1426
+ - @atlaskit/button@9.0.13
1427
+ - @atlaskit/icon@14.0.0
1415
1428
 
1416
1429
  ## 7.0.8
1417
1430
 
1418
- - [patch] Fixes bug on next and prev month navigation.
1419
- [c4770a0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c4770a0)
1431
+ - [patch] Fixes bug on next and prev month navigation.
1432
+ [c4770a0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c4770a0)
1420
1433
 
1421
1434
  ## 7.0.7
1422
1435
 
1423
- - [patch] Adds sideEffects: false to allow proper tree shaking
1424
- [b5d6d04](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b5d6d04)
1436
+ - [patch] Adds sideEffects: false to allow proper tree shaking
1437
+ [b5d6d04](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b5d6d04)
1425
1438
 
1426
1439
  ## 7.0.5
1427
1440
 
1428
- - [patch] Updated dependencies
1429
- [df22ad8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/df22ad8)
1430
- - @atlaskit/theme@6.0.0
1431
- - @atlaskit/icon@13.2.5
1432
- - @atlaskit/button@9.0.6
1433
- - @atlaskit/docs@5.0.6
1441
+ - [patch] Updated dependencies
1442
+ [df22ad8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/df22ad8)
1443
+ - @atlaskit/theme@6.0.0
1444
+ - @atlaskit/icon@13.2.5
1445
+ - @atlaskit/button@9.0.6
1446
+ - @atlaskit/docs@5.0.6
1434
1447
 
1435
1448
  ## 7.0.4
1436
1449
 
1437
- - [patch] update the dependency of react-dom to 16.4.2 due to vulnerability in previous versions
1438
- read https://reactjs.org/blog/2018/08/01/react-v-16-4-2.html for details
1439
- [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
1440
- - [none] Updated dependencies
1441
- [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
1442
- - @atlaskit/analytics-next@3.0.4
1443
- - @atlaskit/button@9.0.5
1444
- - @atlaskit/theme@5.1.3
1445
- - @atlaskit/icon@13.2.4
1450
+ - [patch] update the dependency of react-dom to 16.4.2 due to vulnerability in previous versions
1451
+ read https://reactjs.org/blog/2018/08/01/react-v-16-4-2.html for details
1452
+ [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
1453
+ - [none] Updated dependencies
1454
+ [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
1455
+ - @atlaskit/analytics-next@3.0.4
1456
+ - @atlaskit/button@9.0.5
1457
+ - @atlaskit/theme@5.1.3
1458
+ - @atlaskit/icon@13.2.4
1446
1459
 
1447
1460
  ## 7.0.3
1448
1461
 
1449
- - [patch] Updated dependencies
1450
- [acd86a1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/acd86a1)
1451
- - @atlaskit/icon@13.2.2
1452
- - @atlaskit/button@9.0.4
1453
- - @atlaskit/theme@5.1.2
1454
- - @atlaskit/analytics-next@3.0.3
1455
- - @atlaskit/docs@5.0.2
1462
+ - [patch] Updated dependencies
1463
+ [acd86a1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/acd86a1)
1464
+ - @atlaskit/icon@13.2.2
1465
+ - @atlaskit/button@9.0.4
1466
+ - @atlaskit/theme@5.1.2
1467
+ - @atlaskit/analytics-next@3.0.3
1468
+ - @atlaskit/docs@5.0.2
1456
1469
 
1457
1470
  ## 7.0.2
1458
1471
 
1459
- - [patch] Add a SSR test for every package, add react-dom and build-utils in devDependencies
1460
- [7e331b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e331b5)
1461
- - [none] Updated dependencies
1462
- [7e331b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e331b5)
1463
- - @atlaskit/analytics-next@3.0.2
1464
- - @atlaskit/button@9.0.3
1465
- - @atlaskit/theme@5.1.1
1466
- - @atlaskit/icon@13.2.1
1472
+ - [patch] Add a SSR test for every package, add react-dom and build-utils in devDependencies
1473
+ [7e331b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e331b5)
1474
+ - [none] Updated dependencies
1475
+ [7e331b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e331b5)
1476
+ - @atlaskit/analytics-next@3.0.2
1477
+ - @atlaskit/button@9.0.3
1478
+ - @atlaskit/theme@5.1.1
1479
+ - @atlaskit/icon@13.2.1
1467
1480
 
1468
1481
  ## 7.0.1
1469
1482
 
1470
- - [patch] Move analytics tests and replace elements to core
1471
- [49d4ab4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/49d4ab4)
1472
- - [none] Updated dependencies
1473
- [49d4ab4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/49d4ab4)
1474
- - @atlaskit/analytics-next@3.0.1
1475
- - @atlaskit/button@9.0.2
1476
- - @atlaskit/docs@5.0.1
1483
+ - [patch] Move analytics tests and replace elements to core
1484
+ [49d4ab4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/49d4ab4)
1485
+ - [none] Updated dependencies
1486
+ [49d4ab4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/49d4ab4)
1487
+ - @atlaskit/analytics-next@3.0.1
1488
+ - @atlaskit/button@9.0.2
1489
+ - @atlaskit/docs@5.0.1
1477
1490
 
1478
1491
  ## 7.0.0
1479
1492
 
1480
- - [major] Provides analytics for common component interations. See the
1481
- [Instrumented Components](https://atlaskit.atlassian.com/packages/core/analytics-next) section
1482
- for more details. If you are using enzyme for testing you will have to use
1483
- [our forked version of the library](https://atlaskit.atlassian.com/docs/guides/testing#we-use-a-forked-version-of-enzyme).
1484
- [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
1485
- - [major] Updates to React ^16.4.0
1486
- [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
1487
- - [major] Updated dependencies
1488
- [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
1489
- - @atlaskit/analytics-next@3.0.0
1490
- - @atlaskit/button@9.0.0
1491
- - @atlaskit/theme@5.0.0
1492
- - @atlaskit/docs@5.0.0
1493
- - @atlaskit/icon@13.0.0
1494
- - [major] Updated dependencies
1495
- [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
1496
- - @atlaskit/analytics-next@3.0.0
1497
- - @atlaskit/button@9.0.0
1498
- - @atlaskit/theme@5.0.0
1499
- - @atlaskit/docs@5.0.0
1500
- - @atlaskit/icon@13.0.0
1493
+ - [major] Provides analytics for common component interations. See the
1494
+ [Instrumented Components](https://atlaskit.atlassian.com/packages/core/analytics-next) section for
1495
+ more details. If you are using enzyme for testing you will have to use
1496
+ [our forked version of the library](https://atlaskit.atlassian.com/docs/guides/testing#we-use-a-forked-version-of-enzyme).
1497
+ [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
1498
+ - [major] Updates to React ^16.4.0
1499
+ [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
1500
+ - [major] Updated dependencies
1501
+ [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
1502
+ - @atlaskit/analytics-next@3.0.0
1503
+ - @atlaskit/button@9.0.0
1504
+ - @atlaskit/theme@5.0.0
1505
+ - @atlaskit/docs@5.0.0
1506
+ - @atlaskit/icon@13.0.0
1507
+ - [major] Updated dependencies
1508
+ [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
1509
+ - @atlaskit/analytics-next@3.0.0
1510
+ - @atlaskit/button@9.0.0
1511
+ - @atlaskit/theme@5.0.0
1512
+ - @atlaskit/docs@5.0.0
1513
+ - @atlaskit/icon@13.0.0
1501
1514
 
1502
1515
  ## 6.2.2
1503
1516
 
1504
- - [patch] Fix Calendar width increasing for some months
1505
- [29ffb24](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/29ffb24)
1506
- - [patch] Updated dependencies
1507
- [29ffb24](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/29ffb24)
1517
+ - [patch] Fix Calendar width increasing for some months
1518
+ [29ffb24](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/29ffb24)
1519
+ - [patch] Updated dependencies
1520
+ [29ffb24](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/29ffb24)
1508
1521
 
1509
1522
  ## 6.2.1
1510
1523
 
1511
- - [patch] Calendar chevrons use large versions
1512
- [a973ac3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a973ac3)
1513
- - [patch] Updated dependencies
1514
- [a973ac3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a973ac3)
1524
+ - [patch] Calendar chevrons use large versions
1525
+ [a973ac3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a973ac3)
1526
+ - [patch] Updated dependencies
1527
+ [a973ac3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a973ac3)
1515
1528
 
1516
1529
  ## 6.2.0
1517
1530
 
1518
- - [minor] Visual changes to match ADG3 guidelines
1519
- [059d111](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/059d111)
1520
- - [minor] Updated dependencies
1521
- [059d111](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/059d111)
1531
+ - [minor] Visual changes to match ADG3 guidelines
1532
+ [059d111](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/059d111)
1533
+ - [minor] Updated dependencies
1534
+ [059d111](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/059d111)
1522
1535
 
1523
1536
  ## 6.1.3
1524
1537
 
1525
- - [patch] Fix \$FlowFixMe and release packages
1526
- [25d0b2d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/25d0b2d)
1527
- - [none] Updated dependencies
1528
- [25d0b2d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/25d0b2d)
1529
- - @atlaskit/button@8.2.2
1530
- - @atlaskit/icon@12.3.1
1538
+ - [patch] Fix \$FlowFixMe and release packages
1539
+ [25d0b2d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/25d0b2d)
1540
+ - [none] Updated dependencies
1541
+ [25d0b2d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/25d0b2d)
1542
+ - @atlaskit/button@8.2.2
1543
+ - @atlaskit/icon@12.3.1
1531
1544
 
1532
1545
  ## 6.1.2
1533
1546
 
1534
- - [patch] Clean Changelogs - remove duplicates and empty entries
1535
- [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
1536
- - [none] Updated dependencies
1537
- [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
1538
- - @atlaskit/button@8.1.2
1539
- - @atlaskit/theme@4.0.4
1540
- - @atlaskit/icon@12.1.2
1547
+ - [patch] Clean Changelogs - remove duplicates and empty entries
1548
+ [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
1549
+ - [none] Updated dependencies
1550
+ [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
1551
+ - @atlaskit/button@8.1.2
1552
+ - @atlaskit/theme@4.0.4
1553
+ - @atlaskit/icon@12.1.2
1541
1554
 
1542
1555
  ## 6.1.1
1543
1556
 
1544
- - [patch] Update changelogs to remove duplicate
1545
- [cc58e17](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc58e17)
1546
- - [none] Updated dependencies
1547
- [cc58e17](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc58e17)
1548
- - @atlaskit/theme@4.0.3
1549
- - @atlaskit/icon@12.1.1
1550
- - @atlaskit/button@8.1.1
1551
- - @atlaskit/docs@4.1.1
1557
+ - [patch] Update changelogs to remove duplicate
1558
+ [cc58e17](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc58e17)
1559
+ - [none] Updated dependencies
1560
+ [cc58e17](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc58e17)
1561
+ - @atlaskit/theme@4.0.3
1562
+ - @atlaskit/icon@12.1.1
1563
+ - @atlaskit/button@8.1.1
1564
+ - @atlaskit/docs@4.1.1
1552
1565
 
1553
1566
  ## 6.1.0
1554
1567
 
1555
- - [none] Updated dependencies
1556
- [9d20f54](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d20f54)
1557
- - @atlaskit/icon@12.1.0
1558
- - @atlaskit/docs@4.1.0
1559
- - @atlaskit/theme@4.0.2
1560
- - @atlaskit/button@8.1.0
1568
+ - [none] Updated dependencies
1569
+ [9d20f54](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d20f54)
1570
+ - @atlaskit/icon@12.1.0
1571
+ - @atlaskit/docs@4.1.0
1572
+ - @atlaskit/theme@4.0.2
1573
+ - @atlaskit/button@8.1.0
1561
1574
 
1562
1575
  ## 6.0.1
1563
1576
 
1564
- - [patch] Update readme's [223cd67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/223cd67)
1565
- - [patch] Updated dependencies
1566
- [223cd67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/223cd67)
1567
- - @atlaskit/icon@12.0.1
1568
- - @atlaskit/button@8.0.1
1569
- - @atlaskit/theme@4.0.1
1570
- - @atlaskit/docs@4.0.1
1577
+ - [patch] Update readme's [223cd67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/223cd67)
1578
+ - [patch] Updated dependencies
1579
+ [223cd67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/223cd67)
1580
+ - @atlaskit/icon@12.0.1
1581
+ - @atlaskit/button@8.0.1
1582
+ - @atlaskit/theme@4.0.1
1583
+ - @atlaskit/docs@4.0.1
1571
1584
 
1572
1585
  ## 6.0.0
1573
1586
 
1574
- - [major] makes styled-components a peer dependency and upgrades version range from 1.4.6 - 3 to
1575
- ^3.2.6 [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
1576
- - [patch] Updated dependencies
1577
- [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
1578
- - @atlaskit/icon@12.0.0
1579
- - @atlaskit/button@8.0.0
1580
- - @atlaskit/theme@4.0.0
1581
- - @atlaskit/docs@4.0.0
1587
+ - [major] makes styled-components a peer dependency and upgrades version range from 1.4.6 - 3 to
1588
+ ^3.2.6 [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
1589
+ - [patch] Updated dependencies
1590
+ [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
1591
+ - @atlaskit/icon@12.0.0
1592
+ - @atlaskit/button@8.0.0
1593
+ - @atlaskit/theme@4.0.0
1594
+ - @atlaskit/docs@4.0.0
1582
1595
 
1583
1596
  ## 5.0.4
1584
1597
 
1585
- - [patch] Fix issue causing a mouseup to select a date. It is now bound to click.
1586
- [1cd0b7e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1cd0b7e)
1598
+ - [patch] Fix issue causing a mouseup to select a date. It is now bound to click.
1599
+ [1cd0b7e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1cd0b7e)
1587
1600
 
1588
1601
  ## 5.0.3
1589
1602
 
1590
- - [patch] Updated dependencies
1591
- [d662caa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d662caa)
1592
- - @atlaskit/icon@11.3.0
1593
- - @atlaskit/button@7.2.5
1594
- - @atlaskit/theme@3.2.2
1595
- - @atlaskit/docs@3.0.4
1603
+ - [patch] Updated dependencies
1604
+ [d662caa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d662caa)
1605
+ - @atlaskit/icon@11.3.0
1606
+ - @atlaskit/button@7.2.5
1607
+ - @atlaskit/theme@3.2.2
1608
+ - @atlaskit/docs@3.0.4
1596
1609
 
1597
1610
  ## 5.0.1
1598
1611
 
1599
- - [patch] Better styles for disabled dates
1600
- [866c497](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/866c497)
1612
+ - [patch] Better styles for disabled dates
1613
+ [866c497](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/866c497)
1601
1614
 
1602
1615
  ## 5.0.0
1603
1616
 
1604
- - [major] Bump to React 16.3.
1605
- [4251858](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4251858)
1617
+ - [major] Bump to React 16.3.
1618
+ [4251858](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4251858)
1606
1619
 
1607
1620
  ## 4.0.0
1608
1621
 
1609
- - [major] QoL and consistency changes to the calendar and datetime-picker APIs. Added the ability
1610
- to specify a string to the DateTimePicker component. Remove stateless components and make each
1611
- component stateless or stateful using the controlled / uncontrolled pattern. Misc prop renames
1612
- for consistency. [ab21d8e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ab21d8e)
1622
+ - [major] QoL and consistency changes to the calendar and datetime-picker APIs. Added the ability to
1623
+ specify a string to the DateTimePicker component. Remove stateless components and make each
1624
+ component stateless or stateful using the controlled / uncontrolled pattern. Misc prop renames for
1625
+ consistency. [ab21d8e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ab21d8e)
1613
1626
 
1614
1627
  ## 3.2.1
1615
1628
 
1616
- - [patch] Re-releasing due to potentially broken babel release
1617
- [9ed0bba](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9ed0bba)
1629
+ - [patch] Re-releasing due to potentially broken babel release
1630
+ [9ed0bba](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9ed0bba)
1618
1631
 
1619
1632
  ## 3.2.0
1620
1633
 
1621
- - [minor] Update styled-components dependency to support versions 1.4.6 - 3
1622
- [ceccf30](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ceccf30)
1634
+ - [minor] Update styled-components dependency to support versions 1.4.6 - 3
1635
+ [ceccf30](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ceccf30)
1623
1636
 
1624
1637
  ## 3.1.3
1625
1638
 
1626
- - [patch] updated the repository url to https://bitbucket.org/atlassian/atlaskit-mk-2
1627
- [1e57e5a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e57e5a)
1639
+ - [patch] updated the repository url to https://bitbucket.org/atlassian/atlaskit-mk-2
1640
+ [1e57e5a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e57e5a)
1628
1641
 
1629
1642
  ## 3.1.2
1630
1643
 
1631
- - [patch] Packages Flow types for elements components
1632
- [3111e74](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3111e74)
1644
+ - [patch] Packages Flow types for elements components
1645
+ [3111e74](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3111e74)
1633
1646
 
1634
1647
  ## 3.1.1
1635
1648
 
1636
- - [patch] Flatten examples for easier consumer use
1637
- [145b632](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/145b632)
1649
+ - [patch] Flatten examples for easier consumer use
1650
+ [145b632](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/145b632)
1638
1651
 
1639
1652
  ## 3.1.0
1640
1653
 
1641
- - [minor] Add React 16 support.
1642
- [12ea6e4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/12ea6e4)
1654
+ - [minor] Add React 16 support.
1655
+ [12ea6e4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/12ea6e4)
1643
1656
 
1644
1657
  ## 3.0.13
1645
1658
 
1646
- - [patch] Fixed issue where hovering over a disabled date would not show a disabled cursor.
1647
- [5c21f9b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5c21f9b)
1659
+ - [patch] Fixed issue where hovering over a disabled date would not show a disabled cursor.
1660
+ [5c21f9b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5c21f9b)
1648
1661
 
1649
1662
  ## 3.0.12
1650
1663
 
1651
- - [patch] Fix calendar dates not being selectable in IE11
1652
- [a65e3b0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a65e3b0)
1664
+ - [patch] Fix calendar dates not being selectable in IE11
1665
+ [a65e3b0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a65e3b0)
1653
1666
 
1654
1667
  ## 3.0.10
1655
1668
 
1656
- - [patch] stopped disabled dates from triggering onClick prop
1657
- [3b42698](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3b42698)
1669
+ - [patch] stopped disabled dates from triggering onClick prop
1670
+ [3b42698](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3b42698)
1658
1671
 
1659
1672
  ## 3.0.9
1660
1673
 
1661
- - [patch] did some clean up with accessibility of calendar
1662
- [48797f2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/48797f2)
1674
+ - [patch] did some clean up with accessibility of calendar
1675
+ [48797f2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/48797f2)
1663
1676
 
1664
1677
  ## 3.0.6
1665
1678
 
1666
- - [patch] bump icon dependency
1667
- [da14956](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/da14956)
1679
+ - [patch] bump icon dependency
1680
+ [da14956](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/da14956)
1668
1681
 
1669
1682
  ## 3.0.4
1670
1683
 
1671
- - [patch] Use correct dependencies [7b178b1](7b178b1)
1672
- - [patch] Adding responsive behavior to the editor. [e0d9867](e0d9867)
1684
+ - [patch] Use correct dependencies [7b178b1](7b178b1)
1685
+ - [patch] Adding responsive behavior to the editor. [e0d9867](e0d9867)