@atlaskit/calendar 13.3.1 → 13.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +78 -66
- package/codemods/utils.tsx +2 -1
- package/dist/cjs/calendar.js +51 -55
- package/dist/cjs/internal/components/date.js +25 -26
- package/dist/cjs/internal/components/header.js +1 -2
- package/dist/cjs/internal/components/week-day-grid.js +1 -2
- package/dist/cjs/internal/components/week-days.js +29 -35
- package/dist/cjs/internal/components/week-header.js +1 -2
- package/dist/cjs/internal/constants.js +4 -8
- package/dist/cjs/internal/hooks/use-handle-date-change.js +1 -1
- package/dist/cjs/internal/styles/date.js +2 -3
- package/dist/es2019/calendar.js +50 -53
- package/dist/es2019/internal/components/date.js +1 -1
- package/dist/es2019/internal/components/week-days.js +24 -29
- package/dist/es2019/internal/hooks/use-handle-date-change.js +1 -1
- package/dist/esm/calendar.js +50 -53
- package/dist/esm/internal/components/date.js +24 -24
- package/dist/esm/internal/components/week-days.js +28 -33
- package/dist/esm/internal/hooks/use-handle-date-change.js +1 -1
- package/dist/types/internal/hooks/use-handle-date-change.d.ts +1 -1
- package/dist/types-ts4.5/internal/hooks/use-handle-date-change.d.ts +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,59 +1,71 @@
|
|
|
1
1
|
# @atlaskit/calendar
|
|
2
2
|
|
|
3
|
+
## 13.3.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#42445](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42445) [`5645b5a1132`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5645b5a1132) - Fix TS errors for forge-ui in AFM
|
|
8
|
+
|
|
9
|
+
## 13.3.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 13.3.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
6
18
|
|
|
7
|
-
- [`75b9f4664c6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/75b9f4664c6) - [ux] Hide weekday header row from assistive technologies.
|
|
19
|
+
- [#39443](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39443) [`75b9f4664c6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/75b9f4664c6) - [ux] Hide weekday header row from assistive technologies.
|
|
8
20
|
|
|
9
21
|
## 13.3.0
|
|
10
22
|
|
|
11
23
|
### Minor Changes
|
|
12
24
|
|
|
13
|
-
- [`26825f14d51`](https://bitbucket.org/atlassian/atlassian-frontend/commits/26825f14d51) - [ux] This adds greater keyboard accessibility to calendar, and removes the feature flag that gated this change.
|
|
25
|
+
- [#39246](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39246) [`26825f14d51`](https://bitbucket.org/atlassian/atlassian-frontend/commits/26825f14d51) - [ux] This adds greater keyboard accessibility to calendar, and removes the feature flag that gated this change.
|
|
14
26
|
|
|
15
27
|
## 13.2.2
|
|
16
28
|
|
|
17
29
|
### Patch Changes
|
|
18
30
|
|
|
19
|
-
- [`ceedd1f27df`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ceedd1f27df) - [ux] Ensures month/year does not render as live region until it has changed or has otherwise been interacted with for better usability. Part of feature flag for keyboard accessibility.
|
|
31
|
+
- [#38521](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38521) [`ceedd1f27df`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ceedd1f27df) - [ux] Ensures month/year does not render as live region until it has changed or has otherwise been interacted with for better usability. Part of feature flag for keyboard accessibility.
|
|
20
32
|
|
|
21
33
|
## 13.2.1
|
|
22
34
|
|
|
23
35
|
### Patch Changes
|
|
24
36
|
|
|
25
|
-
- [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete version.json
|
|
37
|
+
- [#38162](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38162) [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete version.json
|
|
26
38
|
- Updated dependencies
|
|
27
39
|
|
|
28
40
|
## 13.2.0
|
|
29
41
|
|
|
30
42
|
### Minor Changes
|
|
31
43
|
|
|
32
|
-
- [`b5716b91b31`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b5716b91b31) - [ux] We are testing adding keyboard accessibility for Calendar behind a feature flag. This will add more affordances for users of assistive technologies to use the calendar, and updates the `tabIndex` prop to only use recommended values. If this fix is successful it will be available in a later release.
|
|
44
|
+
- [#38403](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38403) [`b5716b91b31`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b5716b91b31) - [ux] We are testing adding keyboard accessibility for Calendar behind a feature flag. This will add more affordances for users of assistive technologies to use the calendar, and updates the `tabIndex` prop to only use recommended values. If this fix is successful it will be available in a later release.
|
|
33
45
|
|
|
34
46
|
## 13.1.17
|
|
35
47
|
|
|
36
48
|
### Patch Changes
|
|
37
49
|
|
|
38
|
-
- [`0ed39bbcb73`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ed39bbcb73) - [ux] correct fallback color of focused state to meet contrast requirement
|
|
50
|
+
- [#37611](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37611) [`0ed39bbcb73`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ed39bbcb73) - [ux] correct fallback color of focused state to meet contrast requirement
|
|
39
51
|
|
|
40
52
|
## 13.1.16
|
|
41
53
|
|
|
42
54
|
### Patch Changes
|
|
43
55
|
|
|
44
|
-
- [`1ed303de3e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1ed303de3e8) - Updated dependencies
|
|
56
|
+
- [#37533](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37533) [`1ed303de3e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1ed303de3e8) - Updated dependencies
|
|
45
57
|
|
|
46
58
|
## 13.1.15
|
|
47
59
|
|
|
48
60
|
### Patch Changes
|
|
49
61
|
|
|
50
|
-
- [`3fadbb8bf73`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3fadbb8bf73) - Internal changes.
|
|
62
|
+
- [#37278](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37278) [`3fadbb8bf73`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3fadbb8bf73) - Internal changes.
|
|
51
63
|
|
|
52
64
|
## 13.1.14
|
|
53
65
|
|
|
54
66
|
### Patch Changes
|
|
55
67
|
|
|
56
|
-
- [`7e4085cd951`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e4085cd951) - Allow caret version range in @atlaskit/primitives dependency.
|
|
68
|
+
- [#36412](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36412) [`7e4085cd951`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e4085cd951) - Allow caret version range in @atlaskit/primitives dependency.
|
|
57
69
|
|
|
58
70
|
## 13.1.13
|
|
59
71
|
|
|
@@ -77,7 +89,7 @@
|
|
|
77
89
|
|
|
78
90
|
### Patch Changes
|
|
79
91
|
|
|
80
|
-
- [`76d4d797a2d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76d4d797a2d) - Updates calendar for primitives bump.
|
|
92
|
+
- [#35712](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35712) [`76d4d797a2d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76d4d797a2d) - Updates calendar for primitives bump.
|
|
81
93
|
- Updated dependencies
|
|
82
94
|
|
|
83
95
|
## 13.1.9
|
|
@@ -90,20 +102,20 @@
|
|
|
90
102
|
|
|
91
103
|
### Patch Changes
|
|
92
104
|
|
|
93
|
-
- [`529814693a1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/529814693a1) - Pin version of @atlaskit/primitives so it resolves to correct version
|
|
105
|
+
- [#35337](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35337) [`529814693a1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/529814693a1) - Pin version of @atlaskit/primitives so it resolves to correct version
|
|
94
106
|
|
|
95
107
|
## 13.1.7
|
|
96
108
|
|
|
97
109
|
### Patch Changes
|
|
98
110
|
|
|
99
|
-
- [`b8b41649492`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b8b41649492) - Update how certain background colors are referenced by name. Internal changes only.
|
|
111
|
+
- [#33833](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33833) [`b8b41649492`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b8b41649492) - Update how certain background colors are referenced by name. Internal changes only.
|
|
100
112
|
- Updated dependencies
|
|
101
113
|
|
|
102
114
|
## 13.1.6
|
|
103
115
|
|
|
104
116
|
### Patch Changes
|
|
105
117
|
|
|
106
|
-
- [`779727e307a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/779727e307a) - Internal change only. Replace all instances of Box with stable @atlaskit/primitives version.
|
|
118
|
+
- [#34922](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34922) [`779727e307a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/779727e307a) - Internal change only. Replace all instances of Box with stable @atlaskit/primitives version.
|
|
107
119
|
|
|
108
120
|
## 13.1.5
|
|
109
121
|
|
|
@@ -115,31 +127,31 @@
|
|
|
115
127
|
|
|
116
128
|
### Patch Changes
|
|
117
129
|
|
|
118
|
-
- [`774ed69ecef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/774ed69ecef) - Internal changes to use space tokens for spacing values. There is no visual change.
|
|
130
|
+
- [#34881](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34881) [`774ed69ecef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/774ed69ecef) - Internal changes to use space tokens for spacing values. There is no visual change.
|
|
119
131
|
|
|
120
132
|
## 13.1.3
|
|
121
133
|
|
|
122
134
|
### Patch Changes
|
|
123
135
|
|
|
124
|
-
- [`74fec133d99`](https://bitbucket.org/atlassian/atlassian-frontend/commits/74fec133d99) - [ux] Add proper grid roles to calendar.
|
|
136
|
+
- [#34727](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34727) [`74fec133d99`](https://bitbucket.org/atlassian/atlassian-frontend/commits/74fec133d99) - [ux] Add proper grid roles to calendar.
|
|
125
137
|
|
|
126
138
|
## 13.1.2
|
|
127
139
|
|
|
128
140
|
### Patch Changes
|
|
129
141
|
|
|
130
|
-
- [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
|
|
142
|
+
- [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793) [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
|
|
131
143
|
|
|
132
144
|
## 13.1.1
|
|
133
145
|
|
|
134
146
|
### Patch Changes
|
|
135
147
|
|
|
136
|
-
- [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
|
|
148
|
+
- [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649) [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
|
|
137
149
|
|
|
138
150
|
## 13.1.0
|
|
139
151
|
|
|
140
152
|
### Minor Changes
|
|
141
153
|
|
|
142
|
-
- [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
|
|
154
|
+
- [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258) [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
|
|
143
155
|
|
|
144
156
|
### Patch Changes
|
|
145
157
|
|
|
@@ -149,7 +161,7 @@
|
|
|
149
161
|
|
|
150
162
|
### Patch Changes
|
|
151
163
|
|
|
152
|
-
- [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils
|
|
164
|
+
- [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424) [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils
|
|
153
165
|
|
|
154
166
|
## 13.0.13
|
|
155
167
|
|
|
@@ -167,7 +179,7 @@
|
|
|
167
179
|
|
|
168
180
|
### Patch Changes
|
|
169
181
|
|
|
170
|
-
- [`70922a6fcea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70922a6fcea) - [ux] style(calendar): update icon fallback color from N70 to N700 to match tokens and fix color contrast issue
|
|
182
|
+
- [#31891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31891) [`70922a6fcea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70922a6fcea) - [ux] style(calendar): update icon fallback color from N70 to N700 to match tokens and fix color contrast issue
|
|
171
183
|
- [`c0fb88b3af6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0fb88b3af6) - [ux] style(calendar): update icon color token from text.subtlest to color.icon
|
|
172
184
|
|
|
173
185
|
## 13.0.10
|
|
@@ -192,19 +204,19 @@
|
|
|
192
204
|
|
|
193
205
|
### Patch Changes
|
|
194
206
|
|
|
195
|
-
- [`cfe48bb7ece`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cfe48bb7ece) - Internal change only. Replace usages of Inline/Stack with stable version from `@atlaskit/primitives`.
|
|
207
|
+
- [#31242](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31242) [`cfe48bb7ece`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cfe48bb7ece) - Internal change only. Replace usages of Inline/Stack with stable version from `@atlaskit/primitives`.
|
|
196
208
|
|
|
197
209
|
## 13.0.6
|
|
198
210
|
|
|
199
211
|
### Patch Changes
|
|
200
212
|
|
|
201
|
-
- [`842bb999a85`](https://bitbucket.org/atlassian/atlassian-frontend/commits/842bb999a85) - Internal change only. Replace usages of Inline/Stack with stable version from `@atlaskit/primitives`.
|
|
213
|
+
- [#31041](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31041) [`842bb999a85`](https://bitbucket.org/atlassian/atlassian-frontend/commits/842bb999a85) - Internal change only. Replace usages of Inline/Stack with stable version from `@atlaskit/primitives`.
|
|
202
214
|
|
|
203
215
|
## 13.0.5
|
|
204
216
|
|
|
205
217
|
### Patch Changes
|
|
206
218
|
|
|
207
|
-
- [`1fc7949b336`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1fc7949b336) - [ux] Fixes a bug where the background for the calendar element was incorrectly set to 'elevation.surface'
|
|
219
|
+
- [#30882](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30882) [`1fc7949b336`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1fc7949b336) - [ux] Fixes a bug where the background for the calendar element was incorrectly set to 'elevation.surface'
|
|
208
220
|
|
|
209
221
|
## 13.0.4
|
|
210
222
|
|
|
@@ -216,27 +228,27 @@
|
|
|
216
228
|
|
|
217
229
|
### Patch Changes
|
|
218
230
|
|
|
219
|
-
- [`22b754d311f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/22b754d311f) - Updates usage of removed design token `utilities.UNSAFE_util.transparent` in favour of its replacement `utilities.UNSAFE.transparent`
|
|
231
|
+
- [#27634](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27634) [`22b754d311f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/22b754d311f) - Updates usage of removed design token `utilities.UNSAFE_util.transparent` in favour of its replacement `utilities.UNSAFE.transparent`
|
|
220
232
|
- Updated dependencies
|
|
221
233
|
|
|
222
234
|
## 13.0.2
|
|
223
235
|
|
|
224
236
|
### Patch Changes
|
|
225
237
|
|
|
226
|
-
- [`eadbf13d8c0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eadbf13d8c0) - Updated usages of `Text`, `Box`, `Stack`, and `Inline` primitives to reflect their updated APIs. There are no visual or behaviour changes.
|
|
238
|
+
- [#27891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27891) [`eadbf13d8c0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eadbf13d8c0) - Updated usages of `Text`, `Box`, `Stack`, and `Inline` primitives to reflect their updated APIs. There are no visual or behaviour changes.
|
|
227
239
|
- Updated dependencies
|
|
228
240
|
|
|
229
241
|
## 13.0.1
|
|
230
242
|
|
|
231
243
|
### Patch Changes
|
|
232
244
|
|
|
233
|
-
- [`b0f6dd0bc35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b0f6dd0bc35) - Updated to use typography tokens. There is no expected behaviour or visual change.
|
|
245
|
+
- [#28064](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28064) [`b0f6dd0bc35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b0f6dd0bc35) - Updated to use typography tokens. There is no expected behaviour or visual change.
|
|
234
246
|
|
|
235
247
|
## 13.0.0
|
|
236
248
|
|
|
237
249
|
### Major Changes
|
|
238
250
|
|
|
239
|
-
- [`642298a54dc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/642298a54dc) - Major changes:
|
|
251
|
+
- [#28165](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28165) [`642298a54dc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/642298a54dc) - Major changes:
|
|
240
252
|
|
|
241
253
|
- Removing support for legacy dark mode.
|
|
242
254
|
|
|
@@ -274,19 +286,19 @@
|
|
|
274
286
|
|
|
275
287
|
### Patch Changes
|
|
276
288
|
|
|
277
|
-
- [`bc989043572`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc989043572) - Internal changes to apply spacing tokens. This should be a no-op change.
|
|
289
|
+
- [#26488](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26488) [`bc989043572`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc989043572) - Internal changes to apply spacing tokens. This should be a no-op change.
|
|
278
290
|
|
|
279
291
|
## 12.4.1
|
|
280
292
|
|
|
281
293
|
### Patch Changes
|
|
282
294
|
|
|
283
|
-
- [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
|
|
295
|
+
- [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874) [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
|
|
284
296
|
|
|
285
297
|
## 12.4.0
|
|
286
298
|
|
|
287
299
|
### Minor Changes
|
|
288
300
|
|
|
289
|
-
- [`764726e020b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/764726e020b) - Updates `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
|
|
301
|
+
- [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004) [`764726e020b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/764726e020b) - Updates `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
|
|
290
302
|
|
|
291
303
|
### Patch Changes
|
|
292
304
|
|
|
@@ -296,13 +308,13 @@
|
|
|
296
308
|
|
|
297
309
|
### Patch Changes
|
|
298
310
|
|
|
299
|
-
- [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
|
|
311
|
+
- [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492) [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
|
|
300
312
|
|
|
301
313
|
## 12.3.1
|
|
302
314
|
|
|
303
315
|
### Patch Changes
|
|
304
316
|
|
|
305
|
-
- [`124a1b7532b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/124a1b7532b) - Remove calendar's background when design tokens are provided, to allow calendar to match the color of any surface in light or dark mode
|
|
317
|
+
- [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381) [`124a1b7532b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/124a1b7532b) - Remove calendar's background when design tokens are provided, to allow calendar to match the color of any surface in light or dark mode
|
|
306
318
|
- [`6bf81ead961`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6bf81ead961) - Internal code change turning on new linting rules.
|
|
307
319
|
- Updated dependencies
|
|
308
320
|
|
|
@@ -310,13 +322,13 @@
|
|
|
310
322
|
|
|
311
323
|
### Minor Changes
|
|
312
324
|
|
|
313
|
-
- [`e1e33cfe0db`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e1e33cfe0db) - [ux] Adds tabIndex prop for `@atlaskit/calendar`, useful when needing to disable calendar from receiving focus by keyboard.
|
|
325
|
+
- [#22642](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22642) [`e1e33cfe0db`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e1e33cfe0db) - [ux] Adds tabIndex prop for `@atlaskit/calendar`, useful when needing to disable calendar from receiving focus by keyboard.
|
|
314
326
|
|
|
315
327
|
## 12.2.0
|
|
316
328
|
|
|
317
329
|
### Minor Changes
|
|
318
330
|
|
|
319
|
-
- [`6f7a4353204`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6f7a4353204) - Added ability to provide custom aria-labels for next- and previous-month buttons using `nextMonthLabel` and `previousMonthLabel`
|
|
331
|
+
- [#22029](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22029) [`6f7a4353204`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6f7a4353204) - Added ability to provide custom aria-labels for next- and previous-month buttons using `nextMonthLabel` and `previousMonthLabel`
|
|
320
332
|
|
|
321
333
|
### Patch Changes
|
|
322
334
|
|
|
@@ -326,7 +338,7 @@
|
|
|
326
338
|
|
|
327
339
|
### Patch Changes
|
|
328
340
|
|
|
329
|
-
- [`c8c7eec9fb8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c8c7eec9fb8) - [ux] Updates tokens used for selected hovered state
|
|
341
|
+
- [#21570](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21570) [`c8c7eec9fb8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c8c7eec9fb8) - [ux] Updates tokens used for selected hovered state
|
|
330
342
|
|
|
331
343
|
## 12.1.13
|
|
332
344
|
|
|
@@ -338,7 +350,7 @@
|
|
|
338
350
|
|
|
339
351
|
### Patch Changes
|
|
340
352
|
|
|
341
|
-
- [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade to TypeScript 4.2.4
|
|
353
|
+
- [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650) [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade to TypeScript 4.2.4
|
|
342
354
|
- Updated dependencies
|
|
343
355
|
|
|
344
356
|
## 12.1.11
|
|
@@ -351,7 +363,7 @@
|
|
|
351
363
|
|
|
352
364
|
### Patch Changes
|
|
353
365
|
|
|
354
|
-
- [`62edf20ab1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62edf20ab1e) - Migrates all usage of brand tokens to either selected or information tokens. This change is purely for semantic reasons, there are no visual or behavioural changes.
|
|
366
|
+
- [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618) [`62edf20ab1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62edf20ab1e) - Migrates all usage of brand tokens to either selected or information tokens. This change is purely for semantic reasons, there are no visual or behavioural changes.
|
|
355
367
|
- Updated dependencies
|
|
356
368
|
|
|
357
369
|
## 12.1.9
|
|
@@ -370,7 +382,7 @@
|
|
|
370
382
|
|
|
371
383
|
### Patch Changes
|
|
372
384
|
|
|
373
|
-
- [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - Updates usage of deprecated token names so they're aligned with the latest naming conventions. No UI or visual changes
|
|
385
|
+
- [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752) [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - Updates usage of deprecated token names so they're aligned with the latest naming conventions. No UI or visual changes
|
|
374
386
|
- Updated dependencies
|
|
375
387
|
|
|
376
388
|
## 12.1.6
|
|
@@ -383,7 +395,7 @@
|
|
|
383
395
|
|
|
384
396
|
### Patch Changes
|
|
385
397
|
|
|
386
|
-
- [`f460cc7c411`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f460cc7c411) - Builds for this package now pass through a tokens babel plugin, removing runtime invocations of the tokens() function and improving bundle size.
|
|
398
|
+
- [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998) [`f460cc7c411`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f460cc7c411) - Builds for this package now pass through a tokens babel plugin, removing runtime invocations of the tokens() function and improving bundle size.
|
|
387
399
|
- Updated dependencies
|
|
388
400
|
|
|
389
401
|
## 12.1.4
|
|
@@ -396,7 +408,7 @@
|
|
|
396
408
|
|
|
397
409
|
### Patch Changes
|
|
398
410
|
|
|
399
|
-
- [`192d35cfdbd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/192d35cfdbd) - Defaults native button usage to type="button" to prevent unintended submittig of forms.
|
|
411
|
+
- [#15531](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15531) [`192d35cfdbd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/192d35cfdbd) - Defaults native button usage to type="button" to prevent unintended submittig of forms.
|
|
400
412
|
- [`f7d71a9ba09`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f7d71a9ba09) - Replaces visually hidden styles in component to instead use '@atlaskit/visually-hidden'.
|
|
401
413
|
|
|
402
414
|
## 12.1.2
|
|
@@ -415,7 +427,7 @@
|
|
|
415
427
|
|
|
416
428
|
### Minor Changes
|
|
417
429
|
|
|
418
|
-
- [`89c0316aa2c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/89c0316aa2c) - Instrumented Calendar with the new theming package, `@atlaskit/tokens`. Tokens will be visible only in applications configured to use the new Tokens API (currently in alpha).These changes are intended to be interoperable with the legacy theme implementation. Legacy dark mode users should expect no visual or breaking changes.
|
|
430
|
+
- [#13302](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13302) [`89c0316aa2c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/89c0316aa2c) - Instrumented Calendar with the new theming package, `@atlaskit/tokens`. Tokens will be visible only in applications configured to use the new Tokens API (currently in alpha).These changes are intended to be interoperable with the legacy theme implementation. Legacy dark mode users should expect no visual or breaking changes.
|
|
419
431
|
|
|
420
432
|
### Patch Changes
|
|
421
433
|
|
|
@@ -432,19 +444,19 @@
|
|
|
432
444
|
|
|
433
445
|
### Patch Changes
|
|
434
446
|
|
|
435
|
-
- [`414b6216adf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/414b6216adf) - Upgrade date-fns to ^2.17
|
|
447
|
+
- [#9328](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9328) [`414b6216adf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/414b6216adf) - Upgrade date-fns to ^2.17
|
|
436
448
|
|
|
437
449
|
## 12.0.1
|
|
438
450
|
|
|
439
451
|
### Patch Changes
|
|
440
452
|
|
|
441
|
-
- [`378d1cef00f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/378d1cef00f) - Bump `@atlaskit/theme` to version `^11.3.0`.
|
|
453
|
+
- [#12880](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12880) [`378d1cef00f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/378d1cef00f) - Bump `@atlaskit/theme` to version `^11.3.0`.
|
|
442
454
|
|
|
443
455
|
## 12.0.0
|
|
444
456
|
|
|
445
457
|
### Major Changes
|
|
446
458
|
|
|
447
|
-
- [`4ab5a7e9069`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ab5a7e9069) - ### Major:
|
|
459
|
+
- [#12328](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12328) [`4ab5a7e9069`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ab5a7e9069) - ### Major:
|
|
448
460
|
|
|
449
461
|
Removes `defaultDisabled` prop, a stateless/uncontrolled variant of the `disabled` prop. As a stateless calendar would never change its disabled dates, this prop was unnecessary.
|
|
450
462
|
|
|
@@ -468,13 +480,13 @@
|
|
|
468
480
|
|
|
469
481
|
### Patch Changes
|
|
470
482
|
|
|
471
|
-
- [`d6f7ff383cf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6f7ff383cf) - Updates to development dependency `storybook-addon-performance`
|
|
483
|
+
- [#12167](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12167) [`d6f7ff383cf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6f7ff383cf) - Updates to development dependency `storybook-addon-performance`
|
|
472
484
|
|
|
473
485
|
## 11.1.0
|
|
474
486
|
|
|
475
487
|
### Minor Changes
|
|
476
488
|
|
|
477
|
-
- [`d872280cff1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d872280cff1) - Calendar now exports a `WeekDay` type. This is the type used by the `weekStartDay` prop.
|
|
489
|
+
- [#10230](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10230) [`d872280cff1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d872280cff1) - Calendar now exports a `WeekDay` type. This is the type used by the `weekStartDay` prop.
|
|
478
490
|
|
|
479
491
|
### Patch Changes
|
|
480
492
|
|
|
@@ -484,14 +496,14 @@
|
|
|
484
496
|
|
|
485
497
|
### Patch Changes
|
|
486
498
|
|
|
487
|
-
- [`4eb2615652c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4eb2615652c) - Internal refactor to use common utils.
|
|
499
|
+
- [#9756](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9756) [`4eb2615652c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4eb2615652c) - Internal refactor to use common utils.
|
|
488
500
|
- Updated dependencies
|
|
489
501
|
|
|
490
502
|
## 11.0.0
|
|
491
503
|
|
|
492
504
|
### Major Changes
|
|
493
505
|
|
|
494
|
-
- [`8ed4c2efc42`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8ed4c2efc42) - In this version we made calendar dramatically faster and lighter 🤩
|
|
506
|
+
- [#9083](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9083) [`8ed4c2efc42`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8ed4c2efc42) - In this version we made calendar dramatically faster and lighter 🤩
|
|
495
507
|
|
|
496
508
|
- General performance improvements
|
|
497
509
|
- Moved from using tables to CSS grid to display the days
|
|
@@ -519,7 +531,7 @@
|
|
|
519
531
|
|
|
520
532
|
Run `npx @atlaskit/codemod-cli -h` for more details on usage.
|
|
521
533
|
For Atlassians,
|
|
522
|
-
refer to the [documentation](https://
|
|
534
|
+
refer to the [documentation](https://hello.atlassian.net/wiki/spaces/AF/pages/2627171992/Codemods) for more details on the codemod CLI.
|
|
523
535
|
|
|
524
536
|
### Patch Changes
|
|
525
537
|
|
|
@@ -530,7 +542,7 @@
|
|
|
530
542
|
|
|
531
543
|
### Patch Changes
|
|
532
544
|
|
|
533
|
-
- [`471e2431a7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/471e2431a7c) - Downgrade back to date-fns 1.30.1
|
|
545
|
+
- [#9299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9299) [`471e2431a7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/471e2431a7c) - Downgrade back to date-fns 1.30.1
|
|
534
546
|
We discovered big bundle size increases associated with the date-fns upgrade.
|
|
535
547
|
We're reverting the upgarde to investigate
|
|
536
548
|
|
|
@@ -538,13 +550,13 @@
|
|
|
538
550
|
|
|
539
551
|
### Patch Changes
|
|
540
552
|
|
|
541
|
-
- [`70f0701c2e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70f0701c2e6) - Upgrade date-fns to 2.17
|
|
553
|
+
- [#8291](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8291) [`70f0701c2e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70f0701c2e6) - Upgrade date-fns to 2.17
|
|
542
554
|
|
|
543
555
|
## 10.3.1
|
|
544
556
|
|
|
545
557
|
### Patch Changes
|
|
546
558
|
|
|
547
|
-
- [`79c23df6340`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79c23df6340) - Use injected package name and version for analytics instead of version.json.
|
|
559
|
+
- [#8644](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8644) [`79c23df6340`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79c23df6340) - Use injected package name and version for analytics instead of version.json.
|
|
548
560
|
- [`42785088a12`](https://bitbucket.org/atlassian/atlassian-frontend/commits/42785088a12) - - Migrate old entry points to new one. Calendar now has only following exports:
|
|
549
561
|
|
|
550
562
|
- **default export**. Can be imported like:
|
|
@@ -573,7 +585,7 @@
|
|
|
573
585
|
|
|
574
586
|
### Minor Changes
|
|
575
587
|
|
|
576
|
-
- [`d069f7834ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d069f7834ef) - Calendar now accepts a `weekStartDay` prop that controls which day of the week should be used at the start. This prop accepts the following values:
|
|
588
|
+
- [#8178](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8178) [`d069f7834ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d069f7834ef) - Calendar now accepts a `weekStartDay` prop that controls which day of the week should be used at the start. This prop accepts the following values:
|
|
577
589
|
|
|
578
590
|
- `0` sunday (default value)
|
|
579
591
|
- `1` monday
|
|
@@ -603,7 +615,7 @@
|
|
|
603
615
|
|
|
604
616
|
### Minor Changes
|
|
605
617
|
|
|
606
|
-
- [`4dae77b2678`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4dae77b2678) - Calendar now accepts a `weekStartDay` prop that controls which day of the week should be used at the start. This prop accepts the following values:
|
|
618
|
+
- [#8029](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8029) [`4dae77b2678`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4dae77b2678) - Calendar now accepts a `weekStartDay` prop that controls which day of the week should be used at the start. This prop accepts the following values:
|
|
607
619
|
|
|
608
620
|
- `0` sunday (default value)
|
|
609
621
|
- `1` monday
|
|
@@ -621,7 +633,7 @@
|
|
|
621
633
|
|
|
622
634
|
### Minor Changes
|
|
623
635
|
|
|
624
|
-
- [`985961ce983`](https://bitbucket.org/atlassian/atlassian-frontend/commits/985961ce983) - Internal change from class to function components
|
|
636
|
+
- [#7762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7762) [`985961ce983`](https://bitbucket.org/atlassian/atlassian-frontend/commits/985961ce983) - Internal change from class to function components
|
|
625
637
|
|
|
626
638
|
- We have converted all the components from class to functional. This improved performance quite a bit. Initial rendering, hydration, interaction, bundlesize and re-rendering; all have been improved.
|
|
627
639
|
- We have made all the prop typings optional now. Earlier they were not aligned with the prop values (which were all optional earlier).
|
|
@@ -634,13 +646,13 @@
|
|
|
634
646
|
|
|
635
647
|
### Patch Changes
|
|
636
648
|
|
|
637
|
-
- [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc
|
|
649
|
+
- [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857) [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc
|
|
638
650
|
|
|
639
651
|
## 10.0.9
|
|
640
652
|
|
|
641
653
|
### Patch Changes
|
|
642
654
|
|
|
643
|
-
- [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option.
|
|
655
|
+
- [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497) [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option.
|
|
644
656
|
This requires version 3.8 of Typescript, read more about how we handle Typescript versions here: https://atlaskit.atlassian.com/get-started
|
|
645
657
|
Also add `typescript` to `devDependencies` to denote version that the package was built with.
|
|
646
658
|
|
|
@@ -654,7 +666,7 @@
|
|
|
654
666
|
|
|
655
667
|
### Patch Changes
|
|
656
668
|
|
|
657
|
-
- [`2ac834240e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2ac834240e) - Undo analytics-next file restructure to allow external ts definitions to continue working
|
|
669
|
+
- [#5164](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5164) [`2ac834240e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2ac834240e) - Undo analytics-next file restructure to allow external ts definitions to continue working
|
|
658
670
|
|
|
659
671
|
## 10.0.6
|
|
660
672
|
|
|
@@ -666,26 +678,26 @@
|
|
|
666
678
|
|
|
667
679
|
### Patch Changes
|
|
668
680
|
|
|
669
|
-
- [`b284fba3d1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b284fba3d1) - Components that had missing names are now fixed - this helps when looking for them using the React Dev Tools.
|
|
681
|
+
- [#4649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4649) [`b284fba3d1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b284fba3d1) - Components that had missing names are now fixed - this helps when looking for them using the React Dev Tools.
|
|
670
682
|
|
|
671
683
|
## 10.0.4
|
|
672
684
|
|
|
673
685
|
### Patch Changes
|
|
674
686
|
|
|
675
|
-
- [`6360c46009`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6360c46009) - Reenable integration tests for Edge browser
|
|
687
|
+
- [#4707](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4707) [`6360c46009`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6360c46009) - Reenable integration tests for Edge browser
|
|
676
688
|
|
|
677
689
|
## 10.0.3
|
|
678
690
|
|
|
679
691
|
### Patch Changes
|
|
680
692
|
|
|
681
|
-
- [`8598d0bd13`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8598d0bd13) - Remove unnecessary code and tests for IE11.
|
|
693
|
+
- [#4424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4424) [`8598d0bd13`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8598d0bd13) - Remove unnecessary code and tests for IE11.
|
|
682
694
|
- Updated dependencies
|
|
683
695
|
|
|
684
696
|
## 10.0.2
|
|
685
697
|
|
|
686
698
|
### Patch Changes
|
|
687
699
|
|
|
688
|
-
- [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
|
|
700
|
+
- [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885) [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
|
|
689
701
|
|
|
690
702
|
Since tslib is a dependency for all our packages we recommend that products also follow this tslib upgrade
|
|
691
703
|
to prevent duplicates of tslib being bundled.
|
|
@@ -694,14 +706,14 @@
|
|
|
694
706
|
|
|
695
707
|
### Patch Changes
|
|
696
708
|
|
|
697
|
-
- [`6262f382de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6262f382de) - Use the 'lodash' package instead of single-function 'lodash.\*' packages
|
|
709
|
+
- [#3823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3823) [`6262f382de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6262f382de) - Use the 'lodash' package instead of single-function 'lodash.\*' packages
|
|
698
710
|
- Updated dependencies
|
|
699
711
|
|
|
700
712
|
## 10.0.0
|
|
701
713
|
|
|
702
714
|
### Major Changes
|
|
703
715
|
|
|
704
|
-
- [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially dropping IE11 support, from this version onwards there are no warranties of the package working in IE11.
|
|
716
|
+
- [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335) [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially dropping IE11 support, from this version onwards there are no warranties of the package working in IE11.
|
|
705
717
|
For more information see: https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
|
|
706
718
|
|
|
707
719
|
### Patch Changes
|
|
@@ -712,13 +724,13 @@
|
|
|
712
724
|
|
|
713
725
|
### Patch Changes
|
|
714
726
|
|
|
715
|
-
- [`69643331c3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/69643331c3) - Prevent day names table header from wrapping into two line
|
|
727
|
+
- [#2443](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2443) [`69643331c3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/69643331c3) - Prevent day names table header from wrapping into two line
|
|
716
728
|
|
|
717
729
|
## 9.2.9
|
|
718
730
|
|
|
719
731
|
### Patch Changes
|
|
720
732
|
|
|
721
|
-
- [`54a9514fcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54a9514fcf) - Build and supporting files will no longer be published to npm
|
|
733
|
+
- [#2866](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2866) [`54a9514fcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54a9514fcf) - Build and supporting files will no longer be published to npm
|
|
722
734
|
|
|
723
735
|
## 9.2.8
|
|
724
736
|
|
package/codemods/utils.tsx
CHANGED
|
@@ -4,6 +4,7 @@ import core, {
|
|
|
4
4
|
FileInfo,
|
|
5
5
|
ImportDeclaration,
|
|
6
6
|
ImportSpecifier,
|
|
7
|
+
JSXAttribute,
|
|
7
8
|
ObjectExpression,
|
|
8
9
|
Options,
|
|
9
10
|
Program,
|
|
@@ -58,7 +59,7 @@ export function getJSXAttributesByName(
|
|
|
58
59
|
j: core.JSCodeshift,
|
|
59
60
|
element: ASTPath<any>,
|
|
60
61
|
attributeName: string,
|
|
61
|
-
) {
|
|
62
|
+
): Collection<JSXAttribute> {
|
|
62
63
|
return j(element)
|
|
63
64
|
.find(j.JSXOpeningElement)
|
|
64
65
|
.find(j.JSXAttribute)
|