Inline message
An inline message lets users know when important information is available or when an action is required.16.4.1
Patch Changes
- Updated dependencies
16.4.0
Minor Changes
bd2c5b0112185, (opens new window) - Remove stale API report artifacts from published Platform packages.
Patch Changes
- Updated dependencies
16.3.1
Patch Changes
e974cd0ae082c, (opens new window) - Experimental React 19 peer dependency support. This patch widens the peer range; CI coverage is partial.- Updated dependencies
16.3.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
16.2.8
Patch Changes
- Updated dependencies
16.2.7
Patch Changes
- Updated dependencies
16.2.6
Patch Changes
- Updated dependencies
16.2.5
Patch Changes
- Updated dependencies
16.2.4
Patch Changes
- Updated dependencies
16.2.3
Patch Changes
- Updated dependencies
16.2.2
Patch Changes
- Updated dependencies
16.2.1
Patch Changes
- Updated dependencies
16.2.0
Minor Changes
c98e0cf5cc4f6, (opens new window) - Autofix: add explicit package exports (barrel removal)
Patch Changes
- Updated dependencies
16.1.1
Patch Changes
- Updated dependencies
16.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
16.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
16.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
15.6.14
Patch Changes
- Updated dependencies
15.6.13
Patch Changes
- Updated dependencies
15.6.12
Patch Changes
- Updated dependencies
15.6.11
Patch Changes
-
7250582895c0b, (opens new window) - Top-layer adoption work behind theplatform-dst-top-layerfeature flag. Public adopter APIs are intentionally kept narrow while the top-layer API surface settles, with one exception called out below.Highlights:
- Pass the full
[along, away]legacy popper offset through to the new top-layerplacement.offsetAPI (viafromLegacyPlacement). Previously only theawayaxis was forwarded, which dropped thealongoffset for consumers ofPopup,PopupSelect,Spotlight, andTooltipwhenplatform-dst-top-layeris enabled. - Fix broken import of
dialogHeightanddialogWidthfrom the removed utils module in@atlaskit/modal-dialog.
Public API:
@atlaskit/tooltip(minor): add an optionaltestId?: stringfield toTriggerProps. This is additive (no existing prop changes shape). Required because@atlaskit/button/new(and otherPressable-backed primitives) overwritedata-testidfrom spread, so the legacy(triggerProps as any)['data-testid']workaround is silently absorbed by those consumers. A typedtestIdfield flows through their owntestIddestructure instead, restoringdata-testidpropagation onto the rendered trigger element.@atlaskit/popup,@atlaskit/dropdown-menu(patch): no public type changes. Wideraria-haspopupunions that the FF-on path produces are bridged at the package boundary into@atlaskit/top-layerwith localisedFUDGE(top-layer-api)casts, documented inpackages/design-system/top-layer/notes/decisions/migration-roadmap.md("Open API decisions deferred to a follow-up PR"). They will be widened in a follow-upminorPR once the top-layer API is committed.@atlaskit/modal-dialog,@atlaskit/select,@atlaskit/spotlight(patch/minor): no public type changes; bug fixes only.
Merge-readiness fixes (FF-on test wiring + adopter behavior):
@atlaskit/popup(minor): wire the compositionalPopupContentto delegate toPopupContentTopLayerwhenplatform-dst-top-layeris enabled. Previously only the legacyPopupcomponent had the FF branch, leaving consumers of the compositional API on the legacy popper path.@atlaskit/select(minor): add anonClickhandler to thePopupSelecttop-layer trigger so clicks open/close the menu (mirrors the legacy global click handler inpopup-select.tsx). Add explicit Escape handling on the menu'sonKeyDownso the menu closes and focus returns to the trigger.@atlaskit/top-layer(patch): the<dialog>rendered by the Dialog primitive now setsaria-modal="true"explicitly. Modern browsers infer modal semantics from.showModal()but some assistive tech still keys off the explicit attribute.@atlaskit/top-layer(patch): guarduse-anchor-positioningagainst environments whereResizeObserveris not defined (e.g. jest'snodeenvironment, used by the post-office test suite). The observer is used to wait for the popover's first valid layout before measuring; consumers in non-DOM jest environments now get a no-op observer and the scroll/resize listeners still apply if the host environment polyfillsshowPopover. Real browsers always haveResizeObserver.@atlaskit/modal-dialog(patch): on the FF-on path, drop thetabIndex={-1}(and unused:focus-visibleoutline) from the modal content wrapper. The native<dialog>.showModal()focus-delegate algorithm picks the first focusable descendant (includingtabindex=-1), and the wrapper was hijacking initial focus from the close button. Also honorshouldReturnFocus={ref}on the FF-on path (an unmount-cleanup focuses the ref afterdialog.close()so it overrides the browser's automatic return-to-trigger). BooleanshouldReturnFocus={false}is not yet honored on the FF-on path — seetop-layer/notes/merge-blockers.md.@atlaskit/datetime-picker(patch): on the FF-on path, setmode="manual"on thePopup.Contentrendered by bothinternal/menu-top-layer.tsx(date-picker calendar) andinternal/fixed-layer-menu-top-layer.tsx(time-picker menu). With the defaultmode="auto", the same click event that opens the menu (which targets the react-select combobox input — outside the popover element) bubbles to the browser's native popover light-dismiss handler and immediately closes the menu. react-select / DateTimePicker already own outside-click and Esc dismissal via their own state, so opting out of the native auto-dismiss is the correct integration. Also extend the existing Esc → trigger-focus restoration incomponents/date-picker.tsxto the FF-on path (manual mode disables the browser's built-in focus return, and the legacy code path was already handling this for itself behind an FF negation).@atlaskit/popup(no public API change): no source changes — only FF-on Playwright spec/example fixes drove the suite from 21/3/2 to 27/0/0. Notable: the twotest.fixme'd nested-popover cases were not browser limitations;popover="auto"chains correctly via DOM ancestry (the original fixmes had the wrong testId selector). AddedtestIdprops to two examples (16-popup-with-a11y-props,18-should-fit-container) so default-shape tests can reach the trigger.- Test alignment for FF-on Playwright suites across
popup,select,datetime-picker,inline-dialog,inline-message, andmodal-dialog: selector updates to match the new top-layer testId convention (${testId}--content,[role="dialog"][aria-label="calendar"]), per-specskipAxeCheck()for example-level color-contrast violations unrelated to the migration, and focus assertions adjusted to match native<dialog>/Popup.Contentauto-focus semantics (focus lands on the first focusable child, not the dialog container itself). @atlassian/capacity-planning-capacity-graph,@atlaskit/color-picker,@atlassian/timeline-table,@atlassian/global-side-navigation(patch): scopefgmocks in unit tests soplatform-dst-top-layerreturnsfalse. JSDOM does not implement the native Popover API (showPopover/hidePopover/toggleevents), so leaving the gate ON in unit tests caused popover content to remain in the DOM after close and broke close-behaviour assertions. Browser coverage for the FF-on path is provided by the Playwright suites listed above.@atlaskit/dropdown-menu(no public API change): test/example-only fixes for the FF-on Playwright suite. Addedrole="menuitem"to the nested-triggerButtonIteminexamples/93-testing-nested-keyboard-navigation-top-layer.tsxto satisfy axe'saria-required-childrenrule on the parent menu. Added atest.beforeEach(skipAxeCheck)todropdown-menu.spec.tsx(FF-on suite) for example-levelcolor-contrastviolations on the pre-existingcolor.text.selected/color.background.selectedtoken pair (3.91:1). Replaced a deadlockingawait expect(moveItem).not.toBeFocused()pre-open assertion (Playwright's auto-wait blocks 5s on the absent element) withawait expect(moveItem).not.toBeVisible(). Suite result: 22/22 passing.
- Pass the full
-
Updated dependencies
15.6.10
Patch Changes
-
1f9114700d351, (opens new window) - Moved new motion changes fromplatform-dst-motion-upliftfeature gate toplatform-dst-motion-uplift-popup -
2bed6255731de, (opens new window) - Top-layer adoption work behind theplatform-dst-top-layerfeature flag. Public adopter APIs are intentionally kept narrow while the top-layer API surface settles, with one exception called out below.Highlights:
- Pass the full
[along, away]legacy popper offset through to the new top-layerplacement.offsetAPI (viafromLegacyPlacement). Previously only theawayaxis was forwarded, which dropped thealongoffset for consumers ofPopup,PopupSelect,Spotlight, andTooltipwhenplatform-dst-top-layeris enabled. - Fix broken import of
dialogHeightanddialogWidthfrom the removed utils module in@atlaskit/modal-dialog.
Public API:
@atlaskit/tooltip(minor): add an optionaltestId?: stringfield toTriggerProps. This is additive (no existing prop changes shape). Required because@atlaskit/button/new(and otherPressable-backed primitives) overwritedata-testidfrom spread, so the legacy(triggerProps as any)['data-testid']workaround is silently absorbed by those consumers. A typedtestIdfield flows through their owntestIddestructure instead, restoringdata-testidpropagation onto the rendered trigger element.@atlaskit/popup,@atlaskit/dropdown-menu(patch): no public type changes. Wideraria-haspopupunions that the FF-on path produces are bridged at the package boundary into@atlaskit/top-layerwith localisedFUDGE(top-layer-api)casts, documented inpackages/design-system/top-layer/notes/decisions/migration-roadmap.md("Open API decisions deferred to a follow-up PR"). They will be widened in a follow-upminorPR once the top-layer API is committed.@atlaskit/modal-dialog,@atlaskit/select,@atlaskit/spotlight(patch/minor): no public type changes; bug fixes only.
Merge-readiness fixes (FF-on test wiring + adopter behavior):
@atlaskit/popup(minor): wire the compositionalPopupContentto delegate toPopupContentTopLayerwhenplatform-dst-top-layeris enabled. Previously only the legacyPopupcomponent had the FF branch, leaving consumers of the compositional API on the legacy popper path.@atlaskit/select(minor): add anonClickhandler to thePopupSelecttop-layer trigger so clicks open/close the menu (mirrors the legacy global click handler inpopup-select.tsx). Add explicit Escape handling on the menu'sonKeyDownso the menu closes and focus returns to the trigger.@atlaskit/top-layer(patch): the<dialog>rendered by the Dialog primitive now setsaria-modal="true"explicitly. Modern browsers infer modal semantics from.showModal()but some assistive tech still keys off the explicit attribute.@atlaskit/top-layer(patch): guarduse-anchor-positioningagainst environments whereResizeObserveris not defined (e.g. jest'snodeenvironment, used by the post-office test suite). The observer is used to wait for the popover's first valid layout before measuring; consumers in non-DOM jest environments now get a no-op observer and the scroll/resize listeners still apply if the host environment polyfillsshowPopover. Real browsers always haveResizeObserver.@atlaskit/modal-dialog(patch): on the FF-on path, drop thetabIndex={-1}(and unused:focus-visibleoutline) from the modal content wrapper. The native<dialog>.showModal()focus-delegate algorithm picks the first focusable descendant (includingtabindex=-1), and the wrapper was hijacking initial focus from the close button. Also honorshouldReturnFocus={ref}on the FF-on path (an unmount-cleanup focuses the ref afterdialog.close()so it overrides the browser's automatic return-to-trigger). BooleanshouldReturnFocus={false}is not yet honored on the FF-on path — seetop-layer/notes/merge-blockers.md.@atlaskit/datetime-picker(patch): on the FF-on path, setmode="manual"on thePopup.Contentrendered by bothinternal/menu-top-layer.tsx(date-picker calendar) andinternal/fixed-layer-menu-top-layer.tsx(time-picker menu). With the defaultmode="auto", the same click event that opens the menu (which targets the react-select combobox input — outside the popover element) bubbles to the browser's native popover light-dismiss handler and immediately closes the menu. react-select / DateTimePicker already own outside-click and Esc dismissal via their own state, so opting out of the native auto-dismiss is the correct integration. Also extend the existing Esc → trigger-focus restoration incomponents/date-picker.tsxto the FF-on path (manual mode disables the browser's built-in focus return, and the legacy code path was already handling this for itself behind an FF negation).@atlaskit/popup(no public API change): no source changes — only FF-on Playwright spec/example fixes drove the suite from 21/3/2 to 27/0/0. Notable: the twotest.fixme'd nested-popover cases were not browser limitations;popover="auto"chains correctly via DOM ancestry (the original fixmes had the wrong testId selector). AddedtestIdprops to two examples (16-popup-with-a11y-props,18-should-fit-container) so default-shape tests can reach the trigger.- Test alignment for FF-on Playwright suites across
popup,select,datetime-picker,inline-dialog,inline-message, andmodal-dialog: selector updates to match the new top-layer testId convention (${testId}--content,[role="dialog"][aria-label="calendar"]), per-specskipAxeCheck()for example-level color-contrast violations unrelated to the migration, and focus assertions adjusted to match native<dialog>/Popup.Contentauto-focus semantics (focus lands on the first focusable child, not the dialog container itself). @atlassian/capacity-planning-capacity-graph,@atlaskit/color-picker,@atlassian/timeline-table,@atlassian/global-side-navigation(patch): scopefgmocks in unit tests soplatform-dst-top-layerreturnsfalse. JSDOM does not implement the native Popover API (showPopover/hidePopover/toggleevents), so leaving the gate ON in unit tests caused popover content to remain in the DOM after close and broke close-behaviour assertions. Browser coverage for the FF-on path is provided by the Playwright suites listed above.@atlaskit/dropdown-menu(no public API change): test/example-only fixes for the FF-on Playwright suite. Addedrole="menuitem"to the nested-triggerButtonIteminexamples/93-testing-nested-keyboard-navigation-top-layer.tsxto satisfy axe'saria-required-childrenrule on the parent menu. Added atest.beforeEach(skipAxeCheck)todropdown-menu.spec.tsx(FF-on suite) for example-levelcolor-contrastviolations on the pre-existingcolor.text.selected/color.background.selectedtoken pair (3.91:1). Replaced a deadlockingawait expect(moveItem).not.toBeFocused()pre-open assertion (Playwright's auto-wait blocks 5s on the absent element) withawait expect(moveItem).not.toBeVisible(). Suite result: 22/22 passing.
- Pass the full
-
Updated dependencies
15.6.9
Patch Changes
- Updated dependencies
15.6.8
Patch Changes
- Updated dependencies
15.6.7
Patch Changes
- Updated dependencies
15.6.6
Patch Changes
02483200273ec, (opens new window) - Enrol all Design System UI packages into the React Compiler with platform gating via isReactCompilerActivePlatform.- Updated dependencies
15.6.5
Patch Changes
22bf79dbdcdca, (opens new window) - Internal changes to remove unnecessary token fallbacks and imports from@atlaskit/theme- Updated dependencies
15.6.4
Patch Changes
- Updated dependencies
15.6.3
Patch Changes
18245cbd990e3, (opens new window) - Added motion to opening and closing of Popup- Updated dependencies
15.6.2
Patch Changes
7aef1e49e90ea, (opens new window) - Removes redundant fallback color values via @atlaskit/theme- Updated dependencies
15.6.1
Patch Changes
- Updated dependencies
15.6.0
Minor Changes
8a0f486ff624f, (opens new window) - [ux] Cleans up add-max-width-and-height-to-inline-message as this feature gate is fully rolled out now.
Patch Changes
- Updated dependencies
15.5.8
Patch Changes
- Updated dependencies
15.5.7
Patch Changes
- Updated dependencies
15.5.6
Patch Changes
- Updated dependencies
15.5.5
Patch Changes
- Updated dependencies
15.5.4
Patch Changes
- Updated dependencies
15.5.3
Patch Changes
- Updated dependencies
15.5.2
Patch Changes
- Updated dependencies
15.5.1
Patch Changes
- Updated dependencies
15.5.0
Minor Changes
51928601f0216, (opens new window) - Updated border radius values behind a feature gateplatform-dst-shape-theme-default.
Patch Changes
- Updated dependencies
15.4.5
Patch Changes
d9f1cd7b26e1a, (opens new window) - Clean up flag.
15.4.4
Patch Changes
d14ea5f60b689, (opens new window) - chore: migrate platform UI & component libraries icon imports from migration paths to core- Updated dependencies
15.4.3
Patch Changes
- Updated dependencies
15.4.2
Patch Changes
- Updated dependencies
15.4.1
Patch Changes
67dd9df06af0f, (opens new window) - Replace instances of theatag withLinkwhere applicable.
15.4.0
Minor Changes
0dc4206204f86, (opens new window) - Fixes accessibility issue when tabbing into inline-message. Additionally, behind a feature flag, adds height and width constraints to inline-message in line with ADS recommendations.
15.3.14
Patch Changes
- Updated dependencies
15.3.13
Patch Changes
- Updated dependencies
15.3.12
Patch Changes
- Updated dependencies
15.3.11
Patch Changes
248faa32d4835, (opens new window) - Internal changes to how borders are applied.- Updated dependencies
15.3.10
Patch Changes
- Updated dependencies
15.3.9
Patch Changes
- Updated dependencies
15.3.8
Patch Changes
31c57f650ba07, (opens new window) - Improving tests for server side rendering and hydration- Updated dependencies
15.3.7
Patch Changes
- Updated dependencies
15.3.6
Patch Changes
- Updated dependencies
15.3.5
Patch Changes
- #188952, (opens new window)
1a88e6e2601ae, (opens new window) - Migrated usage of renamed/deprecated icons - Updated dependencies
15.3.4
Patch Changes
- #184952, (opens new window)
d25b30df1d8cf, (opens new window) - Removes invalid html nesting (Divs in Buttons)
15.3.3
Patch Changes
- Updated dependencies
15.3.2
Patch Changes
- #175398, (opens new window)
28c7d87f8d2e0, (opens new window) - Updated dev dependencies. - Updated dependencies
15.3.1
Patch Changes
- Updated dependencies
15.3.0
Minor Changes
- #160675, (opens new window)
ec40f9de24066, (opens new window) - Addsspacingprop to allow compact spacing on the underlying icon button. - #160675, (opens new window)
5160a5ab2e887, (opens new window) - Addsspacingprop to allow compact spacing on the underlying icon button.
15.2.1
Patch Changes
- Updated dependencies
15.2.0
Minor Changes
- #157071, (opens new window)
a149a0b1559ec, (opens new window) - We are testing the migration to the ADS Link component behind a feature flag. If this fix is successful it will be available in a later release.
Patch Changes
- Updated dependencies
15.1.0
Minor Changes
- #152852, (opens new window)
ae720e711e4d2, (opens new window) - AddsfallbackPlacementsprop for specifying a list of backup placements to try when the mainplacementdoes not have enough space. This matches the API ofPopup.
Patch Changes
- Updated dependencies
15.0.1
Patch Changes
- Updated dependencies
15.0.0
Major Changes
- #148091, (opens new window)
25880861de2d3, (opens new window) - Removed deprecatedtypeprop. Use theappearanceprop instead.
Patch Changes
- Updated dependencies
14.0.5
Patch Changes
- Updated dependencies
14.0.4
Patch Changes
- Updated dependencies
14.0.3
Patch Changes
- #129972, (opens new window)
b2d69a39e6687, (opens new window) - Update@compiled/reactdependency for improved type checking support. - Updated dependencies
14.0.2
Patch Changes
- Updated dependencies
14.0.1
Patch Changes
- Updated dependencies
14.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
13.2.0
Minor Changes
- #116138, (opens new window)
b50c5d5d65ae2, (opens new window) - Bump to the latest version of @compiled/react
Patch Changes
- Updated dependencies
13.1.2
Patch Changes
- Updated dependencies
13.1.1
Patch Changes
- Updated dependencies
13.1.0
Minor Changes
- #109060, (opens new window)
4660ec858a305, (opens new window) - UpdateReactfrom v16 to v18
Patch Changes
- Updated dependencies
13.0.3
Patch Changes
- #108679, (opens new window)
b35940a97f3a8, (opens new window) - Update dev dependencies.
13.0.2
Patch Changes
- Updated dependencies
13.0.1
Patch Changes
- Updated dependencies
13.0.0
Major Changes
- #175912, (opens new window)
4facbe306465b, (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/inline-message, 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).
Patch Changes
- Updated dependencies
12.4.3
Patch Changes
- #171994, (opens new window)
be58e4bb2e387, (opens new window) - Migrating usages of UNSAFE types and entrypoints that have been renamed in@atlaskit/iconand@atlaskit/icon-lab. - Updated dependencies
12.4.2
Patch Changes
- #166026, (opens new window)
962b5e77810fb, (opens new window) - Adds side-effect config to support Compiled css extraction in third-party apps
12.4.1
Patch Changes
- Updated dependencies
12.4.0
Minor Changes
- #157176, (opens new window)
3d03c4f1002ab, (opens new window) - Integrate layering and use CloseManager instead
Patch Changes
- Updated dependencies
12.3.6
Patch Changes
- Updated dependencies
12.3.5
Patch Changes
- #149694, (opens new window)
770bc26d556f7, (opens new window) - Migrate to new icons behind a feature flag - Updated dependencies
12.3.4
Patch Changes
- Updated dependencies
12.3.3
Patch Changes
- Updated dependencies
12.3.2
Patch Changes
- Updated dependencies
12.3.1
Patch Changes
- Updated dependencies
12.3.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
12.2.9
Patch Changes
- Updated dependencies
12.2.8
Patch Changes
- Updated dependencies
12.2.7
Patch Changes
- Updated dependencies
12.2.6
Patch Changes
- Updated dependencies
12.2.5
Patch Changes
- Updated dependencies
12.2.4
Patch Changes
- #114683, (opens new window)
ff0815316ab38, (opens new window) - Removes usage of custom theme button in places where its API is not being used and the default button is able to be used instead. This should give a slight performance (runtime) improvement.
12.2.3
Patch Changes
- Updated dependencies
12.2.2
Patch Changes
- #113051, (opens new window)
8fb8ca26fb173, (opens new window) - Integrate layering in inline dialog - Updated dependencies
12.2.1
Patch Changes
- Updated dependencies
12.2.0
Minor Changes
- #110670, (opens new window)
c733254a2dd6e, (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
12.1.3
Patch Changes
- Updated dependencies
12.1.2
Patch Changes
- #104958, (opens new window)
45033e519694, (opens new window) - Add layering support to fix escape keyboard issue in modals
12.1.1
Patch Changes
- #101830, (opens new window)
3ae5d8dba986, (opens new window) - Internal change only; update to use primitive components and tokenised typography. - Updated dependencies
12.1.0
Minor Changes
- #96634, (opens new window)
047cd471b7e2, (opens new window) - Add support for React 18 in non-strict mode.
12.0.5
Patch Changes
- #83116, (opens new window)
8d4e99057fe0, (opens new window) - Upgrade Typescript from4.9.5to5.4.2
12.0.4
Patch Changes
- #69022, (opens new window)
395c74147990, (opens new window) - Migrate packages to use declarative entry points
12.0.3
Patch Changes
- #63677, (opens new window)
f320c8ce5039, (opens new window) - This package has been added to the Jira push model.
12.0.2
Patch Changes
- Updated dependencies
12.0.1
Patch Changes
- Updated dependencies
12.0.0
Major Changes
- #41791, (opens new window)
ec7c2a38247, (opens new window) - Removed all remaining legacy theming logic from the Calendar, Form, InlineDialog, InlineEdit and InlineMessage components.
Patch Changes
- Updated dependencies
11.5.8
Patch Changes
- #42261, (opens new window)
5bbffa62596, (opens new window) - Remove shadowed variable and use type imports
11.5.7
Patch Changes
- #40650, (opens new window)
07aa588c8a4, (opens new window) - Reverts the fix to text descender cut-off, due to incompatibilities with Firefox and Safari.
11.5.6
Patch Changes
- #40832, (opens new window)
89fccc9c758, (opens new window) - Add aria-expanded to communicate expanded/ collapsed state
11.5.5
Patch Changes
- #38162, (opens new window)
fd6bb9c9184, (opens new window) - Delete version.json - Updated dependencies
11.5.4
Patch Changes
- #38209, (opens new window)
56b444b56a8, (opens new window) - Fix a bug where text descenders were cut off at high zoom levels on Windows
11.5.3
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.
11.5.2
Patch Changes
- #33793, (opens new window)
9d00501a414, (opens new window) - Ensure legacy types are published for TS 4.5-4.8
11.5.1
Patch Changes
- #33649, (opens new window)
41fae2c6f68, (opens new window) - Upgrade Typescript from4.5.5to4.9.5
11.5.0
Minor Changes
- #33258, (opens new window)
56507598609, (opens new window) - Skip minor dependency bump
Patch Changes
- Updated dependencies
11.4.10
Patch Changes
- #31552, (opens new window)
f6d92b4a378, (opens new window) - Migrates unit tests from enzyme to RTL.
11.4.9
Patch Changes
- Updated dependencies
11.4.8
Patch Changes
- #29390, (opens new window)
18aeca8c199, (opens new window) - Internal change to update token references. There is no expected behaviour or visual change.
11.4.7
Patch Changes
- #28064, (opens new window)
b0f6dd0bc35, (opens new window) - Updated to use typography tokens. There is no expected behaviour or visual change.
11.4.6
Patch Changes
- #28090, (opens new window)
25902de2d93, (opens new window) - [ux] Added pressed (active) state styles for the secondary text.
11.4.5
Patch Changes
- Updated dependencies
11.4.4
Patch Changes
- Updated dependencies
11.4.3
Patch Changes
- Updated dependencies
11.4.2
Patch Changes
- #26408, (opens new window)
9de88fa1e1e, (opens new window) - Internal changes to include spacing tokens in component implementations.
11.4.1
Patch Changes
- #24874, (opens new window)
8cc2f888c83, (opens new window) - Upgrade Typescript from4.3.5to4.5.5
11.4.0
Minor Changes
- #24004, (opens new window)
bcf29b33526, (opens new window) - Updates@emotion/coreto@emotion/react; v10 to v11. There is no expected behavior change.
Patch Changes
- Updated dependencies
11.3.1
Patch Changes
- #24492, (opens new window)
8d4228767b0, (opens new window) - Upgrade Typescript from4.2.4to4.3.5.
11.3.0
Minor Changes
- #23573, (opens new window)
38469010a1c, (opens new window) - Replaces usage of thetypeprop withappearance.
11.2.8
Patch Changes
- #21545, (opens new window)
efa50ac72ba, (opens new window) - Adjusts jsdoc strings to improve prop documentation
11.2.7
Patch Changes
- Updated dependencies
11.2.6
Patch Changes
- #20650, (opens new window)
cb2392f6d33, (opens new window) - Upgrade to TypeScript 4.2.4 - Updated dependencies
11.2.5
Patch Changes
- Updated dependencies
11.2.4
Patch Changes
- Updated dependencies
11.2.3
Patch Changes
- Updated dependencies
11.2.2
Patch Changes
- Updated dependencies
11.2.1
Patch Changes
- Updated dependencies
11.2.0
Minor Changes
-
#16759, (opens new window)
3d6d3a581d6, (opens new window) - Instrumented@atlaskit/inline-messagewith 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.
11.1.5
Patch Changes
- #15632, (opens new window)
34282240102, (opens new window) - Adds explicit type to button usages components.
11.1.4
Patch Changes
- Updated dependencies
11.1.3
Patch Changes
- #13302, (opens new window)
af4bca32ad4, (opens new window) - Internal changes to supress eslint rules. - Updated dependencies
11.1.2
Patch Changes
- #12837, (opens new window)
8279380176b, (opens new window) - Internal code changes. - Updated dependencies
11.1.1
Patch Changes
- #12880, (opens new window)
378d1cef00f, (opens new window) - Bump@atlaskit/themeto version^11.3.0.
11.1.0
Minor Changes
- #12328, (opens new window)
1489097139d, (opens new window) - Added iconLabel prop to provide useful information to users with screen readers 65388bb777d, (opens new window) - Removes thestyled-componentsdependency from the package. Still has a transitive reliance onstyled-componentsviainline-dialog. There should be no visual or UX change.
Patch Changes
9c98e8227f6, (opens new window) - Internal refactor for style declarations.- Updated dependencies
11.0.8
Patch Changes
- #5857, (opens new window)
d3265f19be, (opens new window) - Transpile packages using babel rather than tsc
11.0.7
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.
11.0.6
Patch Changes
- Updated dependencies
11.0.5
Patch Changes
- Updated dependencies
11.0.4
Patch Changes
- #4707, (opens new window)
6360c46009, (opens new window) - Reenable integration tests for Edge browser
11.0.3
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.
11.0.2
Patch Changes
- #3293, (opens new window)
954cc87b62, (opens new window) - The readme and package information has been updated to point to the new design system website.
11.0.1
Patch Changes
- #3428, (opens new window)
94ba4f2381, (opens new window) - Formatted testId prop description. The prop description was formatted incorrectly.
11.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
10.1.8
Patch Changes
- #2866, (opens new window)
54a9514fcf, (opens new window) - Build and supporting files will no longer be published to npm
10.1.7
Patch Changes
- Updated dependencies
10.1.6
Patch Changes
-
[patch]68e206c857, (opens new window):
Change imports to comply with Atlassian conventions- Updated dependencies 6b8e60827e, (opens new window):
-
Updated dependencies 449ef134b3, (opens new window):
-
Updated dependencies 3a09573b4e, (opens new window):
-
Updated dependencies 57c0487a02, (opens new window):
-
Updated dependencies fd41d77c29, (opens new window):
- @atlaskit/button@13.3.11
- @atlaskit/icon@20.1.1
- @atlaskit/inline-dialog@12.1.12
- @atlaskit/webdriver-runner@0.3.4
10.1.5
Patch Changes
- Updated dependencies 66dcced7a0, (opens new window):
- Updated dependencies fd5292fd5a, (opens new window):
- Updated dependencies 64fb94fb1e, (opens new window):
- Updated dependencies fd5292fd5a, (opens new window):
- Updated dependencies eea5e9bd8c, (opens new window):
- Updated dependencies fd5292fd5a, (opens new window):
- Updated dependencies 109c1a2c0a, (opens new window):
- Updated dependencies
c57bb32f6d, (opens new window):
- @atlaskit/docs@8.4.0
- @atlaskit/icon@20.1.0
- @atlaskit/webdriver-runner@0.3.0
- @atlaskit/button@13.3.9
- @atlaskit/inline-dialog@12.1.11
10.1.4
Patch Changes
- Updated dependencies
e3f01787dd, (opens new window):
- @atlaskit/webdriver-runner@0.2.0
- @atlaskit/button@13.3.8
- @atlaskit/inline-dialog@12.1.10
10.1.3
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/icon@20.0.1
- @atlaskit/inline-dialog@12.1.9
- @atlaskit/theme@9.5.1
10.1.2
Patch Changes
- Updated dependencies
c0102a3ea2, (opens new window):
- @atlaskit/icon@20.0.0
- @atlaskit/docs@8.3.1
- @atlaskit/button@13.3.6
- @atlaskit/inline-dialog@12.1.8
10.1.1
Patch Changes
-
[patch]4a223473c5, (opens new window):
Removes babel/runtime from dependencies. Users should see a smaller bundlesize as a result- Updated dependencies 28f8f0e089, (opens new window):
-
Updated dependencies 82747f2922, (opens new window):
-
Updated dependencies 4a223473c5, (opens new window):
- @atlaskit/icon@19.1.0
- @atlaskit/theme@9.5.0
- @atlaskit/button@13.3.5
- @atlaskit/inline-dialog@12.1.7
10.1.0
Minor Changes
-
[minor]3c86f3180f, (opens new window):
Adding an optional prop
testIdthat will set the attribute valuedata-testid. It will help products to write better integration and end to end tests.
10.0.15
Patch Changes
-
[patch]35d2229b2a, (opens new window):
Adding missing license to packages and update to Copyright 2019 Atlassian Pty Ltd.
10.0.14
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
10.0.13
Patch Changes
-
[patch]ecca4d1dbb, (opens new window):
Upgraded Typescript to 3.3.x
10.0.12
Patch Changes
-
[patch]708028db86, (opens new window):
Change all the imports to theme in Core to use multi entry points
10.0.11
Patch Changes
-
[patch]de35ce8c67, (opens new window):
Updates component maintainers
10.0.10
Patch Changes
-
[patch]bbff8a7d87, (opens new window):
Fixes bug, missing version.json file
10.0.9
Patch Changes
-
[patch]18dfac7332, (opens new window):
In this PR, we are:
- Re-introducing dist build folders
- Adding back cjs
- Replacing es5 by cjs and es2015 by esm
- Creating folders at the root for entry-points
- Removing the generation of the entry-points at the root Please see this ticket, (opens new window) or this page, (opens new window) for further details
10.0.8
Patch Changes
-
[patch]29a1f158c1, (opens new window):
Use default react import in typescript files.
10.0.7
- Updated dependencies
06326ef3f7, (opens new window):
- @atlaskit/docs@8.1.3
- @atlaskit/button@13.0.9
- @atlaskit/inline-dialog@12.0.3
- @atlaskit/icon@19.0.0
10.0.6
Patch Changes
-
[patch]4615439434, (opens new window):
index.ts will now be ignored when publishing to npm
10.0.5
Patch Changes
-
[patch]93bcf314c6, (opens new window):
Added missing tslib dep
10.0.4
Patch Changes
-
[patch]3b13bd0816, (opens new window):
Both title and secondaryText prop type changed from string to React.ReactNode. This provides more flexibility for consumers to provide i18n components such as FormattedMessage.
10.0.3
- Updated dependencies
cfc3c8adb3, (opens new window):
- @atlaskit/docs@8.1.2
- @atlaskit/button@13.0.8
- @atlaskit/inline-dialog@12.0.1
- @atlaskit/icon@18.0.0
10.0.2
- Updated dependencies
181209d135, (opens new window):
- @atlaskit/inline-dialog@12.0.0
10.0.1
- [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
10.0.0
- [major]66af32c013, (opens new window):
- @atlaskit/inline-message has been converted to Typescript. Typescript consumers will now get static type safety. Flow types are no longer provided. No API or behavioural changes.
9.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.
8.0.3
- Updated dependencies
9c0b4744be, (opens new window):
- @atlaskit/docs@7.0.3
- @atlaskit/button@12.0.3
- @atlaskit/icon@16.0.9
- @atlaskit/inline-dialog@10.0.4
- @atlaskit/theme@8.1.7
8.0.2
- Updated dependencies
1e826b2966, (opens new window):
- @atlaskit/docs@7.0.2
- @atlaskit/icon@16.0.8
- @atlaskit/inline-dialog@10.0.3
- @atlaskit/theme@8.1.6
- @atlaskit/button@12.0.0
8.0.1
- Updated dependencies
9d5cc39394, (opens new window):
- @atlaskit/docs@7.0.1
- @atlaskit/icon@16.0.5
- @atlaskit/inline-dialog@10.0.1
- @atlaskit/theme@8.0.1
- @atlaskit/button@11.0.0
8.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.
7.0.11
- Updated dependencies
d7ef59d432, (opens new window):
- @atlaskit/docs@6.0.1
- @atlaskit/button@10.1.2
- @atlaskit/inline-dialog@9.0.14
- @atlaskit/icon@16.0.0
7.0.10
- Updated dependencies 58b84fa, (opens new window):
- @atlaskit/button@10.1.1
- @atlaskit/icon@15.0.2
- @atlaskit/inline-dialog@9.0.13
- @atlaskit/theme@7.0.1
- @atlaskit/docs@6.0.0
7.0.9
- Updated dependencies d13242d, (opens new window):
- @atlaskit/docs@5.2.3
- @atlaskit/button@10.0.4
- @atlaskit/icon@15.0.1
- @atlaskit/inline-dialog@9.0.12
- @atlaskit/theme@7.0.0
7.0.8
- Updated dependencies ab9b69c, (opens new window):
- @atlaskit/docs@5.2.2
- @atlaskit/button@10.0.1
- @atlaskit/inline-dialog@9.0.11
- @atlaskit/icon@15.0.0
7.0.7
- Updated dependencies 6998f11, (opens new window):
- @atlaskit/docs@5.2.1
- @atlaskit/icon@14.6.1
- @atlaskit/inline-dialog@9.0.10
- @atlaskit/theme@6.2.1
- @atlaskit/button@10.0.0
7.0.6
- [patch] Adds missing implicit @babel/runtime dependency b71751b, (opens new window)
7.0.5
- [patch] Updated dependencies
65c6514, (opens new window)
- @atlaskit/docs@5.0.8
- @atlaskit/button@9.0.13
- @atlaskit/inline-dialog@9.0.6
- @atlaskit/icon@14.0.0
7.0.4
- [patch] Adds sideEffects: false to allow proper tree shaking b5d6d04, (opens new window)
7.0.3
- [patch] Inline-message now closes on outside click correctly. 988b80a, (opens new window)
7.0.1
- [patch] Updated dependencies
df22ad8, (opens new window)
- @atlaskit/theme@6.0.0
- @atlaskit/inline-dialog@9.0.2
- @atlaskit/icon@13.2.5
- @atlaskit/button@9.0.6
- @atlaskit/docs@5.0.6
7.0.0
- [major] Inline-message "position" prop has been changed to "placement" to align with what is in @atlaskit/inline-dialog and react-popper 333a440, (opens new window)
- [patch] Updated dependencies
1d9e75a, (opens new window)
- @atlaskit/inline-dialog@9.0.0
- [none] Updated dependencies
a3109d3, (opens new window)
- @atlaskit/inline-dialog@9.0.0
- [none] Updated dependencies
87d45d3, (opens new window)
- @atlaskit/inline-dialog@9.0.0
- [none] Updated dependencies
a08b0c2, (opens new window)
- @atlaskit/inline-dialog@9.0.0
6.0.3
- [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/inline-dialog@8.0.4
- @atlaskit/button@9.0.5
- @atlaskit/theme@5.1.3
- @atlaskit/icon@13.2.4
6.0.2
- [patch] Updated dependencies
acd86a1, (opens new window)
- @atlaskit/inline-dialog@8.0.3
- @atlaskit/icon@13.2.2
- @atlaskit/button@9.0.4
- @atlaskit/theme@5.1.2
- @atlaskit/docs@5.0.2
6.0.1
- [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/inline-dialog@8.0.2
- @atlaskit/button@9.0.3
- @atlaskit/theme@5.1.1
- @atlaskit/icon@13.2.1
6.0.0
- [major] Updates to React ^16.4.0 7edb866, (opens new window)
- [major] Updated dependencies
563a7eb, (opens new window)
- @atlaskit/inline-dialog@8.0.0
- @atlaskit/button@9.0.0
- @atlaskit/theme@5.0.0
- @atlaskit/docs@5.0.0
- @atlaskit/icon@13.0.0
- [major] Updated dependencies
7edb866, (opens new window)
- @atlaskit/inline-dialog@8.0.0
- @atlaskit/button@9.0.0
- @atlaskit/theme@5.0.0
- @atlaskit/docs@5.0.0
- @atlaskit/icon@13.0.0
5.1.2
- [patch] Clean Changelogs - remove duplicates and empty entries e7756cd, (opens new window)
- [none] Updated dependencies
e7756cd, (opens new window)
- @atlaskit/inline-dialog@7.1.2
- @atlaskit/button@8.1.2
- @atlaskit/theme@4.0.4
- @atlaskit/icon@12.1.2
5.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/inline-dialog@7.1.1
- @atlaskit/icon@12.1.1
- @atlaskit/button@8.1.1
- @atlaskit/docs@4.1.1
5.1.0
- [none] Updated dependencies
9d20f54, (opens new window)
- @atlaskit/inline-dialog@7.1.0
- @atlaskit/icon@12.1.0
- @atlaskit/docs@4.1.0
- @atlaskit/theme@4.0.2
- @atlaskit/button@8.1.0
5.0.1
- [patch] Update readme's 223cd67, (opens new window)
- [patch] Updated dependencies
223cd67, (opens new window)
- @atlaskit/icon@12.0.1
- @atlaskit/inline-dialog@7.0.1
- @atlaskit/button@8.0.1
- @atlaskit/theme@4.0.1
- @atlaskit/docs@4.0.1
5.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/icon@12.0.0
- @atlaskit/inline-dialog@7.0.0
- @atlaskit/button@8.0.0
- @atlaskit/theme@4.0.0
- @atlaskit/docs@4.0.0
4.0.2
- [patch] Updated dependencies
d662caa, (opens new window)
- @atlaskit/icon@11.3.0
- @atlaskit/inline-dialog@6.0.2
- @atlaskit/button@7.2.5
- @atlaskit/theme@3.2.2
- @atlaskit/docs@3.0.4
4.0.0
- [major] Bump to React 16.3. 4251858, (opens new window)
3.2.2
- [patch] Re-releasing due to potentially broken babel release 9ed0bba, (opens new window)
3.2.1
- [patch] added truncating logic for text in inline message 0b59d44, (opens new window)
3.2.0
- [minor] Update styled-components dependency to support versions 1.4.6 - 3 ceccf30, (opens new window)
3.1.3
- [patch] updated the repository url to https://bitbucket.org/atlassian/atlaskit-mk-2, (opens new window) 1e57e5a, (opens new window)
3.1.2
- [patch] Packages Flow types for elements components 3111e74, (opens new window)
3.1.1
- [patch] Resolved low hanging flow errors in field-base field-text comment icon item and website, $ 007de27, (opens new window)
3.1.0
- [minor] Add React 16 support. 12ea6e4, (opens new window)
3.0.6
- [patch] updated icons for error, info and udpated size of icon for confirmation 824c40d, (opens new window)
3.0.5
- [patch] migrate inline-message from ak to mk-2 2323022, (opens new window)
3.0.4 (2017-10-26)
- bug fix; fix to rebuild stories (793b2a7, (opens new window))
3.0.3 (2017-10-22)
- bug fix; update styled component dependency and react peerDep (39f3286, (opens new window))
3.0.2 (2017-10-15)
- bug fix; update dependencies for react 16 compatibility (fc47c94, (opens new window))
3.0.1 (2017-09-21)
- bug fix; removed unnecessary horizontal spacing on inline-messages (issues closed: ak-2603) (d608d79, (opens new window))
3.0.0 (2017-08-24)
- feature; remove util-shared-styles (d0331cf, (opens new window))
- breaking; Update inline message to include dark mode theming (dfc37f8, (opens new window))
- breaking; update inline message to include dark mode theming (issues closed: #ak-3237) (dfc37f8, (opens new window))
2.5.2 (2017-07-27)
- fix; rename jsnext:main to jsnext:experimental:main temporarily (c7508e0, (opens new window))
2.5.1 (2017-07-25)
- fix; use class transform in loose mode in babel to improve load performance in apps (fde719a, (opens new window))
2.2.0 (2017-07-17)
- fix; rerelease, failed prepublish scripts (5fd82f8, (opens new window))
- feature; added ES module builds to dist and add jsnext:main to most ADG packages (ea76507, (opens new window))
2.1.1 (2017-06-20)
- fix; bump inline-message dependencies to latest (f705804, (opens new window))
2.1.0 (2017-06-08)
- fix; add prop-types as a dependency to avoid React 15.x warnings (92598eb, (opens new window))
- feature; refactor inline-message to styled-components (5144fc5, (opens new window))
2.0.0 (2017-05-11)
- fix; update dependencies (6b6f84e, (opens new window))
- bumps util-shared-styles and inline-dialog dependencies to latest versions (b02a77d, (opens new window))
- breaking; Introduces react-dom as a peer dependency (to satisfy inline-dialogs peer dep)
- ISSUES CLOSED: AK-2361
1.2.2 (2017-04-27)
- fix; update legal copy to be more clear. Not all modules include ADG license. (f3a945e, (opens new window))
1.2.1 (2017-04-26)
- fix; update legal copy and fix broken links for component README on npm. New contribution and (0b3e454, (opens new window))
1.2.0 (2017-04-20)
- feature; removed explicit style! imports, set style-loader in webpack config (891fc3c, (opens new window))
1.1.3 (2017-03-23)
- fix; Empty commit to release the component (49c08ee, (opens new window))
1.1.1 (2017-03-21)
- fix; maintainers for all the packages were added (261d00a, (opens new window))
1.1.0 (2017-03-03)
- feature; allow positioning of dialog for inline messages (bdaa4d6, (opens new window))
1.0.2 (2017-02-09)
- fix; avoiding binding render to this (40c9951, (opens new window))
1.0.1 (2017-02-06)
- fix; Updates packages to use scoped ak packages (f16660f, (opens new window))