@atlaskit/blanket 12.2.2
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 +774 -0
- package/LICENSE +13 -0
- package/README.md +11 -0
- package/__perf__/default.tsx +5 -0
- package/__perf__/hideBlanket.tsx +58 -0
- package/__perf__/showBlanket.tsx +56 -0
- package/__perf__/withClickThroughDisabled.tsx +14 -0
- package/__perf__/withClickThroughEnabled.tsx +14 -0
- package/codemods/12.0.0-lite-mode.tsx +18 -0
- package/codemods/__tests__/rename-canclickthrough-to-shouldallowclickthrough.tsx +167 -0
- package/codemods/internal/constants.tsx +3 -0
- package/codemods/migrations/rename-canclickthrough-to-shouldallowclickthrough.tsx +13 -0
- package/dist/cjs/blanket.js +112 -0
- package/dist/cjs/entry-points/types.js +5 -0
- package/dist/cjs/index.js +15 -0
- package/dist/cjs/types.js +5 -0
- package/dist/cjs/version.json +5 -0
- package/dist/es2019/blanket.js +79 -0
- package/dist/es2019/entry-points/types.js +1 -0
- package/dist/es2019/index.js +1 -0
- package/dist/es2019/types.js +1 -0
- package/dist/es2019/version.json +5 -0
- package/dist/esm/blanket.js +89 -0
- package/dist/esm/entry-points/types.js +1 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/types.js +1 -0
- package/dist/esm/version.json +5 -0
- package/dist/types/blanket.d.ts +12 -0
- package/dist/types/entry-points/types.d.ts +1 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/types.d.ts +30 -0
- package/package.json +80 -0
- package/types/package.json +7 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,774 @@
|
|
|
1
|
+
# @atlaskit/blanket
|
|
2
|
+
|
|
3
|
+
## 12.2.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 12.2.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
15
|
+
## 12.2.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- [`9f7f8e0b581`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f7f8e0b581) - [ux] Blanket now uses a transparent background color when un-tinted instead of using opacity.
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- [`2d7cc544696`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2d7cc544696) - Updates token usage to match the latest token set
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
|
|
26
|
+
## 12.1.1
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- Updated dependencies
|
|
31
|
+
|
|
32
|
+
## 12.1.0
|
|
33
|
+
|
|
34
|
+
### Minor Changes
|
|
35
|
+
|
|
36
|
+
- [`6071d362abb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6071d362abb) - [ux] Colors now sourced from tokens.
|
|
37
|
+
|
|
38
|
+
### Patch Changes
|
|
39
|
+
|
|
40
|
+
- [`8279380176b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8279380176b) - Internal code changes.
|
|
41
|
+
- Updated dependencies
|
|
42
|
+
|
|
43
|
+
## 12.0.1
|
|
44
|
+
|
|
45
|
+
### Patch Changes
|
|
46
|
+
|
|
47
|
+
- [`378d1cef00f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/378d1cef00f) - Bump `@atlaskit/theme` to version `^11.3.0`.
|
|
48
|
+
|
|
49
|
+
## 12.0.0
|
|
50
|
+
|
|
51
|
+
### Major Changes
|
|
52
|
+
|
|
53
|
+
- [`f166f5398b2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f166f5398b2) - In this version we made **Blanket** faster and lighter
|
|
54
|
+
|
|
55
|
+
- General performance improvements
|
|
56
|
+
|
|
57
|
+
- **BREAKING** **Blanket** now accepts a `children` prop whose value is of type `ReactElement`.
|
|
58
|
+
|
|
59
|
+
- **BREAKING** `canClickThrough` prop is now renamed to `shouldAllowClickThrough`.
|
|
60
|
+
|
|
61
|
+
**Running the codemod cli**
|
|
62
|
+
|
|
63
|
+
To run the codemod: **You first need to have the latest version installed**
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
yarn upgrade @atlaskit/blanket@^12.0.0
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
Once upgraded,
|
|
70
|
+
use `@atlaskit/codemod-cli`:
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
npx @atlaskit/codemod-cli --parser babel --extensions ts,tsx,js [relativePath]
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
The CLI will show a list of components and versions so select `@atlaskit/blanket@^12.0.0` and you will automatically be upgraded.
|
|
77
|
+
|
|
78
|
+
What will be changed:
|
|
79
|
+
|
|
80
|
+
- It will rename the `canClickThrough` prop to `shouldAllowClickThrough`.
|
|
81
|
+
|
|
82
|
+
Run `npx @atlaskit/codemod-cli -h` for more details on usage.
|
|
83
|
+
|
|
84
|
+
For Atlassians,
|
|
85
|
+
refer to the [documentation](https://developer.atlassian.com/cloud/framework/atlassian-frontend/codemods/01-atlassian-codemods/) for more details on the codemod CLI.
|
|
86
|
+
|
|
87
|
+
### Patch Changes
|
|
88
|
+
|
|
89
|
+
- [`9c98e8227f6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9c98e8227f6) - Internal refactor for style declarations.
|
|
90
|
+
- Updated dependencies
|
|
91
|
+
|
|
92
|
+
## 11.4.1
|
|
93
|
+
|
|
94
|
+
### Patch Changes
|
|
95
|
+
|
|
96
|
+
- [`dd89416d229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dd89416d229) - Updated dependency of `@atlaskit/theme` to 11.2.0
|
|
97
|
+
|
|
98
|
+
## 11.4.0
|
|
99
|
+
|
|
100
|
+
### Minor Changes
|
|
101
|
+
|
|
102
|
+
- [`96fda7877a1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/96fda7877a1) - We converted blanket from class to functional component and replaced styled components with emotion
|
|
103
|
+
|
|
104
|
+
## 11.3.1
|
|
105
|
+
|
|
106
|
+
### Patch Changes
|
|
107
|
+
|
|
108
|
+
- [`d6f7ff383cf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6f7ff383cf) - Updates to development dependency `storybook-addon-performance`
|
|
109
|
+
|
|
110
|
+
## 11.3.0
|
|
111
|
+
|
|
112
|
+
### Minor Changes
|
|
113
|
+
|
|
114
|
+
- [`f6b951a51f2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f6b951a51f2) - Removes usage of styled-components in favour of standardising on emotion
|
|
115
|
+
|
|
116
|
+
## 11.2.1
|
|
117
|
+
|
|
118
|
+
### Patch Changes
|
|
119
|
+
|
|
120
|
+
- [`e08a57e5055`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e08a57e5055) - Added the `design-system` tech stacks to the `package.json`
|
|
121
|
+
|
|
122
|
+
## 11.2.0
|
|
123
|
+
|
|
124
|
+
### Minor Changes
|
|
125
|
+
|
|
126
|
+
- [`990aefd838b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/990aefd838b) - Blanket now accepts testId prop to be used for automated testing purposes.
|
|
127
|
+
|
|
128
|
+
### Patch Changes
|
|
129
|
+
|
|
130
|
+
- Updated dependencies
|
|
131
|
+
|
|
132
|
+
## 11.1.1
|
|
133
|
+
|
|
134
|
+
### Patch Changes
|
|
135
|
+
|
|
136
|
+
- [`79c23df6340`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79c23df6340) - Use injected package name and version for analytics instead of version.json.
|
|
137
|
+
|
|
138
|
+
## 11.1.0
|
|
139
|
+
|
|
140
|
+
### Minor Changes
|
|
141
|
+
|
|
142
|
+
- [`4f9e6e2db5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f9e6e2db5) - These packages now have defined entry points -- this means that you cannot access internal files in the packages that are not meant to be public. Sub-components in these packages have been explicitly defined, aiding tree-shaking and reducing bundle size.
|
|
143
|
+
|
|
144
|
+
## 11.0.4
|
|
145
|
+
|
|
146
|
+
### Patch Changes
|
|
147
|
+
|
|
148
|
+
- [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc
|
|
149
|
+
|
|
150
|
+
## 11.0.3
|
|
151
|
+
|
|
152
|
+
### Patch Changes
|
|
153
|
+
|
|
154
|
+
- [`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.
|
|
155
|
+
This requires version 3.8 of Typescript, read more about how we handle Typescript versions here: https://atlaskit.atlassian.com/get-started
|
|
156
|
+
Also add `typescript` to `devDependencies` to denote version that the package was built with.
|
|
157
|
+
|
|
158
|
+
## 11.0.2
|
|
159
|
+
|
|
160
|
+
### Patch Changes
|
|
161
|
+
|
|
162
|
+
- Updated dependencies
|
|
163
|
+
|
|
164
|
+
## 11.0.1
|
|
165
|
+
|
|
166
|
+
### Patch Changes
|
|
167
|
+
|
|
168
|
+
- [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
|
|
169
|
+
|
|
170
|
+
Since tslib is a dependency for all our packages we recommend that products also follow this tslib upgrade
|
|
171
|
+
to prevent duplicates of tslib being bundled.
|
|
172
|
+
|
|
173
|
+
## 11.0.0
|
|
174
|
+
|
|
175
|
+
### Major Changes
|
|
176
|
+
|
|
177
|
+
- [`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.
|
|
178
|
+
For more information see: https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
|
|
179
|
+
|
|
180
|
+
### Patch Changes
|
|
181
|
+
|
|
182
|
+
- Updated dependencies
|
|
183
|
+
|
|
184
|
+
## 10.0.19
|
|
185
|
+
|
|
186
|
+
### Patch Changes
|
|
187
|
+
|
|
188
|
+
- [`54a9514fcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54a9514fcf) - Build and supporting files will no longer be published to npm
|
|
189
|
+
|
|
190
|
+
## 10.0.18
|
|
191
|
+
|
|
192
|
+
### Patch Changes
|
|
193
|
+
|
|
194
|
+
- [patch][6d744d3ff1](https://bitbucket.org/atlassian/atlassian-frontend/commits/6d744d3ff1):
|
|
195
|
+
|
|
196
|
+
Change imports to comply with Atlassian conventions- Updated dependencies [6b8e60827e](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b8e60827e):
|
|
197
|
+
|
|
198
|
+
- Updated dependencies [57c0487a02](https://bitbucket.org/atlassian/atlassian-frontend/commits/57c0487a02):
|
|
199
|
+
- @atlaskit/button@13.3.11
|
|
200
|
+
|
|
201
|
+
## 10.0.17
|
|
202
|
+
|
|
203
|
+
### Patch Changes
|
|
204
|
+
|
|
205
|
+
- [patch][6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
|
|
206
|
+
|
|
207
|
+
Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
|
|
208
|
+
|
|
209
|
+
- @atlaskit/docs@8.3.2
|
|
210
|
+
- @atlaskit/analytics-next@6.3.5
|
|
211
|
+
- @atlaskit/button@13.3.7
|
|
212
|
+
- @atlaskit/theme@9.5.1
|
|
213
|
+
|
|
214
|
+
## 10.0.16
|
|
215
|
+
|
|
216
|
+
### Patch Changes
|
|
217
|
+
|
|
218
|
+
- [patch][4a223473c5](https://bitbucket.org/atlassian/atlassian-frontend/commits/4a223473c5):
|
|
219
|
+
|
|
220
|
+
Removes babel/runtime from dependencies. Users should see a smaller bundlesize as a result- Updated dependencies [82747f2922](https://bitbucket.org/atlassian/atlassian-frontend/commits/82747f2922):
|
|
221
|
+
|
|
222
|
+
- Updated dependencies [4a223473c5](https://bitbucket.org/atlassian/atlassian-frontend/commits/4a223473c5):
|
|
223
|
+
- @atlaskit/theme@9.5.0
|
|
224
|
+
- @atlaskit/button@13.3.5
|
|
225
|
+
|
|
226
|
+
## 10.0.15
|
|
227
|
+
|
|
228
|
+
### Patch Changes
|
|
229
|
+
|
|
230
|
+
- [patch][d222c2b987](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d222c2b987):
|
|
231
|
+
|
|
232
|
+
Theme has been converted to Typescript. Typescript consumers will now get static type safety. Flow types are no longer provided.
|
|
233
|
+
|
|
234
|
+
### Breaking
|
|
235
|
+
|
|
236
|
+
** getTokens props changes **
|
|
237
|
+
When defining the value function passed into a ThemeProvider, the getTokens parameter cannot be called without props; if no props are provided an empty object `{}` must be passed in:
|
|
238
|
+
|
|
239
|
+
```javascript
|
|
240
|
+
<CustomTheme.Provider
|
|
241
|
+
value={t => ({ ...t(), backgroundColor: '#333'})}
|
|
242
|
+
>
|
|
243
|
+
```
|
|
244
|
+
|
|
245
|
+
becomes:
|
|
246
|
+
|
|
247
|
+
```javascript
|
|
248
|
+
<CustomTheme.Provider
|
|
249
|
+
value={t => ({ ...t({}), backgroundColor: '#333'})}
|
|
250
|
+
>
|
|
251
|
+
```
|
|
252
|
+
|
|
253
|
+
** Color palette changes **
|
|
254
|
+
Color palettes have been moved into their own file.
|
|
255
|
+
Users will need to update imports from this:
|
|
256
|
+
|
|
257
|
+
```javascript
|
|
258
|
+
import { colors } from '@atlaskit/theme';
|
|
259
|
+
|
|
260
|
+
colors.colorPalette('8');
|
|
261
|
+
```
|
|
262
|
+
|
|
263
|
+
to this:
|
|
264
|
+
|
|
265
|
+
```javascript
|
|
266
|
+
import { colorPalette } from '@atlaskit/theme';
|
|
267
|
+
|
|
268
|
+
colorPalette.colorPalette('8');
|
|
269
|
+
```
|
|
270
|
+
|
|
271
|
+
or for multi entry-point users:
|
|
272
|
+
|
|
273
|
+
```javascript
|
|
274
|
+
import * as colors from '@atlaskit/theme/colors';
|
|
275
|
+
|
|
276
|
+
colors.colorPalette('8');
|
|
277
|
+
```
|
|
278
|
+
|
|
279
|
+
to this:
|
|
280
|
+
|
|
281
|
+
```javascript
|
|
282
|
+
import * as colorPalettes from '@atlaskit/theme/color-palette';
|
|
283
|
+
|
|
284
|
+
colorPalettes.colorPalette('8');
|
|
285
|
+
```
|
|
286
|
+
|
|
287
|
+
## 10.0.14
|
|
288
|
+
|
|
289
|
+
### Patch Changes
|
|
290
|
+
|
|
291
|
+
- [patch][35d2229b2a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/35d2229b2a):
|
|
292
|
+
|
|
293
|
+
Adding missing license to packages and update to Copyright 2019 Atlassian Pty Ltd.
|
|
294
|
+
|
|
295
|
+
## 10.0.13
|
|
296
|
+
|
|
297
|
+
### Patch Changes
|
|
298
|
+
|
|
299
|
+
- [patch][a2d0043716](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a2d0043716):
|
|
300
|
+
|
|
301
|
+
Updated version of analytics-next to fix potential incompatibilities with TS 3.6
|
|
302
|
+
|
|
303
|
+
## 10.0.12
|
|
304
|
+
|
|
305
|
+
### Patch Changes
|
|
306
|
+
|
|
307
|
+
- [patch][097b696613](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/097b696613):
|
|
308
|
+
|
|
309
|
+
Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving non-relative imports as relative imports
|
|
310
|
+
|
|
311
|
+
## 10.0.11
|
|
312
|
+
|
|
313
|
+
### Patch Changes
|
|
314
|
+
|
|
315
|
+
- [patch][ecca4d1dbb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ecca4d1dbb):
|
|
316
|
+
|
|
317
|
+
Upgraded Typescript to 3.3.x
|
|
318
|
+
|
|
319
|
+
## 10.0.10
|
|
320
|
+
|
|
321
|
+
### Patch Changes
|
|
322
|
+
|
|
323
|
+
- [patch][708028db86](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/708028db86):
|
|
324
|
+
|
|
325
|
+
Change all the imports to theme in Core to use multi entry points
|
|
326
|
+
|
|
327
|
+
## 10.0.9
|
|
328
|
+
|
|
329
|
+
### Patch Changes
|
|
330
|
+
|
|
331
|
+
- [patch][de35ce8c67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/de35ce8c67):
|
|
332
|
+
|
|
333
|
+
Updates component maintainers
|
|
334
|
+
|
|
335
|
+
## 10.0.8
|
|
336
|
+
|
|
337
|
+
### Patch Changes
|
|
338
|
+
|
|
339
|
+
- [patch][926b43142b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/926b43142b):
|
|
340
|
+
|
|
341
|
+
Analytics-next has been converted to Typescript. Typescript consumers will now get static type safety. Flow types are no longer provided. No behavioural changes.
|
|
342
|
+
|
|
343
|
+
**Breaking changes**
|
|
344
|
+
|
|
345
|
+
- `withAnalyticsForSumTypeProps` alias has been removed, please use `withAnalyticsEvents`
|
|
346
|
+
- `AnalyticsContextWrappedComp` alias has been removed, please use `withAnalyticsContext`
|
|
347
|
+
|
|
348
|
+
**Breaking changes to TypeScript annotations**
|
|
349
|
+
|
|
350
|
+
- `withAnalyticsEvents` now infers proptypes automatically, consumers no longer need to provide props as a generic type.
|
|
351
|
+
- `withAnalyticsContext` now infers proptypes automatically, consumers no longer need to provide props as a generic type.
|
|
352
|
+
- Type `WithAnalyticsEventProps` has been renamed to `WithAnalyticsEventsProps` to match source code
|
|
353
|
+
- Type `CreateUIAnalyticsEventSignature` has been renamed to `CreateUIAnalyticsEvent` to match source code
|
|
354
|
+
- Type `UIAnalyticsEventHandlerSignature` has been renamed to `UIAnalyticsEventHandler` to match source code
|
|
355
|
+
- Type `AnalyticsEventsPayload` has been renamed to `AnalyticsEventPayload`
|
|
356
|
+
- Type `ObjectType` has been removed, please use `Record<string, any>` or `[key: string]: any`
|
|
357
|
+
- Type `UIAnalyticsEventInterface` has been removed, please use `UIAnalyticsEvent`
|
|
358
|
+
- Type `AnalyticsEventInterface` has been removed, please use `AnalyticsEvent`
|
|
359
|
+
- Type `CreateAndFireEventFunction` removed and should now be inferred by TypeScript
|
|
360
|
+
- Type `AnalyticsEventUpdater` removed and should now be inferred by TypeScript
|
|
361
|
+
|
|
362
|
+
## 10.0.7
|
|
363
|
+
|
|
364
|
+
### Patch Changes
|
|
365
|
+
|
|
366
|
+
- [patch][9f8ab1084b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9f8ab1084b):
|
|
367
|
+
|
|
368
|
+
Consume analytics-next ts type definitions as an ambient declaration.
|
|
369
|
+
|
|
370
|
+
## 10.0.6
|
|
371
|
+
|
|
372
|
+
### Patch Changes
|
|
373
|
+
|
|
374
|
+
- [patch][bbff8a7d87](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bbff8a7d87):
|
|
375
|
+
|
|
376
|
+
Fixes bug, missing version.json file
|
|
377
|
+
|
|
378
|
+
## 10.0.5
|
|
379
|
+
|
|
380
|
+
### Patch Changes
|
|
381
|
+
|
|
382
|
+
- [patch][18dfac7332](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/18dfac7332):
|
|
383
|
+
|
|
384
|
+
In this PR, we are:
|
|
385
|
+
|
|
386
|
+
- Re-introducing dist build folders
|
|
387
|
+
- Adding back cjs
|
|
388
|
+
- Replacing es5 by cjs and es2015 by esm
|
|
389
|
+
- Creating folders at the root for entry-points
|
|
390
|
+
- Removing the generation of the entry-points at the root
|
|
391
|
+
Please see this [ticket](https://product-fabric.atlassian.net/browse/BUILDTOOLS-118) or this [page](https://hello.atlassian.net/wiki/spaces/FED/pages/452325500/Finishing+Atlaskit+multiple+entry+points) for further details
|
|
392
|
+
|
|
393
|
+
## 10.0.4
|
|
394
|
+
|
|
395
|
+
### Patch Changes
|
|
396
|
+
|
|
397
|
+
- [patch][d0db01b410](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d0db01b410):
|
|
398
|
+
|
|
399
|
+
TypeScript users of withAnalyticsEvents and withAnalyticsContext are now required to provide props as a generic type. This is so that TypeScript can correctly calculate the props and defaultProps of the returned component.
|
|
400
|
+
|
|
401
|
+
Before:
|
|
402
|
+
|
|
403
|
+
```typescript
|
|
404
|
+
withAnalyticsEvents()(Button) as ComponentClass<Props>;
|
|
405
|
+
```
|
|
406
|
+
|
|
407
|
+
After:
|
|
408
|
+
|
|
409
|
+
```typescript
|
|
410
|
+
withAnalyticsEvents<Props>()(Button);
|
|
411
|
+
```
|
|
412
|
+
|
|
413
|
+
## 10.0.3
|
|
414
|
+
|
|
415
|
+
### Patch Changes
|
|
416
|
+
|
|
417
|
+
- [patch][29a1f158c1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/29a1f158c1):
|
|
418
|
+
|
|
419
|
+
Use default react import in typescript files.
|
|
420
|
+
|
|
421
|
+
## 10.0.2
|
|
422
|
+
|
|
423
|
+
### Patch Changes
|
|
424
|
+
|
|
425
|
+
- [patch][93bcf314c6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/93bcf314c6):
|
|
426
|
+
|
|
427
|
+
Added missing tslib dep
|
|
428
|
+
|
|
429
|
+
## 10.0.1
|
|
430
|
+
|
|
431
|
+
- [patch][27cf35ca9d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/27cf35ca9d):
|
|
432
|
+
|
|
433
|
+
- Updated event type for `onBlanketClicked` prop
|
|
434
|
+
|
|
435
|
+
## 10.0.0
|
|
436
|
+
|
|
437
|
+
- [major][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
|
|
438
|
+
|
|
439
|
+
- Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use this package, please ensure you use at least this version of react and react-dom.
|
|
440
|
+
|
|
441
|
+
## 9.0.0
|
|
442
|
+
|
|
443
|
+
- [major][38dab947e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/38dab947e6):
|
|
444
|
+
|
|
445
|
+
- Updated Blanket to TypeScript. Flow types are no longer exported.
|
|
446
|
+
|
|
447
|
+
## 8.0.3
|
|
448
|
+
|
|
449
|
+
- Updated dependencies [9c0b4744be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0b4744be):
|
|
450
|
+
- @atlaskit/docs@7.0.3
|
|
451
|
+
- @atlaskit/button@12.0.3
|
|
452
|
+
- @atlaskit/theme@8.1.7
|
|
453
|
+
|
|
454
|
+
## 8.0.2
|
|
455
|
+
|
|
456
|
+
- Updated dependencies [1e826b2966](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e826b2966):
|
|
457
|
+
- @atlaskit/docs@7.0.2
|
|
458
|
+
- @atlaskit/analytics-next@4.0.3
|
|
459
|
+
- @atlaskit/theme@8.1.6
|
|
460
|
+
- @atlaskit/button@12.0.0
|
|
461
|
+
|
|
462
|
+
## 8.0.1
|
|
463
|
+
|
|
464
|
+
- Updated dependencies [9d5cc39394](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d5cc39394):
|
|
465
|
+
- @atlaskit/docs@7.0.1
|
|
466
|
+
- @atlaskit/analytics-next@4.0.1
|
|
467
|
+
- @atlaskit/theme@8.0.1
|
|
468
|
+
- @atlaskit/button@11.0.0
|
|
469
|
+
|
|
470
|
+
## 8.0.0
|
|
471
|
+
|
|
472
|
+
- [major][76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
|
|
473
|
+
|
|
474
|
+
- Drop ES5 from all the flow modules
|
|
475
|
+
|
|
476
|
+
### Dropping CJS support in all @atlaskit packages
|
|
477
|
+
|
|
478
|
+
As a breaking change, all @atlaskit packages will be dropping cjs distributions and will only distribute esm. This means all distributed code will be transpiled, but will still contain `import` and
|
|
479
|
+
`export` declarations.
|
|
480
|
+
|
|
481
|
+
The major reason for doing this is to allow us to support multiple entry points in packages, e.g:
|
|
482
|
+
|
|
483
|
+
```js
|
|
484
|
+
import colors from `@atlaskit/theme/colors`;
|
|
485
|
+
```
|
|
486
|
+
|
|
487
|
+
Previously this was sort of possible for consumers by doing something like:
|
|
488
|
+
|
|
489
|
+
```js
|
|
490
|
+
import colors from `@atlaskit/theme/dist/esm/colors`;
|
|
491
|
+
```
|
|
492
|
+
|
|
493
|
+
This has a couple of issues. 1, it treats the file system as API making internal refactors harder, we have to worry about how consumers might be using things that aren't _actually_ supposed to be used. 2. We are unable to do this _internally_ in @atlaskit packages. This leads to lots of packages bundling all of theme, just to use a single color, especially in situations where tree shaking fails.
|
|
494
|
+
|
|
495
|
+
To support being able to use multiple entrypoints internally, we unfortunately cannot have multiple distributions as they would need to have very different imports from of their own internal dependencies.
|
|
496
|
+
|
|
497
|
+
ES Modules are widely supported by all modern bundlers and can be worked around in node environments.
|
|
498
|
+
|
|
499
|
+
We may choose to revisit this solution in the future if we find any unintended condequences, but we see this as a pretty sane path forward which should lead to some major bundle size decreases, saner API's and simpler package architecture.
|
|
500
|
+
|
|
501
|
+
Please reach out to #fabric-build (if in Atlassian) or create an issue in [Design System Support](https://ecosystem.atlassian.net/secure/CreateIssue.jspa?pid=24670) (for external) if you have any questions or queries about this.
|
|
502
|
+
|
|
503
|
+
## 7.0.12
|
|
504
|
+
|
|
505
|
+
- Updated dependencies [58b84fa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/58b84fa):
|
|
506
|
+
- @atlaskit/analytics-next@3.1.2
|
|
507
|
+
- @atlaskit/button@10.1.1
|
|
508
|
+
- @atlaskit/theme@7.0.1
|
|
509
|
+
- @atlaskit/docs@6.0.0
|
|
510
|
+
|
|
511
|
+
## 7.0.11
|
|
512
|
+
|
|
513
|
+
- Updated dependencies [d13242d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d13242d):
|
|
514
|
+
- @atlaskit/docs@5.2.3
|
|
515
|
+
- @atlaskit/button@10.0.4
|
|
516
|
+
- @atlaskit/theme@7.0.0
|
|
517
|
+
|
|
518
|
+
## 7.0.10
|
|
519
|
+
|
|
520
|
+
- Updated dependencies [6998f11](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6998f11):
|
|
521
|
+
- @atlaskit/docs@5.2.1
|
|
522
|
+
- @atlaskit/analytics-next@3.1.1
|
|
523
|
+
- @atlaskit/theme@6.2.1
|
|
524
|
+
- @atlaskit/button@10.0.0
|
|
525
|
+
|
|
526
|
+
## 7.0.9
|
|
527
|
+
|
|
528
|
+
- [patch][a637f5e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a637f5e):
|
|
529
|
+
|
|
530
|
+
- Refine and fix some flow type errors found by fixing @atlaskit/analytics-next HOCs to allow flow to type check properly
|
|
531
|
+
|
|
532
|
+
## 7.0.8
|
|
533
|
+
|
|
534
|
+
- [patch] Adds missing implicit @babel/runtime dependency [b71751b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b71751b)
|
|
535
|
+
|
|
536
|
+
## 7.0.7
|
|
537
|
+
|
|
538
|
+
- [patch] Adds sideEffects: false to allow proper tree shaking [b5d6d04](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b5d6d04)
|
|
539
|
+
|
|
540
|
+
## 7.0.5
|
|
541
|
+
|
|
542
|
+
- [patch] Updated dependencies [df22ad8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/df22ad8)
|
|
543
|
+
- @atlaskit/theme@6.0.0
|
|
544
|
+
- @atlaskit/button@9.0.6
|
|
545
|
+
- @atlaskit/docs@5.0.6
|
|
546
|
+
|
|
547
|
+
## 7.0.4
|
|
548
|
+
|
|
549
|
+
- [patch] update the dependency of react-dom to 16.4.2 due to vulnerability in previous versions read https://reactjs.org/blog/2018/08/01/react-v-16-4-2.html for details [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
|
|
550
|
+
- [none] Updated dependencies [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
|
|
551
|
+
- @atlaskit/analytics-next@3.0.4
|
|
552
|
+
- @atlaskit/button@9.0.5
|
|
553
|
+
- @atlaskit/theme@5.1.3
|
|
554
|
+
|
|
555
|
+
## 7.0.3
|
|
556
|
+
|
|
557
|
+
- [patch] Updated dependencies [acd86a1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/acd86a1)
|
|
558
|
+
- @atlaskit/button@9.0.4
|
|
559
|
+
- @atlaskit/theme@5.1.2
|
|
560
|
+
- @atlaskit/analytics-next@3.0.3
|
|
561
|
+
- @atlaskit/docs@5.0.2
|
|
562
|
+
|
|
563
|
+
## 7.0.2
|
|
564
|
+
|
|
565
|
+
- [patch] Add a SSR test for every package, add react-dom and build-utils in devDependencies [7e331b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e331b5)
|
|
566
|
+
- [none] Updated dependencies [7e331b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e331b5)
|
|
567
|
+
- @atlaskit/analytics-next@3.0.2
|
|
568
|
+
- @atlaskit/button@9.0.3
|
|
569
|
+
- @atlaskit/theme@5.1.1
|
|
570
|
+
|
|
571
|
+
## 7.0.1
|
|
572
|
+
|
|
573
|
+
- [patch] Move analytics tests and replace elements to core [49d4ab4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/49d4ab4)
|
|
574
|
+
- [none] Updated dependencies [49d4ab4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/49d4ab4)
|
|
575
|
+
- @atlaskit/analytics-next@3.0.1
|
|
576
|
+
- @atlaskit/button@9.0.2
|
|
577
|
+
- @atlaskit/docs@5.0.1
|
|
578
|
+
|
|
579
|
+
## 7.0.0
|
|
580
|
+
|
|
581
|
+
- [major] Provides analytics for common component interations. See the [Instrumented Components](https://atlaskit.atlassian.com/packages/core/analytics-next) section for more details. If you are using enzyme for testing you will have to use [our forked version of the library](https://atlaskit.atlassian.com/docs/guides/testing#we-use-a-forked-version-of-enzyme). [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
|
|
582
|
+
- [major] Updates to React ^16.4.0 [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
|
|
583
|
+
- [major] Updated dependencies [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
|
|
584
|
+
- @atlaskit/analytics-next@3.0.0
|
|
585
|
+
- @atlaskit/button@9.0.0
|
|
586
|
+
- @atlaskit/theme@5.0.0
|
|
587
|
+
- @atlaskit/docs@5.0.0
|
|
588
|
+
- [major] Updated dependencies [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
|
|
589
|
+
- @atlaskit/analytics-next@3.0.0
|
|
590
|
+
- @atlaskit/button@9.0.0
|
|
591
|
+
- @atlaskit/theme@5.0.0
|
|
592
|
+
- @atlaskit/docs@5.0.0
|
|
593
|
+
|
|
594
|
+
## 6.0.3
|
|
595
|
+
|
|
596
|
+
- [patch] Update changelogs to remove duplicate [cc58e17](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc58e17)
|
|
597
|
+
- [none] Updated dependencies [cc58e17](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc58e17)
|
|
598
|
+
- @atlaskit/theme@4.0.3
|
|
599
|
+
- @atlaskit/button@8.1.1
|
|
600
|
+
- @atlaskit/docs@4.1.1
|
|
601
|
+
|
|
602
|
+
## 6.0.2
|
|
603
|
+
|
|
604
|
+
- [none] Updated dependencies [9d20f54](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d20f54)
|
|
605
|
+
- @atlaskit/docs@4.1.0
|
|
606
|
+
- @atlaskit/theme@4.0.2
|
|
607
|
+
- @atlaskit/button@8.1.0
|
|
608
|
+
|
|
609
|
+
## 6.0.1
|
|
610
|
+
|
|
611
|
+
- [patch] Update readme's [223cd67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/223cd67)
|
|
612
|
+
- [patch] Updated dependencies [223cd67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/223cd67)
|
|
613
|
+
- @atlaskit/button@8.0.1
|
|
614
|
+
- @atlaskit/theme@4.0.1
|
|
615
|
+
- @atlaskit/docs@4.0.1
|
|
616
|
+
|
|
617
|
+
## 6.0.0
|
|
618
|
+
|
|
619
|
+
- [major] makes styled-components a peer dependency and upgrades version range from 1.4.6 - 3 to ^3.2.6 [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
|
|
620
|
+
- [patch] Updated dependencies [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
|
|
621
|
+
- @atlaskit/button@8.0.0
|
|
622
|
+
- @atlaskit/theme@4.0.0
|
|
623
|
+
- @atlaskit/docs@4.0.0
|
|
624
|
+
|
|
625
|
+
## 5.0.2
|
|
626
|
+
|
|
627
|
+
- [patch] Updated dependencies [d662caa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d662caa)
|
|
628
|
+
- @atlaskit/button@7.2.5
|
|
629
|
+
- @atlaskit/theme@3.2.2
|
|
630
|
+
- @atlaskit/docs@3.0.4
|
|
631
|
+
|
|
632
|
+
## 5.0.0
|
|
633
|
+
|
|
634
|
+
- [major] Bump to React 16.3. [4251858](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4251858)
|
|
635
|
+
|
|
636
|
+
## 4.1.1
|
|
637
|
+
|
|
638
|
+
- [patch] Re-releasing due to potentially broken babel release [9ed0bba](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9ed0bba)
|
|
639
|
+
|
|
640
|
+
## 4.1.0
|
|
641
|
+
|
|
642
|
+
- [minor] Update styled-components dependency to support versions 1.4.6 - 3 [ceccf30](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ceccf30)
|
|
643
|
+
|
|
644
|
+
## 4.0.9
|
|
645
|
+
|
|
646
|
+
- [patch] updated the repository url to https://bitbucket.org/atlassian/atlaskit-mk-2 [1e57e5a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e57e5a)
|
|
647
|
+
|
|
648
|
+
## 4.0.8
|
|
649
|
+
|
|
650
|
+
- [patch] Packages Flow types for elements components [3111e74](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3111e74)
|
|
651
|
+
|
|
652
|
+
## 4.0.7
|
|
653
|
+
|
|
654
|
+
- [patch] Minor documentation fixes [f0e96bd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f0e96bd)
|
|
655
|
+
|
|
656
|
+
## 4.0.6
|
|
657
|
+
|
|
658
|
+
- [patch] Migrate Navigation from Ak repo to ak mk 2 repo, Fixed flow typing inconsistencies in ak mk 2 [bdeef5b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bdeef5b)
|
|
659
|
+
|
|
660
|
+
## 4.0.5
|
|
661
|
+
|
|
662
|
+
- [patch] Resolved low hanging flow errors in field-base field-text comment icon item and website, \$ [007de27](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/007de27)
|
|
663
|
+
|
|
664
|
+
## 4.0.4
|
|
665
|
+
|
|
666
|
+
- [patch] Migration of Blanket to mk2 repo [1c55d97](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1c55d97)
|
|
667
|
+
|
|
668
|
+
## 4.0.3 (2017-12-21)
|
|
669
|
+
|
|
670
|
+
- bug fix; Minor change to storybook to test new s3 bucket ([97cbb7d](https://bitbucket.org/atlassian/atlaskit/commits/97cbb7d))
|
|
671
|
+
|
|
672
|
+
## 4.0.2 (2017-11-27)
|
|
673
|
+
|
|
674
|
+
- bug fix; bump theme dependency to 2.2.0 (issues closed: nav-27) ([2b71345](https://bitbucket.org/atlassian/atlaskit/commits/2b71345))
|
|
675
|
+
|
|
676
|
+
## 4.0.1 (2017-11-15)
|
|
677
|
+
|
|
678
|
+
- bug fix; bumping internal dependencies to latest major versions ([288935a](https://bitbucket.org/atlassian/atlaskit/commits/288935a))
|
|
679
|
+
|
|
680
|
+
## 4.0.0 (2017-11-14)
|
|
681
|
+
|
|
682
|
+
- bug fix; implemented code review comments: using theme package to get layer value and removed ([b1a84f5](https://bitbucket.org/atlassian/atlaskit/commits/b1a84f5))
|
|
683
|
+
- breaking; added z-index to blanket ([4665973](https://bitbucket.org/atlassian/atlaskit/commits/4665973))
|
|
684
|
+
- breaking; aK-3851-fix added z-index to blanket, reverts b344810 (issues closed: ak-3851) ([4665973](https://bitbucket.org/atlassian/atlaskit/commits/4665973))
|
|
685
|
+
|
|
686
|
+
## 3.0.3 (2017-10-26)
|
|
687
|
+
|
|
688
|
+
- bug fix; fix to rebuild stories ([793b2a7](https://bitbucket.org/atlassian/atlaskit/commits/793b2a7))
|
|
689
|
+
|
|
690
|
+
## 3.0.2 (2017-10-22)
|
|
691
|
+
|
|
692
|
+
- bug fix; update dependencies for react-16 ([077d1ad](https://bitbucket.org/atlassian/atlaskit/commits/077d1ad))
|
|
693
|
+
|
|
694
|
+
## 3.0.1 (2017-10-13)
|
|
695
|
+
|
|
696
|
+
- bug fix; fix Blanket stories ([b9ac4ab](https://bitbucket.org/atlassian/atlaskit/commits/b9ac4ab))
|
|
697
|
+
- bug fix; other fix for other issue ([014f79c](https://bitbucket.org/atlassian/atlaskit/commits/014f79c))
|
|
698
|
+
- bug fix; fix render issue for Blanket storybook ([b277ff3](https://bitbucket.org/atlassian/atlaskit/commits/b277ff3))
|
|
699
|
+
|
|
700
|
+
## 3.0.0 (2017-08-31)
|
|
701
|
+
|
|
702
|
+
- breaking; removed z-index ([b344810](https://bitbucket.org/atlassian/atlaskit/commits/b344810))
|
|
703
|
+
- breaking; removed z-index for integration with @atlaskit/layer-manager ([b344810](https://bitbucket.org/atlassian/atlaskit/commits/b344810))
|
|
704
|
+
- feature; update to use @atlaskit/theme - now supports dark mode ([422c74e](https://bitbucket.org/atlassian/atlaskit/commits/422c74e))
|
|
705
|
+
|
|
706
|
+
## 2.4.3 (2017-08-09)
|
|
707
|
+
|
|
708
|
+
- bug fix; bump util-shared-styles dependency to latest to reduce app bundle sizes (issues closed: ak-3252) ([dbc406c](https://bitbucket.org/atlassian/atlaskit/commits/dbc406c))
|
|
709
|
+
|
|
710
|
+
## 2.4.2 (2017-07-27)
|
|
711
|
+
|
|
712
|
+
- fix; rename jsnext:main to jsnext:experimental:main temporarily ([c7508e0](https://bitbucket.org/atlassian/atlaskit/commits/c7508e0))
|
|
713
|
+
|
|
714
|
+
## 2.4.1 (2017-07-25)
|
|
715
|
+
|
|
716
|
+
- fix; use class transform in loose mode in babel to improve load performance in apps ([fde719a](https://bitbucket.org/atlassian/atlaskit/commits/fde719a))
|
|
717
|
+
|
|
718
|
+
## 2.1.0 (2017-07-17)
|
|
719
|
+
|
|
720
|
+
- fix; rerelease, failed prepublish scripts ([5fd82f8](https://bitbucket.org/atlassian/atlaskit/commits/5fd82f8))
|
|
721
|
+
|
|
722
|
+
## 2.1.0 (2017-07-17)
|
|
723
|
+
|
|
724
|
+
- feature; added ES module builds to dist and add jsnext:main to most ADG packages ([ea76507](https://bitbucket.org/atlassian/atlaskit/commits/ea76507))
|
|
725
|
+
|
|
726
|
+
## 2.0.5 (2017-07-13)
|
|
727
|
+
|
|
728
|
+
- fix; testing releasing more than 5 packages at a time ([e69b832](https://bitbucket.org/atlassian/atlaskit/commits/e69b832))
|
|
729
|
+
- fix; add prop-types as a dependency to avoid React 15.x warnings ([92598eb](https://bitbucket.org/atlassian/atlaskit/commits/92598eb))
|
|
730
|
+
|
|
731
|
+
## 2.0.4 (2017-04-27)
|
|
732
|
+
|
|
733
|
+
- fix; update legal copy to be more clear. Not all modules include ADG license. ([f3a945e](https://bitbucket.org/atlassian/atlaskit/commits/f3a945e))
|
|
734
|
+
|
|
735
|
+
## 2.0.3 (2017-04-26)
|
|
736
|
+
|
|
737
|
+
- fix; update legal copy and fix broken links for component README on npm. New contribution and ([0b3e454](https://bitbucket.org/atlassian/atlaskit/commits/0b3e454))
|
|
738
|
+
|
|
739
|
+
## 2.0.2 (2017-03-29)
|
|
740
|
+
|
|
741
|
+
- fix; repush stories for broken releases ([cde4000](https://bitbucket.org/atlassian/atlaskit/commits/cde4000))
|
|
742
|
+
|
|
743
|
+
## 2.0.1 (2017-03-28)
|
|
744
|
+
|
|
745
|
+
- fix; update blanket with new structure, use new readme story component ([2ecfd11](https://bitbucket.org/atlassian/atlaskit/commits/2ecfd11))
|
|
746
|
+
|
|
747
|
+
## 2.0.0 (2017-03-27)
|
|
748
|
+
|
|
749
|
+
- refactor the blanket component to use styled-components ([62dc8f2](https://bitbucket.org/atlassian/atlaskit/commits/62dc8f2))
|
|
750
|
+
- breaking; removed dependency "classnames", added peerDependency "styled-components"
|
|
751
|
+
|
|
752
|
+
## 1.2.4 (2017-03-23)
|
|
753
|
+
|
|
754
|
+
- fix; Empty commit to release the component ([49c08ee](https://bitbucket.org/atlassian/atlaskit/commits/49c08ee))
|
|
755
|
+
|
|
756
|
+
## 1.2.2 (2017-03-21)
|
|
757
|
+
|
|
758
|
+
- fix; maintainers for all the packages were added ([261d00a](https://bitbucket.org/atlassian/atlaskit/commits/261d00a))
|
|
759
|
+
|
|
760
|
+
## 1.2.0 (2017-02-27)
|
|
761
|
+
|
|
762
|
+
- feature; added `canClickThroughBlanket` prop to Blanket to make it possible to animate ([cacb5cb](https://bitbucket.org/atlassian/atlaskit/commits/cacb5cb))
|
|
763
|
+
|
|
764
|
+
## 1.1.0 (2017-02-22)
|
|
765
|
+
|
|
766
|
+
- feature; add canClickThrough to blanket ([c2e31aa](https://bitbucket.org/atlassian/atlaskit/commits/c2e31aa))
|
|
767
|
+
|
|
768
|
+
## 1.0.2 (2017-02-10)
|
|
769
|
+
|
|
770
|
+
- fix; Dummy commit to release components to registry ([5bac43b](https://bitbucket.org/atlassian/atlaskit/commits/5bac43b))
|
|
771
|
+
|
|
772
|
+
## 1.0.1 (2017-02-06)
|
|
773
|
+
|
|
774
|
+
- fix; bumps deps to use scoped packages ([9384221](https://bitbucket.org/atlassian/atlaskit/commits/9384221))
|