1 | # @kalamazoo/theme
|
2 |
|
3 | ## 9.4.0
|
4 |
|
5 | ### Minor Changes
|
6 |
|
7 | - [minor][429925f854](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/429925f854):
|
8 |
|
9 | Adds `skeleton` color.
|
10 | Import and use like:
|
11 |
|
12 | ```js
|
13 | import { skeleton } from '@kalamazoo/theme';
|
14 |
|
15 | skeleton(); // '#F4F5F7'
|
16 | ```
|
17 |
|
18 | ## 9.3.0
|
19 |
|
20 | ### Minor Changes
|
21 |
|
22 | - [minor][f9c291923c](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f9c291923c):
|
23 |
|
24 | Corrects the type exports for typography, colors, elevation and layers. If you were doing any dynamic code it may break you. Refer to the [upgrade guide](/packages/core/theme/docs/upgrade-guide) for help upgrading.
|
25 |
|
26 | ### Patch Changes
|
27 |
|
28 | - [patch][3c0f6feee5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3c0f6feee5):
|
29 |
|
30 | Fixes types property in package json to point to the correct location.
|
31 |
|
32 | ## 9.2.8
|
33 |
|
34 | ### Patch Changes
|
35 |
|
36 | - [patch][ea75c17b3a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ea75c17b3a):
|
37 |
|
38 | internal typescript fixes
|
39 |
|
40 | ## 9.2.7
|
41 |
|
42 | ### Patch Changes
|
43 |
|
44 | - [patch][c3dc8235f2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c3dc8235f2):
|
45 |
|
46 | Preventing circular dep within theme
|
47 |
|
48 | ## 9.2.6
|
49 |
|
50 | ### Patch Changes
|
51 |
|
52 | - [patch][d222c2b987](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d222c2b987):
|
53 |
|
54 | Theme has been converted to Typescript. Typescript consumers will now get static type safety. Flow types are no longer provided.
|
55 |
|
56 | ### Breaking
|
57 |
|
58 | ** getTokens props changes **
|
59 | 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:
|
60 |
|
61 | ```javascript
|
62 | <CustomTheme.Provider
|
63 | value={t => ({ ...t(), backgroundColor: '#333'})}
|
64 | >
|
65 | ```
|
66 |
|
67 | becomes:
|
68 |
|
69 | ```javascript
|
70 | <CustomTheme.Provider
|
71 | value={t => ({ ...t({}), backgroundColor: '#333'})}
|
72 | >
|
73 | ```
|
74 |
|
75 | ** Color palette changes **
|
76 | Color palettes have been moved into their own file.
|
77 | Users will need to update imports from this:
|
78 |
|
79 | ```javascript
|
80 | import { colors } from '@kalamazoo/theme';
|
81 |
|
82 | colors.colorPalette('8');
|
83 | ```
|
84 |
|
85 | to this:
|
86 |
|
87 | ```javascript
|
88 | import { colorPalette } from '@kalamazoo/theme';
|
89 |
|
90 | colorPalette.colorPalette('8');
|
91 | ```
|
92 |
|
93 | or for multi entry-point users:
|
94 |
|
95 | ```javascript
|
96 | import * as colors from '@kalamazoo/theme/colors';
|
97 |
|
98 | colors.colorPalette('8');
|
99 | ```
|
100 |
|
101 | to this:
|
102 |
|
103 | ```javascript
|
104 | import * as colorPalettes from '@kalamazoo/theme/color-palette';
|
105 |
|
106 | colorPalettes.colorPalette('8');
|
107 | ```
|
108 |
|
109 | ## 9.2.5
|
110 |
|
111 | ### Patch Changes
|
112 |
|
113 | - [patch][2119c45dfc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2119c45dfc):
|
114 |
|
115 | Add missing Theme/GlobalThemeTokens to constants.d.ts
|
116 |
|
117 | ## 9.2.4
|
118 |
|
119 | ### Patch Changes
|
120 |
|
121 | - [patch][35d2229b2a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/35d2229b2a):
|
122 |
|
123 | Adding missing license to packages and update to Copyright 2019 Atlassian Pty Ltd.
|
124 |
|
125 | ## 9.2.3
|
126 |
|
127 | ### Patch Changes
|
128 |
|
129 | - [patch][decd6fceea](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/decd6fceea):
|
130 |
|
131 | ED-5137 added heading anchor link
|
132 |
|
133 | Values for heading sizes(h100 - h900) are exported as part of typography. Places need to calculate heights for heading can use those values to calculate.
|
134 |
|
135 | ## 9.2.2
|
136 |
|
137 | ### Patch Changes
|
138 |
|
139 | - [patch][8d0f37c23e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/8d0f37c23e):
|
140 |
|
141 | @kalamazoo/avatar has been converted to Typescript. Typescript consumers will now get static type safety. Flow types are no longer provided. No API or behavioural changes.
|
142 |
|
143 | ## 9.2.1
|
144 |
|
145 | ### Patch Changes
|
146 |
|
147 | - [patch][94620ae46a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/94620ae46a):
|
148 |
|
149 | Updating the temporary ts definition file for Theme.
|
150 |
|
151 | ## 9.2.0
|
152 |
|
153 | ### Minor Changes
|
154 |
|
155 | - [minor][c6efb2f5b6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c6efb2f5b6):
|
156 |
|
157 | Prefix the legacy lifecycle methods with UNSAFE\_\* to avoid warning in React 16.9+
|
158 |
|
159 | More information about the deprecation of lifecycles methods can be found here:
|
160 | https://reactjs.org/blog/2018/03/29/react-v-16-3.html#component-lifecycle-changes
|
161 |
|
162 | ## 9.1.6
|
163 |
|
164 | ### Patch Changes
|
165 |
|
166 | - [patch][097b696613](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/097b696613):
|
167 |
|
168 | Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving non-relative imports as relative imports
|
169 |
|
170 | ## 9.1.5
|
171 |
|
172 | ### Patch Changes
|
173 |
|
174 | - [patch][ecca4d1dbb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ecca4d1dbb):
|
175 |
|
176 | Upgraded Typescript to 3.3.x
|
177 |
|
178 | ## 9.1.4
|
179 |
|
180 | ### Patch Changes
|
181 |
|
182 | - [patch][9eceb8379f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9eceb8379f):
|
183 |
|
184 | Moves typescript declaration files to the root of theme
|
185 |
|
186 | ## 9.1.3
|
187 |
|
188 | ### Patch Changes
|
189 |
|
190 | - [patch][de35ce8c67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/de35ce8c67):
|
191 |
|
192 | Updates component maintainers
|
193 |
|
194 | ## 9.1.2
|
195 |
|
196 | ### Patch Changes
|
197 |
|
198 | - [patch][c6ad66d326](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c6ad66d326):
|
199 |
|
200 | The types property in package.json now points to the correct file"
|
201 |
|
202 | ## 9.1.1
|
203 |
|
204 | ### Patch Changes
|
205 |
|
206 | - [patch][4615439434](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4615439434):
|
207 |
|
208 | index.ts will now be ignored when publishing to npm
|
209 |
|
210 | ## 9.1.0
|
211 |
|
212 | - [minor][70862830d6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/70862830d6):
|
213 |
|
214 | - Checkbox has been converted to Typescript. Typescript consumers will now get static type safety. Flow types are no longer provided. No API or behavioural changes.
|
215 |
|
216 | ## 9.0.3
|
217 |
|
218 | - Updated dependencies [ed41cac6ac](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ed41cac6ac):
|
219 | - @kalamazoo/lozenge@9.0.0
|
220 |
|
221 | ## 9.0.2
|
222 |
|
223 | - Updated dependencies [6dd86f5b07](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6dd86f5b07):
|
224 | - @kalamazoo/section-message@4.0.0
|
225 |
|
226 | ## 9.0.1
|
227 |
|
228 | - [patch][d5f0e7d767](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d5f0e7d767):
|
229 |
|
230 | - Adds missing type def to typings for the /component.ts entrypoint
|
231 |
|
232 | ## 9.0.0
|
233 |
|
234 | - [major][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
|
235 |
|
236 | - 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.
|
237 |
|
238 | ## 8.1.9
|
239 |
|
240 | - [patch][e0e3fabf8e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e0e3fabf8e):
|
241 |
|
242 | - Change button to use theme's multiple entry points. This should reduce the bundle size of button
|
243 |
|
244 | ## 8.1.8
|
245 |
|
246 | - [patch][453838d3c5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/453838d3c5):
|
247 |
|
248 | - Removes an import which referes to the old entry point of this component. Bundle size should now be slightly smaller
|
249 |
|
250 | ## 8.1.7
|
251 |
|
252 | - [patch][9c0b4744be](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9c0b4744be):
|
253 |
|
254 | - Crucial bugfix: Fixes problem where default theme was undefined in production builds. This caused styles to not be applied to components.
|
255 |
|
256 | ## 8.1.6
|
257 |
|
258 | - Updated dependencies [1e826b2966](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e826b2966):
|
259 | - @kalamazoo/docs@7.0.2
|
260 | - @kalamazoo/section-message@2.0.2
|
261 | - @kalamazoo/button@12.0.0
|
262 |
|
263 | ## 8.1.5
|
264 |
|
265 | - [patch][9ac668e13d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9ac668e13d):
|
266 |
|
267 | - Release math js as a module
|
268 |
|
269 | ## 8.1.4
|
270 |
|
271 | - [patch][4368278bb4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4368278bb4):
|
272 |
|
273 | - Added components entry point allowing consumers to pull in just what they need out of theme (smaller bundle sizes!)
|
274 |
|
275 | ```
|
276 | import { N500, N0 } from '@kalamazoo/theme/colors';
|
277 | import { focusRing } from '@kalamazoo/theme/constants';
|
278 | import { withTheme } from '@kalamazoo/theme/components';
|
279 | ```
|
280 |
|
281 | ## 8.1.3
|
282 |
|
283 | - [patch][b4732a178b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b4732a178b):
|
284 |
|
285 | - Fixing incorrect z-index for navigation-next and inline dialog
|
286 |
|
287 | ## 8.1.2
|
288 |
|
289 | - [patch][0f17bb7c20](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0f17bb7c20):
|
290 |
|
291 | - Theme TypeScript annotations are now exported as a module declaration.
|
292 |
|
293 | ## 8.1.1
|
294 |
|
295 | - [patch][7fe933beaa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7fe933beaa):
|
296 |
|
297 | - Adds missing typescript annotations
|
298 |
|
299 | ## 8.1.0
|
300 |
|
301 | - [minor][a561af5fc6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a561af5fc6):
|
302 |
|
303 | - Theme now exports top-level type definition for TS users
|
304 |
|
305 | ## 8.0.2
|
306 |
|
307 | - [patch][5150860405](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5150860405):
|
308 |
|
309 | - Updates Theme.Context prop type definiton
|
310 |
|
311 | ## 8.0.1
|
312 |
|
313 | - Updated dependencies [9d5cc39394](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d5cc39394):
|
314 | - @kalamazoo/docs@7.0.1
|
315 | - @kalamazoo/section-message@2.0.1
|
316 | - @kalamazoo/button@11.0.0
|
317 |
|
318 | ## 8.0.0
|
319 |
|
320 | - [major][76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
|
321 |
|
322 | - Drop ES5 from all the flow modules
|
323 |
|
324 | ### Dropping CJS support in all @atlaskit packages
|
325 |
|
326 | 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
|
327 | `export` declarations.
|
328 |
|
329 | The major reason for doing this is to allow us to support multiple entry points in packages, e.g:
|
330 |
|
331 | ```js
|
332 | import colors from `@kalamazoo/theme/colors`;
|
333 | ```
|
334 |
|
335 | Previously this was sort of possible for consumers by doing something like:
|
336 |
|
337 | ```js
|
338 | import colors from `@kalamazoo/theme/dist/esm/colors`;
|
339 | ```
|
340 |
|
341 | 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.
|
342 |
|
343 | 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.
|
344 |
|
345 | ES Modules are widely supported by all modern bundlers and can be worked around in node environments.
|
346 |
|
347 | 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.
|
348 |
|
349 | 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.
|
350 |
|
351 | ## 7.0.5
|
352 |
|
353 | - [patch][b46504d2e4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b46504d2e4):
|
354 |
|
355 | - Fixed example docs
|
356 |
|
357 | ## 7.0.4
|
358 |
|
359 | - [patch][1a98f74](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1a98f74):
|
360 |
|
361 | - Added the missing unit to box-shadow for focus ring styles
|
362 |
|
363 | ## 7.0.3
|
364 |
|
365 | - [patch][899fac7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/899fac7):
|
366 |
|
367 | - added the focus ring and no focus ring styles
|
368 |
|
369 | ## 7.0.2
|
370 |
|
371 | - [patch][ca16fa9](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ca16fa9):
|
372 |
|
373 | - Add SSR support to media components
|
374 |
|
375 | ## 7.0.1
|
376 |
|
377 | - Updated dependencies [58b84fa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/58b84fa):
|
378 | - @kalamazoo/button@10.1.1
|
379 | - @kalamazoo/lozenge@6.2.4
|
380 | - @kalamazoo/section-message@1.0.14
|
381 | - @kalamazoo/docs@6.0.0
|
382 |
|
383 | ## 7.0.0
|
384 |
|
385 | - [major][d13242d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d13242d):
|
386 |
|
387 | - Change API to experimental theming API to namespace component themes into separate contexts and make theming simpler. Update all dependant components.
|
388 |
|
389 | ## 6.2.1
|
390 |
|
391 | - Updated dependencies [6998f11](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6998f11):
|
392 | - @kalamazoo/docs@5.2.1
|
393 | - @kalamazoo/section-message@1.0.11
|
394 | - @kalamazoo/button@10.0.0
|
395 |
|
396 | ## 6.2.0
|
397 |
|
398 | - [minor] Add smallFontSize as an export to theme [3469f64](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3469f64)
|
399 |
|
400 | ## 6.1.1
|
401 |
|
402 | - [patch] Adds missing implicit @babel/runtime dependency [b71751b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b71751b)
|
403 |
|
404 | ## 6.1.0
|
405 |
|
406 | - [minor] Adds new theming API to Avatar and AvatarItem components [79dd93f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/79dd93f)
|
407 |
|
408 | ## 6.0.4
|
409 |
|
410 | - [patch] Added assistive styles from util-shared-styles [dc563c1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dc563c1)
|
411 |
|
412 | ## 6.0.3
|
413 |
|
414 | - [patch] fixed font-size and font-weight of h100 in theme to 11px and 700 respectively [9742864](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9742864)
|
415 |
|
416 | ## 6.0.2
|
417 |
|
418 | - [patch] Adds sideEffects: false to allow proper tree shaking [b5d6d04](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b5d6d04)
|
419 |
|
420 | ## 6.0.0
|
421 |
|
422 | - [major] Update badge to the new theming API. Rework experimental theming API. [df22ad8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/df22ad8)
|
423 | - [none] Updated dependencies [df22ad8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/df22ad8)
|
424 | - @kalamazoo/lozenge@6.1.5
|
425 | - @kalamazoo/button@9.0.6
|
426 | - @kalamazoo/docs@5.0.6
|
427 |
|
428 | ## 5.1.3
|
429 |
|
430 | - [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)
|
431 | - [none] Updated dependencies [a4bd557](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a4bd557)
|
432 | - @kalamazoo/button@9.0.5
|
433 | - @kalamazoo/lozenge@6.1.4
|
434 |
|
435 | ## 5.1.2
|
436 |
|
437 | - [patch] Updated dependencies [acd86a1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/acd86a1)
|
438 | - @kalamazoo/button@9.0.4
|
439 | - @kalamazoo/lozenge@6.1.3
|
440 | - @kalamazoo/docs@5.0.2
|
441 |
|
442 | ## 5.1.1
|
443 |
|
444 | - [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)
|
445 | - [none] Updated dependencies [7e331b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7e331b5)
|
446 | - @kalamazoo/button@9.0.3
|
447 | - @kalamazoo/lozenge@6.1.2
|
448 |
|
449 | ## 5.1.0
|
450 |
|
451 | - [minor] Add new components (Consumer, Provider, Reset and Theme) and deprecate old APIs. New components are marked as experimenta so they may change. Deprecated components can still be used until experimental APIs are finalised. [cd799a5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cd799a5)
|
452 | - [none] Updated dependencies [cd799a5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cd799a5)
|
453 |
|
454 | ## 5.0.0
|
455 |
|
456 | - [major] Updates to React ^16.4.0 [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
|
457 | - [major] Updated dependencies [563a7eb](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/563a7eb)
|
458 | - @kalamazoo/button@9.0.0
|
459 | - @kalamazoo/docs@5.0.0
|
460 | - [major] Updated dependencies [7edb866](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7edb866)
|
461 | - @kalamazoo/button@9.0.0
|
462 | - @kalamazoo/docs@5.0.0
|
463 |
|
464 | ## 4.1.0
|
465 |
|
466 | - [minor] Added elevations to the Theme package and updated visual styles for the field-range component. [dbd8de7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dbd8de7)
|
467 | - [none] Updated dependencies [dbd8de7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dbd8de7)
|
468 |
|
469 | ## 4.0.5
|
470 |
|
471 | - [patch] Align ADG, Website and AK [dd295bf](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dd295bf)
|
472 | - [none] Updated dependencies [dd295bf](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/dd295bf)
|
473 |
|
474 | ## 4.0.4
|
475 |
|
476 | - [patch] Clean Changelogs - remove duplicates and empty entries [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
|
477 | - [none] Updated dependencies [e7756cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e7756cd)
|
478 | - @kalamazoo/button@8.1.2
|
479 |
|
480 | ## 4.0.3
|
481 |
|
482 | - [patch] Update changelogs to remove duplicate [cc58e17](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc58e17)
|
483 | - [none] Updated dependencies [cc58e17](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc58e17)
|
484 | - @kalamazoo/button@8.1.1
|
485 | - @kalamazoo/docs@4.1.1
|
486 |
|
487 | ## 4.0.2
|
488 |
|
489 | - [none] Updated dependencies [9d20f54](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d20f54)
|
490 | - @kalamazoo/docs@4.1.0
|
491 | - @kalamazoo/button@8.1.0
|
492 |
|
493 | ## 4.0.1
|
494 |
|
495 | - [patch] Update readme's [223cd67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/223cd67)
|
496 | - [patch] Updated dependencies [223cd67](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/223cd67)
|
497 | - @kalamazoo/button@8.0.1
|
498 | - @kalamazoo/docs@4.0.1
|
499 |
|
500 | ## 4.0.0
|
501 |
|
502 | - [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)
|
503 | - [patch] Updated dependencies [1e80619](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e80619)
|
504 | - @kalamazoo/button@8.0.0
|
505 | - @kalamazoo/docs@4.0.0
|
506 |
|
507 | ## 3.2.2
|
508 |
|
509 | - [patch] Updated dependencies [d662caa](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d662caa)
|
510 | - @kalamazoo/button@7.2.5
|
511 | - @kalamazoo/docs@3.0.4
|
512 |
|
513 | ## 3.2.1
|
514 |
|
515 | - [patch] Add Consolas to our font family [62bacf6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/62bacf6)
|
516 | - [none] Updated dependencies [62bacf6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/62bacf6)
|
517 |
|
518 | ## 3.2.0
|
519 |
|
520 | - [minor] Add color palette to theme - Jira Porfolio [72ab054](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/72ab054)
|
521 |
|
522 | ## 3.1.1
|
523 |
|
524 | - [patch] releasing all compo that depends on theme [86a82d2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/86a82d2)
|
525 | - [patch] Re-release to fix changes merged with @kalamazoo/form [baa3c20](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/baa3c20)
|
526 |
|
527 | ## 3.1.0
|
528 |
|
529 | - [minor] Added ability to specify an object as the badge appearance. Added an Appearance export to theme so that we can use strings and objects for appearance theming." [6e89615](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6e89615)
|
530 |
|
531 | ## 3.0.0
|
532 |
|
533 | - [major] Bump to React 16.3. [4251858](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4251858)
|
534 |
|
535 | ## 2.4.1
|
536 |
|
537 | - [patch] Re-releasing due to potentially broken babel release [9ed0bba](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9ed0bba)
|
538 |
|
539 | ## 2.4.0
|
540 |
|
541 | - [minor] Update styled-components dependency to support versions 1.4.6 - 3 [ceccf30](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ceccf30)
|
542 |
|
543 | ## 2.3.4
|
544 |
|
545 | - [patch] updated the repository url to https://bitbucket.org/atlassian/atlaskit-mk-2 [1e57e5a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1e57e5a)
|
546 |
|
547 | ## 2.3.3
|
548 |
|
549 | - [patch] Packages Flow types for elements components [3111e74](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3111e74)
|
550 |
|
551 | ## 2.3.2
|
552 |
|
553 | - [patch] added a new layer tooltip [2215bc7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2215bc7)
|
554 |
|
555 | ## 2.3.1
|
556 |
|
557 | - [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)
|
558 |
|
559 | ## 2.3.0
|
560 |
|
561 | - [minor] Add React 16 support. [12ea6e4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/12ea6e4)
|
562 |
|
563 | ## 2.2.4
|
564 |
|
565 | - [patch] moved theme to new atlaskit repo [a25b940](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a25b940)
|
566 | - [patch] moved theme to new atlaskit repo [a25b940](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a25b940)
|
567 |
|
568 | ## 2.2.3 (2017-10-27)
|
569 |
|
570 | - bug fix; triggering storybooks ([87e7247](https://bitbucket.org/atlassian/atlaskit/commits/87e7247))
|
571 | - bug fix; removed unused dependency on util-shared-styles from the Theme component ([253d8fc](https://bitbucket.org/atlassian/atlaskit/commits/253d8fc))
|
572 |
|
573 | ## 2.2.2 (2017-10-26)
|
574 |
|
575 | - bug fix; fix to rebuild stories ([793b2a7](https://bitbucket.org/atlassian/atlaskit/commits/793b2a7))
|
576 |
|
577 | ## 2.2.1 (2017-10-22)
|
578 |
|
579 | - bug fix; update styled components dep and react peerDep ([5539ada](https://bitbucket.org/atlassian/atlaskit/commits/5539ada))
|
580 |
|
581 | ## 2.2.0 (2017-09-27)
|
582 |
|
583 | - feature; export "layers" from theme ([15aebe6](https://bitbucket.org/atlassian/atlaskit/commits/15aebe6))
|
584 |
|
585 | ## 2.1.0 (2017-09-13)
|
586 |
|
587 | - feature; [@atlaskit](https://github.com/atlaskit)/theme now has a named getTheme() function export ([b727679](https://bitbucket.org/atlassian/atlaskit/commits/b727679))
|
588 |
|
589 | ## 2.0.1 (2017-08-11)
|
590 |
|
591 | - bug fix; Add placeholder color to theme ([ba023fb](https://bitbucket.org/atlassian/atlaskit/commits/ba023fb))
|
592 |
|
593 | ## 2.0.0
|
594 |
|
595 | - Initial Release
|
596 |
|
\ | No newline at end of file |