Empty state
An empty state appears when there is no data to display and describes what the user can do next.12.2.1
Patch Changes
- Updated dependencies
12.2.0
Minor Changes
bd2c5b0112185, (opens new window) - Remove stale API report artifacts from published Platform packages.
Patch Changes
- Updated dependencies
12.1.1
Patch Changes
85a3e1ec4b6ff, (opens new window) - Experimental React 19 peer dependency support. This patch widens the peer range; CI coverage is partial.- Updated dependencies
12.1.0
Minor Changes
-
d82e6f76528ab, (opens new window) - Add direct subpath package exports as part of the linking-platform, search, media, and design-system barrel-removal (de-barrel) migration.These packages now expose their individual modules via explicit
package.jsonexportssubpaths so that consumers can import directly from the leaf module (e.g.@atlaskit/pkg/thing) instead of the package barrel/index. This adds new public entry points without changing or removing any existing exports, so it is a backwards-compatible additive change.No runtime behaviour changes; this is an API-surface (entry-point) addition to support tree-shaking and to unblock removal of the barrel index files.
Patch Changes
- Updated dependencies
12.0.0
Major Changes
-
48e7d03469b80, (opens new window) - Apply Volt entry-point and barrel-removal standards across these design-system packages. Publicexportsnow resolve directly to./src/*implementations instead of intermediate./src/entry-points/*re-exports, root barrels and remaining entry-point shims are marked deprecated in favour of per-export subpaths, and a few new subpaths are added (@atlaskit/badge/badge-new,@atlaskit/tile/tile-skeleton,@atlaskit/popper/main,@atlaskit/section-message/message,@atlaskit/section-message/message-action).Why this is breaking
Subpaths and the package root can now resolve to the same module instance. Consumers that deep-imported
entry-points/*, orjest.mock()'d a specific subpath may need updates.@atlaskit/image's root export now points at./src/ui/image/index.tsx.@atlaskit/checkbox/checkboxnow exports a namedCheckboxfrom the implementation module (default export retained for backwards compatibility).Migration
Prefer published subpaths over the package root:
import { Checkbox } from '@atlaskit/checkbox/checkbox'; import TextField from '@atlaskit/textfield/text-field'; import Popup from '@atlaskit/popup/popup'; import SectionMessage from '@atlaskit/section-message/message'; import EmptyState from '@atlaskit/empty-state/empty-state';If you imported through internal entry-point modules, switch to the public subpath:
-import Checkbox from '@atlaskit/checkbox/entry-points/checkbox'; +import { Checkbox } from '@atlaskit/checkbox/checkbox';
Patch Changes
- Updated dependencies
11.1.6
Patch Changes
- Updated dependencies
11.1.5
Patch Changes
- Updated dependencies
11.1.4
Patch Changes
- Updated dependencies
11.1.3
Patch Changes
- Updated dependencies
11.1.2
Patch Changes
- Updated dependencies
11.1.1
Patch Changes
820f00bd7db09, (opens new window) - Enable platform-dst-motion-uplift-button by default in constellation examples so button motion is previewed in component demos. Docs/examples-only; no change to shipped component behaviour.
11.1.0
Minor Changes
-
cd097a2111788, (opens new window) - Republish packages depending on@atlaskit/react-compiler-gatingso their published dependency reference is updated to the renamed@atlaskit/react-compiler-gatingscope.The earlier rename of
@atlassian/react-compiler-gatingto@atlaskit/react-compiler-gatingonly bumped the renamed package itself, so dependent packages were never republished and their published versions still referenced the old@atlassian/react-compiler-gatingname, which is not available in the public npm registry. This minor bump republishes all affected packages with the corrected dependency.
Patch Changes
- Updated dependencies
11.0.1
Patch Changes
ee28cf33718b0, (opens new window) - Add @atlaskit/react-compiler-gating as a runtime dependency to enable React Compiler platform gating.- Updated dependencies
11.0.0
Major Changes
-
f2dc9097319f0, (opens new window) - ### Dropped support for legacy Typescript 4 types. Typescript 5 is now the new minimum.Removes the
typesVersionsproperty anddist/types-ts4.5directory from the dist.Types are now exclusively via the
"types": "dist/types/index.d.ts"property.- "typesVersions": { - ">=4.5 <4.9": { - "*": [ - "dist/types-ts4.5/*", - "dist/types-ts4.5/index.d.ts" - ] - } - },
Patch Changes
- Updated dependencies
10.2.0
Minor Changes
7d6e9b5e6e7c6, (opens new window) - Autofix: add explicit package exports (barrel removal)
10.1.17
Patch Changes
- Updated dependencies
10.1.16
Patch Changes
- Updated dependencies
10.1.15
Patch Changes
02483200273ec, (opens new window) - Enrol all Design System UI packages into the React Compiler with platform gating via isReactCompilerActivePlatform.- Updated dependencies
10.1.14
Patch Changes
22bf79dbdcdca, (opens new window) - Internal changes to remove unnecessary token fallbacks and imports from@atlaskit/theme- Updated dependencies
10.1.13
Patch Changes
3752ebde7865b, (opens new window) - Removes redundant internal barrel file in favour of directly importing modules
10.1.12
Patch Changes
- Updated dependencies
10.1.11
Patch Changes
- Updated dependencies
10.1.10
Patch Changes
- Updated dependencies
10.1.9
Patch Changes
- Updated dependencies
10.1.8
Patch Changes
- Updated dependencies
10.1.7
Patch Changes
- Updated dependencies
10.1.6
Patch Changes
- Updated dependencies
10.1.5
Patch Changes
- Updated dependencies
10.1.4
Patch Changes
- Updated dependencies
10.1.3
Patch Changes
- Updated dependencies
10.1.2
Patch Changes
- Updated dependencies
10.1.1
Patch Changes
- Updated dependencies
10.1.0
Minor Changes
- #173373, (opens new window)
8061d8294d7ad, (opens new window) - Added option to set headingSize prop on the header in the EmptyState component. Options are medium (default) and xsmall, intended for smaller spaces such as popups.
10.0.2
Patch Changes
- Updated dependencies
10.0.1
Patch Changes
- #155802, (opens new window)
08019848e3eab, (opens new window) - Refreshed "issue" terminology. - Updated dependencies
10.0.0
Major Changes
- #148636, (opens new window)
47f6324868677, (opens new window) - Removed deprecatedsizeprop. Use thewidthprop instead. Removed exportedSizestype.
9.0.5
Patch Changes
- Updated dependencies
9.0.4
Patch Changes
- #134760, (opens new window)
1621a41fa7055, (opens new window) - Do not render button group when there is only one action
9.0.3
Patch Changes
- Updated dependencies
9.0.2
Patch Changes
- #129972, (opens new window)
b2d69a39e6687, (opens new window) - Update@compiled/reactdependency for improved type checking support. - Updated dependencies
9.0.1
Patch Changes
- Updated dependencies
9.0.0
Major Changes
-
#117363, (opens new window)
10a0f7f6c2027, (opens new window) - This package'speerDependencieshave been adjusted forreactand/orreact-domto reflect the status of only supporting React 18 going forward. No explicit breaking change to React support has been made in this release, but this is to signify going forward, breaking changes for React 16 or React 17 may come via non-major semver releases.Please refer this community post for more details: https://community.developer.atlassian.com/t/rfc-78-dropping-support-for-react-16-and-rendering-in-a-react-18-concurrent-root-in-jira-and-confluence/87026, (opens new window)
Patch Changes
- Updated dependencies
8.3.0
Minor Changes
- #116138, (opens new window)
b50c5d5d65ae2, (opens new window) - Bump to the latest version of @compiled/react
Patch Changes
- Updated dependencies
8.2.2
Patch Changes
- Updated dependencies
8.2.1
Patch Changes
- Updated dependencies
8.2.0
Minor Changes
- #109060, (opens new window)
4660ec858a305, (opens new window) - UpdateReactfrom v16 to v18
Patch Changes
- Updated dependencies
8.1.4
Patch Changes
- Updated dependencies
8.1.3
Patch Changes
- #107076, (opens new window)
555ac7178db33, (opens new window) - Update dependencies and remove unused internal files.
8.1.2
Patch Changes
- #103999, (opens new window)
9f62ecec4d422, (opens new window) - Update dependencies.
8.1.1
Patch Changes
- Updated dependencies
8.1.0
Minor Changes
- #181325, (opens new window)
c9ff1f8d5e9ca, (opens new window) - Migrated from primitives components to primitives/compiled components
8.0.1
Patch Changes
- Updated dependencies
8.0.0
Major Changes
-
#162676, (opens new window)
6dd54dec02a69, (opens new window) - Migrated from@emotion/reactto@compiled/reactin order to improve performance, align with the rest of the Atlaskit techstack, and support React 18 Streaming SSR.Please note, in order to use this version of
@atlaskit/empty-state, you will need to ensure that your bundler is configured to handle.cssimports correctly. Most bundlers come with built-in support for.cssimports, so you may not need to do anything. If you are using a different bundler, please refer to the documentation for that bundler to understand how to handle.cssimports.For more information on the migration, please refer to RFC-73 Migrating our components to Compiled CSS-in-JS, (opens new window).
7.12.3
Patch Changes
- #165531, (opens new window)
57f451bda8919, (opens new window) - Adds side-effect config to support Compiled css extraction in third-party apps
7.12.2
Patch Changes
- Updated dependencies
7.12.1
Patch Changes
- Updated dependencies
7.12.0
Minor Changes
- #154929, (opens new window)
745cc262139e7, (opens new window) - [ux] Removed feature flagplatform.design-system-team.empty-state-typography-updates_gndrjresultingin fully tokenised typography styles.
7.11.6
Patch Changes
- Updated dependencies
7.11.5
Patch Changes
- #152429, (opens new window)
5d414827c3394, (opens new window) - Removes usages of deprecated CustomThemeButton in favor of the new Button
7.11.4
Patch Changes
- Updated dependencies
7.11.3
Patch Changes
- #135500, (opens new window)
1d43605b39f55, (opens new window) - We are testing a visual change behind a feature flag inceasing specificity of description typography styles. If this change is successful it will be available in a later release.
7.11.2
Patch Changes
- Updated dependencies
7.11.1
Patch Changes
- Updated dependencies
7.11.0
Minor Changes
-
#127511, (opens new window)
db30e29344013, (opens new window) - Widening range ofreactandreact-dompeer dependencies from^16.8.0 || ^17.0.0 || ~18.2.0to the wider range of ``^16.8.0 || ^17.0.0 || ^18.0.0` (where applicable).This change has been done to enable usage of
react@18.3as well as to have a consistent peer dependency range forreactandreact-domfor/platformpackages.
Patch Changes
- Updated dependencies
7.10.1
Patch Changes
- Updated dependencies
7.10.0
Minor Changes
- #126756, (opens new window)
1bb99c2a69e9c, (opens new window) - We are testing a visual change behind a feature flag. The letter spacing of empty state title changes. If this change is successful it will be available in a later release.
7.9.2
Patch Changes
- Updated dependencies
7.9.1
Patch Changes
- Updated dependencies
7.9.0
Minor Changes
- #111878, (opens new window)
223959ef57c80, (opens new window) - Explicitly set jsxRuntime to classic via pragma comments in order to avoid issues where jsxRuntime is implicitly set to automatic.
Patch Changes
- Updated dependencies
7.8.0
Minor Changes
- #91189, (opens new window)
cd9ca014951a, (opens new window) - Add support for React 18 in non-strict mode.
7.7.2
Patch Changes
- #83116, (opens new window)
8d4e99057fe0, (opens new window) - Upgrade Typescript from4.9.5to5.4.2
7.7.1
Patch Changes
- #72130, (opens new window)
b037e5451037, (opens new window) - Update new button text color fallback for default theme (non-token) to match that of old button current text color - Updated dependencies
7.7.0
Minor Changes
- #70568, (opens new window)
f1279b936714, (opens new window) - [ux] Button group inside empty-state now have default label and possibility to accept a dynamic one.
7.6.5
Patch Changes
- Updated dependencies
7.6.4
Patch Changes
- Updated dependencies
7.6.3
Patch Changes
- #38731, (opens new window)
9af31f3c1ae, (opens new window) - Delete version.json
7.6.2
Patch Changes
- #38361, (opens new window)
4f17f1d839e, (opens new window) - Added this package into push model consumption
7.6.1
Patch Changes
- #36754, (opens new window)
4ae083a7e66, (opens new window) - Use@af/accessibility-testingfor default jest-axe config and jest-axe import in accessibility testing.
7.6.0
Minor Changes
- #35091, (opens new window)
56d11ec914b, (opens new window) - Add a new propheadingLevelto set the heading level in the header element.
7.5.2
Patch Changes
- #33793, (opens new window)
9d00501a414, (opens new window) - Ensure legacy types are published for TS 4.5-4.8
7.5.1
Patch Changes
- #33649, (opens new window)
41fae2c6f68, (opens new window) - Upgrade Typescript from4.5.5to4.9.5
7.5.0
Minor Changes
- #33258, (opens new window)
56507598609, (opens new window) - Skip minor dependency bump
Patch Changes
- Updated dependencies
7.4.11
Patch Changes
- #31206, (opens new window)
261420360ec, (opens new window) - Upgrades component types to support React 18. - Updated dependencies
7.4.10
Patch Changes
- #31338, (opens new window)
74c1b81a476, (opens new window) - Replaces use ofgridSizewith space tokens. There is no expected visual change.
7.4.9
Patch Changes
- #31237, (opens new window)
24f81932945, (opens new window) - Migrates unit tests from enzyme to RTL. Adds testId to Spinner component.
7.4.8
Patch Changes
- Updated dependencies
7.4.7
Patch Changes
- #29390, (opens new window)
18aeca8c199, (opens new window) - Internal change to update token references. There is no expected behaviour or visual change.
7.4.6
Patch Changes
- Updated dependencies
7.4.5
Patch Changes
- Updated dependencies
7.4.4
Patch Changes
- Updated dependencies
7.4.3
Patch Changes
- #26488, (opens new window)
bc989043572, (opens new window) - Internal changes to apply spacing tokens. This should be a no-op change.
7.4.2
Patch Changes
- #26408, (opens new window)
9de88fa1e1e, (opens new window) - Internal changes to include spacing tokens in component implementations.
7.4.1
Patch Changes
- #24874, (opens new window)
8cc2f888c83, (opens new window) - Upgrade Typescript from4.3.5to4.5.5
7.4.0
Minor Changes
- #24004, (opens new window)
645ec6a64a8, (opens new window) - Updates@emotion/coreto@emotion/react; v10 to v11. There is no expected behavior change.
Patch Changes
- Updated dependencies
7.3.12
Patch Changes
- #24492, (opens new window)
8d4228767b0, (opens new window) - Upgrade Typescript from4.2.4to4.3.5.
7.3.11
Patch Changes
- Updated dependencies
7.3.10
Patch Changes
- #20650, (opens new window)
cb2392f6d33, (opens new window) - Upgrade to TypeScript 4.2.4 - Updated dependencies
7.3.9
Patch Changes
- Updated dependencies
7.3.8
Patch Changes
- Updated dependencies
7.3.7
Patch Changes
- Updated dependencies
7.3.6
Patch Changes
- #16752, (opens new window)
58884c2f6c1, (opens new window) - Internal code change turning on a new linting rule.
7.3.5
Patch Changes
19d72473dfb, (opens new window) - Updates usage of deprecated token names so they're aligned with the latest naming conventions. No UI or visual changes- Updated dependencies
7.3.4
Patch Changes
- Updated dependencies
7.3.3
Patch Changes
- #15998, (opens new window)
f460cc7c411, (opens new window) - Builds for this package now pass through a tokens babel plugin, removing runtime invocations of the tokens() function and improving bundle size. - Updated dependencies
7.3.2
Patch Changes
- #16188, (opens new window)
0397fedf294, (opens new window) - Added documentation homepage URL to package.json
7.3.1
Patch Changes
- Updated dependencies
7.3.0
Minor Changes
-
#14319, (opens new window)
b5c96b26bf3, (opens new window) - Instrumented empty-state with the new theming package,@atlaskit/tokens.New 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.
Patch Changes
- Updated dependencies
7.2.1
Patch Changes
- #14184, (opens new window)
7465c0f0e1d, (opens new window) - Fix to account for the size/width fallback behaviour. Previously if a user provided a value for the thewidthproperty it would always be ignored, this is no longer the case.
7.2.0
Minor Changes
-
#13864, (opens new window)
20ea31c9fdf, (opens new window) - Deprecation Warning Thesizeprop andSizestype have been flagged as deprecated. Both are better described as a width and so internally have been renamed. Thesizeprop will continue to work in the shortrun before it's formally removed in the component's next major release.Housekeeping:
- Component now uses the new entrypoint format.
- Prop descriptions have been updated to better describe component behaviors.
- Small bug fix related to additional props being spread in to some of the component's internals.
Patch Changes
- Updated dependencies
7.1.8
Patch Changes
- #13302, (opens new window)
331c29990c9, (opens new window) - Removesstyled-componentsas a peer dependency in favour of a direct dependency onemotion. - Updated dependencies
7.1.7
Patch Changes
- Updated dependencies
7.1.6
Patch Changes
- #12880, (opens new window)
378d1cef00f, (opens new window) - Bump@atlaskit/themeto version^11.3.0.
7.1.5
Patch Changes
- #5857, (opens new window)
d3265f19be, (opens new window) - Transpile packages using babel rather than tsc
7.1.4
Patch Changes
- #5497, (opens new window)
5f58283e1f, (opens new window) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option. This requires version 3.8 of Typescript, read more about how we handle Typescript versions here: https://atlaskit.atlassian.com/get-started, (opens new window) Also addtypescripttodevDependenciesto denote version that the package was built with.
7.1.3
Patch Changes
- Updated dependencies
7.1.2
Patch Changes
- Updated dependencies
7.1.1
Patch Changes
-
#3885, (opens new window)
6c525a8229, (opens new window) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0Since tslib is a dependency for all our packages we recommend that products also follow this tslib upgrade to prevent duplicates of tslib being bundled.
7.1.0
Minor Changes
- #3428, (opens new window)
22aa614abb, (opens new window) - Introduce optional renderImage prop which will be displayed if no imageUrl is provided
Patch Changes
3414523d6f, (opens new window) - Rearange buttons order to align with design guidelinesdb053b24d8, (opens new window) - Update all the theme imports to be tree-shakable
7.0.0
Major Changes
- #3335, (opens new window)
87f4720f27, (opens new window) - Officially dropping IE11 support, from this version onwards there are no warranties of the package working in IE11. For more information see: https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534, (opens new window)
Patch Changes
- Updated dependencies
6.0.12
Patch Changes
- Updated dependencies
6.0.11
Patch Changes
- #2866, (opens new window)
54a9514fcf, (opens new window) - Build and supporting files will no longer be published to npm
6.0.10
Patch Changes
- Updated dependencies
6.0.9
Patch Changes
-
[patch]f4374a322a, (opens new window):
Change imports to comply with Atlassian conventions- Updated dependencies 6b8e60827e, (opens new window):
-
Updated dependencies 57c0487a02, (opens new window):
- @atlaskit/button@13.3.11
6.0.8
Patch Changes
-
[patch]c5182f1c53, (opens new window):
Widens the accepted Types for description to include any react node- Updated dependencies dae900bf82, (opens new window):
-
Updated dependencies 8c9e4f1ec6, (opens new window):
- @atlaskit/build-utils@2.6.4
- @atlaskit/docs@8.5.0
6.0.7
Patch Changes
-
[patch]6548261c9a, (opens new window):
Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies 6548261c9a, (opens new window):
- @atlaskit/docs@8.3.2
- @atlaskit/visual-regression@0.1.9
- @atlaskit/button@13.3.7
- @atlaskit/spinner@12.1.4
- @atlaskit/theme@9.5.1
6.0.6
Patch Changes
-
[patch]6c9c2d5487, (opens new window):
Fixes empty state image not having appropriate accessibility attributes.- Updated dependencies 3c0f6feee5, (opens new window):
-
Updated dependencies f9c291923c, (opens new window):
- @atlaskit/theme@9.3.0
6.0.5
Patch Changes
-
[patch]35d2229b2a, (opens new window):
Adding missing license to packages and update to Copyright 2019 Atlassian Pty Ltd.
6.0.4
Patch Changes
-
[patch]097b696613, (opens new window):
Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving non-relative imports as relative imports
6.0.3
Patch Changes
-
[patch]ecca4d1dbb, (opens new window):
Upgraded Typescript to 3.3.x
6.0.2
Patch Changes
-
[patch]708028db86, (opens new window):
Change all the imports to theme in Core to use multi entry points
6.0.1
Patch Changes
-
[patch]de35ce8c67, (opens new window):
Updates component maintainers
6.0.0
Major Changes
-
[major]433311c16a, (opens new window):
@atlaskit/empty-state has been converted to Typescript. Typescript consumers will now get static type safety. Flow types are no longer provided. No API or behavioural changes.
5.0.3
Patch Changes
-
[patch]4615439434, (opens new window):
index.ts will now be ignored when publishing to npm
5.0.2
- [patch]b0ef06c685, (opens new window):
- This is just a safety release in case anything strange happened in in the previous one. See Pull Request #5942 for details
5.0.1
- Updated dependencies
215688984e, (opens new window):
- @atlaskit/button@13.0.4
- @atlaskit/spinner@12.0.0
5.0.0
- [major]7c17b35107, (opens new window):
- 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.
4.0.4
- Updated dependencies
9c0b4744be, (opens new window):
- @atlaskit/docs@7.0.3
- @atlaskit/button@12.0.3
- @atlaskit/spinner@10.0.7
- @atlaskit/theme@8.1.7
4.0.3
- Updated dependencies
1e826b2966, (opens new window):
- @atlaskit/docs@7.0.2
- @atlaskit/spinner@10.0.5
- @atlaskit/theme@8.1.6
- @atlaskit/button@12.0.0
4.0.2
- [patch]98e11001ff, (opens new window):
- Removes duplicate babel-runtime dependency
4.0.1
- Updated dependencies
9d5cc39394, (opens new window):
- @atlaskit/docs@7.0.1
- @atlaskit/spinner@10.0.1
- @atlaskit/theme@8.0.1
- @atlaskit/button@11.0.0
4.0.0
-
[major]76299208e6, (opens new window):
- Drop ES5 from all the flow modules
Dropping CJS support in all @atlaskit packages
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
importandexportdeclarations.The major reason for doing this is to allow us to support multiple entry points in packages, e.g:
import colors from `@atlaskit/theme/colors`;Previously this was sort of possible for consumers by doing something like:
import colors from `@atlaskit/theme/dist/esm/colors`;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.
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.
ES Modules are widely supported by all modern bundlers and can be worked around in node environments.
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.
Please reach out to #fabric-build (if in Atlassian) or create an issue in Design System Support, (opens new window) (for external) if you have any questions or queries about this.
3.1.4
- Updated dependencies 58b84fa, (opens new window):
- @atlaskit/button@10.1.1
- @atlaskit/spinner@9.0.13
- @atlaskit/theme@7.0.1
- @atlaskit/docs@6.0.0
3.1.3
- Updated dependencies d13242d, (opens new window):
- @atlaskit/docs@5.2.3
- @atlaskit/button@10.0.4
- @atlaskit/spinner@9.0.12
- @atlaskit/theme@7.0.0
3.1.2
- Updated dependencies 6998f11, (opens new window):
- @atlaskit/docs@5.2.1
- @atlaskit/spinner@9.0.11
- @atlaskit/theme@6.2.1
- @atlaskit/button@10.0.0
3.1.1
- [patch] Adds missing implicit @babel/runtime dependency b71751b, (opens new window)
3.1.0
- [minor] Adds new imageWidth and imageHeight props, useful for fixing the image dimensions while it's loading so the page doesn't bounce around. Changes the root element to use max-width instead of width so it shrinks down in smaller containers. 3209be4, (opens new window)
3.0.9
- [patch] Pulling the shared styles from @atlaskit/theme and removed dependency on util-shraed-styles 7d51a09, (opens new window)
3.0.8
- [patch] Moved the atlaskit button, spinner, theme and util-shared-styles to dependencies from peer dependdency a2d1132, (opens new window)
3.0.7
- [patch] Adds sideEffects: false to allow proper tree shaking b5d6d04, (opens new window)
3.0.5
- [patch] Updated dependencies
df22ad8, (opens new window)
- @atlaskit/theme@6.0.0
- @atlaskit/spinner@9.0.6
- @atlaskit/button@9.0.6
- @atlaskit/docs@5.0.6
3.0.4
- [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, (opens new window) for details a4bd557, (opens new window)
- [none] Updated dependencies
a4bd557, (opens new window)
- @atlaskit/button@9.0.5
- @atlaskit/theme@5.1.3
- @atlaskit/spinner@9.0.5
3.0.3
- [patch] Updated dependencies
acd86a1, (opens new window)
- @atlaskit/button@9.0.4
- @atlaskit/theme@5.1.2
- @atlaskit/spinner@9.0.4
- @atlaskit/docs@5.0.2
3.0.2
- [patch] Add a SSR test for every package, add react-dom and build-utils in devDependencies 7e331b5, (opens new window)
- [none] Updated dependencies
7e331b5, (opens new window)
- @atlaskit/button@9.0.3
- @atlaskit/theme@5.1.1
- @atlaskit/spinner@9.0.3
3.0.1
- [patch] Move analytics tests and replace elements to core 49d4ab4, (opens new window)
- [none] Updated dependencies
49d4ab4, (opens new window)
- @atlaskit/button@9.0.2
- @atlaskit/spinner@9.0.2
- @atlaskit/docs@5.0.1
3.0.0
- [major] Updates to React ^16.4.0 7edb866, (opens new window)
- [major] Updated dependencies
563a7eb, (opens new window)
- @atlaskit/button@9.0.0
- @atlaskit/theme@5.0.0
- @atlaskit/spinner@9.0.0
- @atlaskit/docs@5.0.0
- [major] Updated dependencies
7edb866, (opens new window)
- @atlaskit/button@9.0.0
- @atlaskit/theme@5.0.0
- @atlaskit/spinner@9.0.0
- @atlaskit/docs@5.0.0
2.1.3
- [patch] Updated dependencies
cdba8b3, (opens new window)
- @atlaskit/spinner@8.0.0
- @atlaskit/button@8.2.3
2.1.2
- [patch] Clean Changelogs - remove duplicates and empty entries e7756cd, (opens new window)
- [none] Updated dependencies
e7756cd, (opens new window)
- @atlaskit/button@8.1.2
- @atlaskit/theme@4.0.4
- @atlaskit/spinner@7.0.2
2.1.1
- [patch] Update changelogs to remove duplicate cc58e17, (opens new window)
- [none] Updated dependencies
cc58e17, (opens new window)
- @atlaskit/theme@4.0.3
- @atlaskit/spinner@7.0.1
- @atlaskit/button@8.1.1
- @atlaskit/docs@4.1.1
2.1.0
- [patch] Updated dependencies
9d20f54, (opens new window)
- @atlaskit/spinner@7.0.0
- @atlaskit/docs@4.1.0
- @atlaskit/theme@4.0.2
- @atlaskit/button@8.1.0
2.0.1
- [patch] Update readme's 223cd67, (opens new window)
- [patch] Updated dependencies
223cd67, (opens new window)
- @atlaskit/button@8.0.1
- @atlaskit/theme@4.0.1
- @atlaskit/spinner@6.0.1
- @atlaskit/docs@4.0.1
2.0.0
- [major] makes styled-components a peer dependency and upgrades version range from 1.4.6 - 3 to ^3.2.6 1e80619, (opens new window)
- [patch] Updated dependencies
1e80619, (opens new window)
- @atlaskit/button@8.0.0
- @atlaskit/theme@4.0.0
- @atlaskit/spinner@6.0.0
- @atlaskit/docs@4.0.0
1.1.2
- [patch] Updated dependencies
d662caa, (opens new window)
- @atlaskit/button@7.2.5
- @atlaskit/theme@3.2.2
- @atlaskit/spinner@5.0.2
- @atlaskit/docs@3.0.4
1.1.0
- [patch] Remove null as we allowed void values 7ab743b, (opens new window)
- [patch] Update empty state and button to have consistent types f0da143, (opens new window)
- [minor] Update Empty state to use ButtonGroup from @atlaskit/button e4a8dcf, (opens new window)
1.0.0
- [major] Bump to React 16.3. 4251858, (opens new window)
0.3.0
- [minor] Update styled-components dependency to support versions 1.4.6 - 3 ceccf30, (opens new window)
0.2.2
- [patch] updated the repository url to https://bitbucket.org/atlassian/atlaskit-mk-2, (opens new window) 1e57e5a, (opens new window)
0.2.1
- [patch] Packages Flow types for elements components 3111e74, (opens new window)
0.2.0
- [minor] Add React 16 support. 12ea6e4, (opens new window)
0.1.3
- [patch] Color of the description changed to N800 ebf65be, (opens new window)
0.1.0
- [patch] Updates dependency on docs/ to ^1.0.1 36c7ef8, (opens new window)
- [minor] Initial release afbb1e5, (opens new window)