Icon

An icon is a symbol representing a command, device, directory, or common action.

37.7.1

Patch Changes

  • Updated dependencies

37.7.0

Minor Changes

37.6.0

Minor Changes

Patch Changes

  • Updated dependencies

37.5.3

Patch Changes

  • 4612437357f61, (opens new window) - Remove references to the unused @atlassian/icon-private package. Its value is dropped from the icon metadata location union, the ensure-icon-color lint rule no longer matches it, and the adoption scanner no longer scans its entrypoint.

37.5.2

Patch Changes

37.5.1

Patch Changes

  • Use @atlassian/testing-library exclusively in unit tests.

37.5.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.json exports subpaths 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

37.4.0

Minor Changes

37.3.0

Minor Changes

37.2.4

Patch Changes

  • Updated dependencies

37.2.3

Patch Changes

  • 9356675edac18, (opens new window) - Replace generated ./src/* subpath export keys with lint-safe equivalents. The de-barreling migration produced export keys containing a src segment (e.g. @atlaskit/select "./src/select"), which are forbidden by no-restricted-imports (@atlaskit/*/src/*) in downstream products.

    Renamed keys:

    • @atlaskit/select: ./src/select./default
    • @atlaskit/icon: ./src/constants./constants/default
    • @atlaskit/react-select: ./src/async./async/default, ./src/creatable./creatable/default
    • @atlaskit/heading: ./src/heading-context./heading-context/default
    • @atlaskit/flag: removed the redundant ./src/flag-group key (duplicate of the existing ./flag-group export)

    The underlying source targets are unchanged.

37.2.2

Patch Changes

  • Updated dependencies

37.2.1

Patch Changes

37.2.0

Minor Changes

  • c50236f04a5d5, (opens new window) - Flatten entry points for @atlaskit/icon and remove multiple-export violations.

    New and updated subpath exports are now available directly:

    • @atlaskit/icon/components/icon-new — direct component path (new)
    • @atlaskit/icon/deprecated-core — now resolves directly to src/deprecated-core.tsx
    • @atlaskit/icon/deprecated-map — now resolves directly to src/deprecated-core.tsx
    • @atlaskit/icon/icon-tile — now resolves directly to src/components/icon-tile/index.tsx
    • @atlaskit/icon/metadata-core — now resolves directly to src/metadata-core.tsx
    • @atlaskit/icon/skeleton — now resolves directly to src/components/skeleton.tsx
    • @atlaskit/icon/types — now resolves directly to src/types.tsx

    No migration required for existing imports — all existing subpath exports remain valid. The ./icon-new subpath continues to work as before via src/entry-points/icon-new.tsx.

37.1.0

Minor Changes

37.0.1

Patch Changes

  • Updated dependencies

37.0.0

Major Changes

  • eb572c1c104f1, (opens new window) - Removed the shape prop, UNSAFE_circleReplacementComponent prop, and IconTileCircleProps type from IconTile. Circle-shaped icon tiles are no longer supported — IconTile now renders a square tile only.

    Feature gates platform_dst_icon_tile_circle_replacement and platform_dst_icon_tile_circle_replacement_stage2 have been cleaned up.

    Migration: If you were using <IconTile shape="circle" UNSAFE_circleReplacementComponent={<MyComponent />} />, replace the entire <IconTile> with <MyComponent /> directly.

Patch Changes

  • Updated dependencies

36.2.0

Minor Changes

  • 220103ecf27a6, (opens new window) - This release updates icons in @atlaskit/icon and @atlaskit/icon-lab.

    Updated:

    @atlaskit/icon/core

    • chart-pie

    @atlaskit/icon-lab/core

    • text-rephrase
    • text-review

36.1.0

Minor Changes

  • cd097a2111788, (opens new window) - Republish packages depending on @atlaskit/react-compiler-gating so their published dependency reference is updated to the renamed @atlaskit/react-compiler-gating scope.

    The earlier rename of @atlassian/react-compiler-gating to @atlaskit/react-compiler-gating only bumped the renamed package itself, so dependent packages were never republished and their published versions still referenced the old @atlassian/react-compiler-gating name, which is not available in the public npm registry. This minor bump republishes all affected packages with the corrected dependency.

Patch Changes

  • Updated dependencies

36.0.1

Patch Changes

36.0.0

Major Changes

  • f2dc9097319f0, (opens new window) - ### Dropped support for legacy Typescript 4 types. Typescript 5 is now the new minimum.

    Removes the typesVersions property and dist/types-ts4.5 directory 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

35.4.0

Minor Changes

35.3.0

Minor Changes

35.2.0

Minor Changes

35.1.0

Minor Changes

Patch Changes

  • Updated dependencies

35.0.0

Major Changes

  • 2b84ca637685f, (opens new window) - [ux] Cleans up the IconTile API following the rollout of platform_dst_new_icon_tile and platform_dst_new_icon_tile_stage2 flags.

    Breaking changes

    • size="16" removed — Migrate to direct icon glyph usage (e.g. <MyIcon label="..." />), or use size="xsmall" for the smallest tile (20px).
    • Pixel number sizes removedsize values "24", "32", "40", "48" have been removed. Migrate to t-shirt sizes:
      • "small" (replaces "24")
      • "medium" (replaces "32")
      • "large" (replaces "40")
      • "xlarge" (replaces "48")
    • LegacyIconTileSize and NewIconTileSize types removed — Use IconTileSize directly.
    • Icon tile defaults to size medium (previously - small).
    • UNSAFE_circleReplacementComponent is required if shape='circle' is passed in.

Patch Changes

  • Updated dependencies

34.6.0

Minor Changes

34.5.0

Minor Changes

34.4.0

Minor Changes

  • 0e2b29db61e0a, (opens new window) - This release adds icons in @atlaskit/icon.

    Added:

    @atlaskit/icon/core

    • bezier-curve
    • figma-community
    • figma-component-instance-swap
    • figma-component-instance
    • figma-component
    • figma-slot
    • figma

34.3.0

Minor Changes

  • a8a1708dfe5e6, (opens new window) - This release adds and updates icons in @atlaskit/icon.

    Added:

    @atlaskit/icon/core

    • quotation-block

    Updated:

    @atlaskit/icon/core

    • chart-pie
    • markdown

Patch Changes

  • Updated dependencies

34.2.0

Minor Changes

34.1.0

Minor Changes

34.0.5

Patch Changes

  • Updated dependencies

34.0.4

Patch Changes

34.0.3

Patch Changes

  • Updated dependencies

34.0.2

Patch Changes

34.0.1

Patch Changes

34.0.0

Major Changes

  • af4d3f68227b4, (opens new window) - Removed the default export (Icon), ./base, ./svg entry-points, and SVG named export.

    - import Icon from `@atlaskit/icon` - import Icon from `@atlaskit/icon/base` - import SVG from `@atlaskit/icon/svg`

    Migration Path

    Creating custom icons using icon base component or SVG component are no longer supported. Please migrate to native <svg /> or choose one of the icons from provided icon set (e.g. import AddIcon from "@atlaskit/icon/core/add")

Patch Changes

  • Updated dependencies

33.1.2

Patch Changes

33.1.1

Patch Changes

  • af37f7d87df51, (opens new window) - Deprecate spacing prop on icon components via JSDoc @deprecated annotation, and update ADS website docs (Icon > Examples, Icon > Usage) to reflect the deprecation with migration guidance.

33.1.0

Minor Changes

  • 0daada0469ab8, (opens new window) - Remove @atlaskit/icon/migration-map entry point, IconMigrationMap and IconMigrationSizeGuidance types from @atlaskit/icon, and @atlaskit/icon-lab/migration-map entry point. These were only needed to support the legacy glyph icon migration path which has now been fully completed. Remove the no-legacy-icons ESLint rule from @atlaskit/eslint-plugin-design-system as @atlaskit/icon/glyph and @atlaskit/icon/core/migration no longer exist.

33.0.2

Patch Changes

33.0.1

Patch Changes

  • a61a3677df8a5, (opens new window) - Remove core/migration/* entries from deprecated icon docs. The core/migration/* icon components no longer exist following the removal of @atlaskit/icon/glyph legacy icons.

33.0.0

Major Changes

Patch Changes

  • Updated dependencies

32.1.0

Minor Changes

  • 99726ea06a76c, (opens new window) - This release updates icons in @atlaskit/icon.

    Updated:

    @atlaskit/icon/core

    • chart-pie
    • person-add
    • person-added
    • person-offboard
    • person-remove
    • person-warning
    • screen-plus

32.0.2

Patch Changes

  • 5e06fddfce409, (opens new window) - Rename codemod to next-icon-spacing-to-flex-primitive (now discoverable via npx @atlaskit/codemod-cli) and update no-icon-spacing-prop ESLint rule to generate Flex wrapper instead of Box.

32.0.1

Patch Changes

32.0.0

Major Changes

Patch Changes

  • Updated dependencies

31.0.0

Major Changes

Patch Changes

  • Updated dependencies

30.1.0

Minor Changes

30.0.2

Patch Changes

  • Updated dependencies

30.0.1

Patch Changes

30.0.0

Major Changes

Patch Changes

  • Updated dependencies

29.4.2

Patch Changes

  • Updated dependencies

29.4.1

Patch Changes

29.4.0

Minor Changes

  • 8d397e132e0b2, (opens new window) - In preparation for removal of the migration entry points, the platform-visual-refresh-icons feature flag has been removed. All migration entry point usages will now use the new iconography.

29.3.2

Patch Changes

29.3.1

Patch Changes

  • Updated dependencies

29.3.0

Minor Changes

  • 792573921f7ec, (opens new window) - This release updates icons in @atlaskit/icon.

    Updated:

    @atlaskit/icon/core

    • automation
    • basketball
    • chart-pie
    • epic
    • list-checklist
    • paint-palette
    • problem
    • send
    • target

Patch Changes

  • Updated dependencies

29.2.0

Minor Changes

Patch Changes

  • Updated dependencies

29.1.0

Minor Changes

  • 7df690ca5c497, (opens new window) - We are expanding the testing of previous changes behind an additional feature flag to more apps. If this change is successful, it will be available in a later release.

Patch Changes

29.0.2

Patch Changes

29.0.1

Patch Changes

29.0.0

Major Changes

Patch Changes

  • Updated dependencies

28.5.4

Patch Changes

  • Updated dependencies

28.5.3

Patch Changes

  • Updated dependencies

28.5.2

Patch Changes

  • Updated dependencies

28.5.1

Patch Changes

  • Updated dependencies

28.5.0

Minor Changes

28.4.0

Minor Changes

28.3.0

Minor Changes

  • 99f4f441fac8c, (opens new window) - We are testing new design language visual changes to Icon Tile behind a feature flag. If this change is successful it will be available in a later release.

    Additionally, backwards-compatible API changes were required to support this:

    • Deprecation of pixel number size in favor of new t-shirt sizes
    • Deprecation of size "16"
    • Deprecation of shape
    • Added UNSAFE_circleReplacementComponent prop temporarily to assist shape migrations
    • Deprecation of LEGACY_fallbackComponent

Patch Changes

  • Updated dependencies

28.2.1

Patch Changes

28.2.0

Minor Changes

  • 9ae6dba1e1062, (opens new window) - This release updates icons in @atlaskit/icon.

    Updated:

    @atlaskit/icon/core

    • app-switcher-legacy
    • app-switcher
    • app
    • apps
    • atlassian-intelligence
    • chart-pie
    • form
    • megaphone
    • menu
    • notification
    • on-call

28.1.2

Patch Changes

28.1.1

Patch Changes

28.1.0

Minor Changes

28.0.0

Major Changes

  • 2705f4174191e, (opens new window) - Legacy icons will no longer switch to the new icons via the platform-visual-refresh-icons-legacy-facade feature flag. This change includes removing the icon facade and cleaning up the feature flags.

Patch Changes

  • Updated dependencies

27.12.0

Minor Changes

27.11.0

Minor Changes

Patch Changes

27.10.0

Minor Changes

27.9.2

Patch Changes

27.9.1

Patch Changes

  • Updated dependencies

27.9.0

Minor Changes

27.8.1

Patch Changes

27.8.0

Minor Changes

27.7.0

Minor Changes

27.6.1

Patch Changes

27.6.0

Minor Changes

27.5.1

Patch Changes

27.5.0

Minor Changes

Patch Changes

  • Updated dependencies

27.4.0

Minor Changes

  • #188287, (opens new window) ecadaec5669f6, (opens new window) - Updated migration mapping for several icon entrypoints.

    @atlaskit/icon/core/migration

    • close--cross → cross
    • close--editor-close → cross--editor-close
    • error → status-error--error
    • information--editor-info → status-information--editor-info
    • information--editor-panel → status-information--editor-panel
    • information--info → status-information--info
    • success--check-circle → status-success--check-circle
    • success--editor-success → status-success--editor-success
    • warning--editor-warning → status-warning--editor-warning
    • warning → status-warning--warning

27.3.0

Minor Changes

27.2.1

Patch Changes

27.2.0

Minor Changes

Patch Changes

  • Updated dependencies

27.1.0

Minor Changes

  • #173492, (opens new window) 26fefb696ee7e, (opens new window) - This release deprecates all @atlaskit/icon/utility entry-points. If you require 12px icons please use the @atlaskit/icon/core entry-point instead with size prop set to 'small'. Furthermore, this release also adds, updates and deprecates other icons in @atlaskit/icon/core.

    Added:

    @atlaskit/icon/core

    • cross
    • focus-area
    • status-discovery
    • status-error
    • status-information
    • status-success
    • status-warning

    Updated:

    @atlaskit/icon/core

    • cash
    • close
    • flask
    • lightbulb
    • magic-wand
    • paint-palette
    • pen
    • status-verified

    Deprecated:

    @atlaskit/icon/core

    • capture
    • close
    • discovery
    • error
    • information
    • success
    • warning

    Deprecated:

    @atlaskit/icon/utility

    • add
    • arrow-down
    • arrow-left
    • arrow-right
    • arrow-up
    • check-circle
    • check-mark
    • chevron-double-left
    • chevron-double-right
    • chevron-down
    • chevron-left
    • chevron-right
    • chevron-up
    • cross
    • cross-circle
    • drag-handle-horizontal
    • drag-handle-vertical
    • error
    • information
    • link-external
    • lock-locked
    • lock-unlocked
    • show-more-horizontal
    • show-more-vertical
    • star-starred
    • star-unstarred
    • success
    • warning

27.0.0

Major Changes

  • #171534, (opens new window) 7a6465c5735e5, (opens new window) - This release removes icons in @atlaskit/icon.

    Removed:

    @atlaskit/icon/core

    • align-center
    • align-left
    • align-right
    • border-weight-medium
    • border-weight-thick
    • border-weight-thin
    • child-issues
    • content-align-center
    • content-align-left
    • content-align-right
    • drag-handle
    • drawer-left
    • drawer-right
    • issue
    • issues
    • sidebar-left
    • sidebar-right
    • summarize

Patch Changes

  • Updated dependencies

26.4.1

Patch Changes

  • Updated dependencies

26.4.0

Minor Changes

Patch Changes

  • Updated dependencies

26.3.0

Minor Changes

26.2.0

Minor Changes

  • #160457, (opens new window) 9b2c186eb964f, (opens new window) - This release updates icons in @atlaskit/icon.

    Updated:

    @atlaskit/icon/core

    • attachment
    • check-circle
    • chevron-right
    • clock
    • defect
    • devices
    • exclamation-square
    • list-checklist
    • minus-square
    • pen
    • pin-filled
    • pin
    • plus-square
    • priority-blocker
    • priority-critical
    • priority-high
    • priority-highest
    • priority-low
    • priority-lowest
    • priority-major
    • priority-medium
    • priority-minor
    • priority-trivial
    • problem
    • story
    • subtasks
    • tools
    • work-item
    • work-items

26.1.1

Patch Changes

26.1.0

Minor Changes

Patch Changes

  • Updated dependencies

26.0.0

Major Changes

Patch Changes

  • Updated dependencies

25.8.0

Minor Changes

25.7.0

Minor Changes

25.6.0

Minor Changes

  • #138291, (opens new window) 12b2a21a4da5a, (opens new window) - This release updates and deprecates icons in @atlaskit/icon.

    Updated:

    @atlaskit/icon/core

    • api
    • data-number
    • data-string
    • emoji-remove
    • eye-open-strikethrough
    • field-checkbox-group
    • field-radio-group
    • list-bulleted
    • list-checklist
    • list-numbered
    • notification-muted
    • pin-filled
    • pin
    • retry
    • shield-strikethrough
    • summarize
    • tag
    • text-heading
    • text-strikethrough
    • text
    • video-skip-backward-fifteen
    • video-skip-backward-ten
    • video-skip-forward-fifteen
    • video-skip-forward-ten
    • video

25.5.0

Minor Changes

25.4.0

Minor Changes

25.3.1

Patch Changes

25.3.0

Minor Changes

25.2.0

Minor Changes

  • #132394, (opens new window) 8c4b7d72f9c69, (opens new window) - This release updates and deprecates icons in @atlaskit/icon.

    Updated:

    @atlaskit/icon/core

    • text-underline

    Deprecated:

    @atlaskit/icon/core

    • border-weight-medium
    • border-weight-thick
    • border-weight-thin
    • content-align-center
    • content-align-left
    • content-align-right
    • drag-handle
    • align-center
    • align-left
    • align-right

    Deprecated:

    @atlaskit/icon/utility

    • drag-handle

Patch Changes

  • Updated dependencies

25.1.0

Minor Changes

25.0.2

Patch Changes

25.0.1

Patch Changes

25.0.0

Major Changes

24.1.1

Patch Changes

24.1.0

Minor Changes

24.0.0

Major Changes

Patch Changes

  • Updated dependencies

23.11.0

Minor Changes

  • #114599, (opens new window) bea386785f6f4, (opens new window) - This release adds, updates and deprecates icons in @atlaskit/icon.

    Added:

    @atlaskit/icon/core

    • drag-handle-horizontal
    • drag-handle-vertical

    @atlaskit/icon/utility

    • drag-handle-horizontal
    • drag-handle-vertical

    Updated:

    @atlaskit/icon/core

    • refresh
    • text-strikethrough

    Deprecated:

    @atlaskit/icon/core

    • content-align-center
    • content-align-left
    • content-align-right
    • border-weight-medium
    • border-weight-thick
    • border-weight-thin
    • align-center
    • align-left
    • align-right

23.10.1

Patch Changes

23.10.0

Minor Changes

23.9.1

Patch Changes

23.9.0

Minor Changes

23.8.1

Patch Changes

23.8.0

Minor Changes

  • #111393, (opens new window) cbcdf9cbfacf7, (opens new window) - This release adds and updates icons in @atlaskit/icon.

    Added:

    @atlaskit/icon/core

    • align-image-center
    • align-image-left
    • align-image-right
    • align-text-center
    • align-text-left
    • align-text-right
    • stroke-weight-extra-large
    • stroke-weight-large
    • stroke-weight-medium
    • stroke-weight-small

    Updated:

    @atlaskit/icon/core

    • text-strikethrough

23.7.1

Patch Changes

23.7.0

Minor Changes

  • #108250, (opens new window) 2ff8982b58a26, (opens new window) - [ux] This adds and modifies icons in @atlaskit/icons and @atlaskit/icon-lab

    Added:

    @atlaskit/icon/core

    • exclamation-square

    • information-circle

    • text-heading

    • text-strikethrough

    • text-underline

      Updated:

    @atlaskit/icon/core

    • cloud-arrow-up
    • error
    • field-radio-group
    • minus
    • operations
    • problem
    • thumbs-down
    • thumbs-up
    • volume-high
    • volume-low
    • volume-muted
    • warning

    @atlaskit/icon/glyph

    • issue-raise - now has replacement icon, core/plus-square and migration component

23.6.1

Patch Changes

  • Updated dependencies

23.6.0

Minor Changes

23.5.0

Minor Changes

Patch Changes

  • Updated dependencies

23.4.1

Patch Changes

23.4.0

Minor Changes

23.3.1

Patch Changes

  • Updated dependencies

23.3.0

Minor Changes

23.2.0

Minor Changes

23.1.1

Patch Changes

23.1.0

Minor Changes

23.0.1

Patch Changes

23.0.0

Major Changes

  • #171994, (opens new window) be58e4bb2e387, (opens new window) - This release renames UNSAFE types and entrypoints. It also includes rebuilding the icons and removing deprecated entrypoints.

    Renamed entrypoints:

    • @atlaskit/icon/UNSAFE_base-new@atlaskit/icon/base-new
    • @atlaskit/icon/UNSAFE_migration-map@atlaskit/icon/migration-map

    Removed entrypoints:

    @atlaskit/icon/core

    • bulleted-list
    • collapse
    • expand

    @atlaskit/icon/core/migration

    • bulleted-list--bullet-list
    • bulleted-list--editor-bullet-list
    • collapse--editor-collapse
    • expand--editor-expand
    • expand--editor-image-resize
    • expand--image-resize

22.28.0

Minor Changes

22.27.0

Minor Changes

Patch Changes

  • Updated dependencies

22.26.0

Minor Changes

  • #168599, (opens new window) 48b86e5124c23, (opens new window) - This release adds a supplementary set of icons to @atlaskit/icon.

    Added:

    @atlaskit/icon/core

    • shield-strikethrough
    • video-skip-backward-fifteen
    • video-skip-forward-fifteen

    Updated:

    @atlaskit/icon/core

    • field-radio-group
    • sidebar-collapse
    • sidebar-expand
    • video-skip-backward-ten
    • video-skip-forward-ten

22.25.0

Minor Changes

22.24.3

Patch Changes

22.24.2

Patch Changes

22.24.1

Patch Changes

  • #157955, (opens new window) ea8ebc84a9079, (opens new window) - Updated migration mapping for several icon entrypoints.

    @atlaskit/icon/core/migration

    • content-wrap-left--editor-media-wrap-left
    • content-wrap-right--editor-media-wrap-right
    • discovery--editor-note
    • file--document-filled
    • file--document
    • files--documents
    • minus--editor-divider

    Updated legacy icons to map to new icons via the icon facade:

    • document → file
    • document-filled → file
    • documents → files
    • editor/divider → minus
    • editor/media-wrap-left → content-wrap-left
    • editor/media-wrap-right → content-wrap-right
    • editor/note → discovery

22.24.0

Minor Changes

22.23.0

Minor Changes

22.22.0

Minor Changes

22.21.0

Minor Changes

Patch Changes

22.20.2

Patch Changes

22.20.1

Patch Changes

22.20.0

Minor Changes

  • #147410, (opens new window) 7300bd8281c70, (opens new window) - This release adds a supplementary set of icons to @atlaskit/icon.

    Added:

    @atlaskit/icon/core

    • api
    • arrow-down-left
    • arrow-down-right
    • arrow-up-left
    • assets
    • border
    • border-weight-medium
    • border-weight-thick
    • border-weight-thin
    • border
    • calendar-plus
    • card
    • chat-widget
    • clipboard
    • curly-brackets
    • data-number
    • data-string
    • emoji-casual
    • emoji-neutral
    • emoji-remove
    • field-alert
    • field-checkbox-group
    • field-dropdown
    • field-radio-group
    • form
    • glasses
    • image-fullscreen
    • image-inline
    • image-scaled
    • markdown
    • person-remove
    • person-warning
    • project-status
    • radio-checked
    • radio-unchecked
    • screen-plus
    • sidebar-left
    • sidebar-right
    • smart-link-card
    • smart-link-embed
    • smart-link-inline
    • smart-link-list
    • smart-link
    • status-verified
    • summarize
    • support
    • table-cell-clear
    • table-cell-merge
    • table-cell-split
    • table-column-add-left
    • table-column-add-right
    • table-column-delete
    • table-column-move-left
    • table-column-move-right
    • table-columns-distribute
    • table-row-add-above
    • table-row-add-below
    • table-row-delete
    • table-row-move-down
    • table-row-move-up
    • task-in-progress
    • task-to-do
    • text-shorten
    • text-wrap
    • translate
    • video-skip-backward-ten
    • video-skip-forward-ten
    • video-stop-overlay
    • video-stop

    Updated:

    @atlaskit/icon/core

    • edit
    • link-broken
    • link-external
    • thumbs-down
    • thumbs-up

Patch Changes

22.19.0

Minor Changes

22.18.1

Patch Changes

  • Updated dependencies

22.18.0

Minor Changes

  • #140548, (opens new window) c66b92f724af1, (opens new window) - ### Summary:

    • Fixes issue where icons with arrows sometimes rendered incorrectly.
    • Adds and updates some icons used in Editor.

    Added:

    @atlaskit/icon/core

    • highlight
    • layout-one-column

    Updated:

    @atlaskit/icon/core

    • text-style: now feature smaller text with room for a color indicator underneath.
    • Icons containing arrows have corrected paths

Patch Changes

22.17.0

Minor Changes

22.16.1

Patch Changes

22.16.0

Minor Changes

22.15.2

Patch Changes

22.15.1

Patch Changes

  • #135508, (opens new window) 7a69ad1e19510, (opens new window) - Reverts the removal of several icon entrypoints from @atlaskit/icon/core and @atlaskit/icon/utility:

    Core icons (from @atlaskit/icon/core):

    • bulleted-list
    • expand
    • collapse

    Core migration icons (from @atlaskit/icon/core/migration):

    • app-switcher--switcher
    • bulleted-list--bullet-list
    • bulleted-list--editor-bullet-list
    • collapse
    • collapse--editor-collapse
    • expand--editor-expand
    • expand--editor-image-resize
    • expand--image-resize
    • maximize--media-services-actual-size
    • minimize--media-services-fit-to-page
    • minimize--vid-full-screen-off
    • phone--hipchat-dial-out

    Utility migration icons (from @atlaskit/icon/core/utility/migration):

    • check-circle
    • check-circle--editor-success

    These restored entrypoints match the designs from the previous release.

    Core and Utility icons that were re-named in the previous release were not reverted to their previous designs to prevent regressions in experiences that have updated to use the new designs.

22.15.0

Minor Changes

  • #133643, (opens new window) 1ab5ca9bddc97, (opens new window) -

    Warning:

    This release erroneously removed a number of entrypoints that should not have been removed in a minor release. Please stay on 22.14.2, or roll forward to 22.15.1, which adds back the removed entrypoints with the closest equivalent icons from the new set.

    Summary

    This release adds a huge new set of icons to @atlaskit/icon/core and @atlaskit/icon/utility, including replacements for legacy Editor, Jira and Media icons.

    To see how legacy icons from @atlaskit/icon/glyph map to these new icons, see the migration map in @atlaskit/icon/migration-map.

    Added:

    @atlaskit/icon/core

    • key-result
    • people-group
    • merge-failure
    • merge-success
    • text
    • sort-descending
    • sort-ascending
    • minus
    • grow-horizontal
    • expand-horizontal
    • collapse-horizontal
    • expand-vertical
    • collapse-vertical
    • grow-vertical
    • shrink-vertical
    • refresh
    • note
    • discovery
    • eye-open-strikethrough
    • file
    • files
    • video-pause-overlay
    • video-play-overlay
    • video-next-overlay
    • video-previous-overlay
    • notification-muted
    • plus-square
    • cash
    • defect
    • devices
    • list-checklist
    • magic-wand
    • pulse
    • minus-square
    • ticket
    • tools
    • wallet
    • wrench
    • on-call
    • edit-bulk
    • objective
    • target
    • scales
    • data-flow
    • theme
    • paint-bucket
    • paint-roller
    • paint-brush
    • pen
    • projection-screen
    • paint-palette
    • field
    • field-text
    • operations
    • text-bold
    • text-italic
    • list-numbered
    • text-indent-left
    • text-indent-right
    • layout-two-columns
    • layout-two-columns-sidebar-left
    • layout-two-columns-sidebar-right
    • layout-three-columns
    • layout-three-columns-sidebars
    • content-align-left
    • content-align-center
    • content-align-right
    • content-wrap-left
    • content-wrap-right
    • content-width-narrow
    • content-width-wide
    • tree
    • takeout-food
    • basketball
    • vehicle-car

    @atlaskit/icon/utility

    • success
    • arrow-down
    • arrow-left
    • arrow-right
    • arrow-up
    • drag-handle

    Renamed:

    @atlaskit/icon/core

    • list-bulleted → bulleted list
    • shrink-diagonal → minimize
    • grow-diagonal → maximize
    • shrink-horizontal → collapse
    • maximize → expand
    • success → check-circle

    @atlaskit/icon/utility

    • success → check-circle

    Updated:

    @atlaskit/icon/core

    • check-circle
    • ai-chat
    • comment
    • comment-add
    • person
    • person-add
    • person-added
    • person-offboard
    • lock-locked
    • lock-unlocked
    • check-mark
    • checkbox-checked
    • issue
    • issues
    • scorecard
    • task
    • tasks
    • branch
    • pull-request
    • add
    • minimize
    • fullscreen-exit
    • commit
    • office-building
    • department
    • text-style
    • eye-open
    • eye-open-filled
    • notification
    • arrow-up-right

    @atlaskit/icon/utility

    • chevron-right
    • chevron-down
    • chevron-left
    • chevron-up
    • lock-locked
    • lock-unlocked
    • check-circle
    • check-mark

    Removed entrypoints:

    @atlaskit/icon/core

    • bulleted-list
    • expand
    • collapse

    @atlaskit/icon/core/migration

    • app-switcher--switcher
    • bulleted-list--bullet-list
    • bulleted-list--editor-bullet-list
    • collapse
    • collapse--editor-collapse
    • expand--editor-expand
    • expand--editor-image-resize
    • expand--image-resize
    • maximize--media-services-actual-size
    • minimize--media-services-fit-to-page
    • minimize--vid-full-screen-off
    • phone--hipchat-dial-out

    @atlaskit/icon/core/utility/migration

    • check-circle
    • check-circle--editor-success

22.14.2

Patch Changes

22.14.1

Patch Changes

22.14.0

Minor Changes

22.13.0

Minor Changes

22.12.0

Minor Changes

  • #127511, (opens new window) db30e29344013, (opens new window) - Widening range of react and react-dom peer dependencies from ^16.8.0 || ^17.0.0 || ~18.2.0 to 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.3 as well as to have a consistent peer dependency range for react and react-dom for /platform packages.

Patch Changes

  • Updated dependencies

22.11.1

Patch Changes

22.11.0

Minor Changes

22.10.0

Minor Changes

22.9.0

Minor Changes

22.8.0

Minor Changes

  • #124884, (opens new window) 3108a1a229e07, (opens new window) - - Icons in @atlaskit/icon/glyph can now switch to updated designs behind a feature flag.
    • SVGs in /svgs, used by icons in @atlaskit/icon/glyph, have been re-optimised with the latest version of SVGO; some slight changes to SVG code or subpixel aliasing may occur

22.7.0

Minor Changes

Patch Changes

22.6.0

Minor Changes

22.5.1

Patch Changes

  • Updated dependencies

22.5.0

Minor Changes

  • #114987, (opens new window) 4fdcfc2b65ce0, (opens new window) - - Added experimental new variants of the new icon components with legacy fallbacks built in. These are available at core/migration and utility/migration and are generated based on a new migration mapping, available at @atlaskit/icon/UNSAFE_migration-map.
    • Updated the oldName value in metadata-core and metadata-utility to contain an array of legacy icon IDs, generated from the information in the migration map.

22.4.1

Patch Changes

22.4.0

Minor Changes

22.3.2

Patch Changes

22.3.1

Patch Changes

22.3.0

Minor Changes

  • #95202, (opens new window) 80507e249e92, (opens new window) - Adds new experimental icons at the entrypoints @atlaskit/icon/core/* and @atlaskit/icon/utility/*, as well as a new IconTile component (compatible with global icons).

    These new components are experimental, and subject to change or removal in minor or patch releases.

Patch Changes

  • Updated dependencies

22.2.0

Minor Changes

22.1.1

Patch Changes

22.1.0

Minor Changes

22.0.2

Patch Changes

22.0.1

Patch Changes

22.0.0

Major Changes

21.12.8

Patch Changes

21.12.7

Patch Changes

21.12.6

Patch Changes

21.12.5

Patch Changes

21.12.4

Patch Changes

21.12.3

Patch Changes

21.12.2

Patch Changes

21.12.1

Patch Changes

21.12.0

Minor Changes

Patch Changes

  • Updated dependencies

21.11.5

Patch Changes

  • Updated dependencies

21.11.4

Patch Changes

  • Updated dependencies

21.11.3

Patch Changes

  • Updated dependencies

21.11.2

Patch Changes

  • Updated dependencies

21.11.1

Patch Changes

21.11.0

Minor Changes

21.10.8

Patch Changes

21.10.7

Patch Changes

  • Updated dependencies

21.10.6

Patch Changes

  • Updated dependencies

21.10.5

Patch Changes

  • Updated dependencies

21.10.4

Patch Changes

  • Updated dependencies

21.10.3

Patch Changes

21.10.2

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

21.10.1

Patch Changes

  • Updated dependencies

21.10.0

Minor Changes

Patch Changes

  • Updated dependencies

21.9.3

Patch Changes

21.9.2

Minor Changes

WRONG RELEASE TYPE - DON'T USE

Patch Changes

  • 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

21.9.1

Patch Changes

  • Updated dependencies

21.9.0

Minor Changes

Patch Changes

  • Updated dependencies

21.8.1

Patch Changes

  • Updated dependencies

21.8.0

Minor Changes

  • #13864, (opens new window) 22b8dd3f590, (opens new window) - Instrumented Icon 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.

  • 88ff832bd2b, (opens new window) - Add @atlaskit/icon/glyph/editor/file-preview to atlaskit/icon package for media group toolbar

Patch Changes

  • Updated dependencies

21.7.4

Patch Changes

21.7.3

Patch Changes

21.7.2

Patch Changes

21.7.1

Patch Changes

21.7.0

Minor Changes

Patch Changes

21.6.1

Patch Changes

21.6.0

Minor Changes

21.5.1

Patch Changes

21.5.0

Minor Changes

Patch Changes

21.4.0

Minor Changes

Patch Changes

21.3.0

Minor Changes

  • #8178, (opens new window) b9265389fa0, (opens new window) - Icon now exposes a base icon via the @atlaskit/icon/base entrypoint. This is used in all generated glyphs inside the icon package.

  • 83944ca2cf2, (opens new window) - Icon now ships with cjs, esm, and es2019 bundles for components and utils exported in the icon package. Glyphs unfortunately aren't included and still only export cjs bundles.

  • 6ef8824baee, (opens new window) - - Icon now uses React.memo() to stop unnecessary re-renders.

    • A bug in the types for icon sizes has been resolved

    This change also includes a number of quality of life fixes as part of lite mode.

    Internal changes

    • class components have been changed to functional components
    • styled-components has been removed as a peer dependency
    • @emotion/core has been added a direct dependency, base components now use emotion for styling
    • An internal gradient function insertDynamicGradientId has been removed from the runtime
    • Enzyme removed in favour of RTL

    Updating tests

    Tests that rely on enzyme may have issues with this update. We've mostly seen issues with one of the following cases.

    Can't find internal react test id

    Because icon is now wrapped in memo you won't be able to easily find it. This code will fail:

    import BookIcon from '@atlaskit/icon/glyph/book'; <BookIcon />; wrapper.find('BookIcon');

    As a fix you can add memo to the target:

    wrapper.find('Memo(BookIcon)');

    Even better, use the test id.

    <BookIcon testId="book-icon" />; wrapper.find('[data-testid="book-icon"]');

    Treating the icon as a button

    Icon hasn't had an onClick handler since many major versions. This code will fail:

    const Example = () => <Button testId="test-id" iconBefore={<SomeGlyph />} />; // in some teat wrapper.find(SomeGlyph).click(); // OR wrapper.find('SomeGlyph').click();

    As a fix you can target the button instead:

    wrapper.find('[data-testid="test-id"]').click();

Patch Changes

  • 0741b1556f6, (opens new window) - All icon glpyhs are now built without inline extends helpers, reducing their bundlesize.
  • 8d6c79b9055, (opens new window) - Typedefs of glyphs have been updated to reflect an API change that occured in version 15. For context, onClick was removed as a functional prop but it was still supported by the types. This may have resulted in a confusing developer experience although the fundamental behaviour has been consistent since version 15.

21.2.4

Patch Changes

21.2.3

Patch Changes

21.2.2

Patch Changes

21.2.1

Patch Changes

  • #7458, (opens new window) bc896a20b0, (opens new window) - Add a missing codemod for the entrypoint change in 21.2.0


    Running the codemod cli

    To run the codemod: You first need to have the latest version installed before you can run the codemod

    yarn upgrade @atlaskit/PACKAGE@^VERSION

    Once upgraded, use the Atlaskit codemod-cli;

    npx @atlaskit/codemod-cli --parser [PARSER] --extensions [FILE_EXTENSIONS] [TARGET_PATH]

    Or run npx @atlaskit/codemod-cli -h for more details on usage. For Atlassians, refer to this doc, (opens new window) for more details on the codemod CLI.

21.2.0

Minor Changes

21.1.4

Patch Changes

21.1.3

Patch Changes

  • Updated dependencies

21.1.2

Patch Changes

21.1.1

Patch Changes

21.1.0

Minor Changes

21.0.3

Patch Changes

21.0.2

Patch Changes

21.0.1

Patch Changes

21.0.0

Major Changes

Patch Changes

  • Updated dependencies

20.1.2

Patch Changes

20.1.1

Patch Changes

20.1.0

Minor Changes

Patch Changes

  • [patch]fd5292fd5a, (opens new window):

    Corrects accessibility behavior for wrapping span. It now will now:

    • conditionally set the aria-label if label is defined
    • conditionally set the role to either img if label is defined, or presentation if it is not defined- Updated dependencies 66dcced7a0, (opens new window):
  • Updated dependencies fd5292fd5a, (opens new window):

  • Updated dependencies eea5e9bd8c, (opens new window):

    • @atlaskit/docs@8.4.0
    • @atlaskit/icon-file-type@5.0.3
    • @atlaskit/icon-object@5.0.3
    • @atlaskit/icon-priority@5.0.3
    • @atlaskit/logo@12.3.3
    • @atlaskit/button@13.3.9
    • @atlaskit/dynamic-table@13.7.2
    • @atlaskit/modal-dialog@10.5.4
    • @atlaskit/section-message@4.1.7
    • @atlaskit/textfield@3.1.9
    • @atlaskit/tooltip@15.2.5

20.0.2

Patch Changes

20.0.1

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/dynamic-table@13.6.2
    • @atlaskit/icon-file-type@5.0.2
    • @atlaskit/icon-object@5.0.2
    • @atlaskit/icon-priority@5.0.2
    • @atlaskit/logo@12.3.2
    • @atlaskit/modal-dialog@10.5.2
    • @atlaskit/section-message@4.1.5
    • @atlaskit/textfield@3.1.6
    • @atlaskit/theme@9.5.1
    • @atlaskit/tooltip@15.2.3

20.0.0

Major Changes

Patch Changes

  • @atlaskit/logo@12.3.1
  • @atlaskit/modal-dialog@10.5.1
  • @atlaskit/section-message@4.1.4
  • @atlaskit/docs@8.3.1
  • @atlaskit/button@13.3.6
  • @atlaskit/textfield@3.1.5
  • @atlaskit/tooltip@15.2.2

19.1.0

Minor Changes

Patch Changes

19.0.11

Patch Changes

19.0.10

Patch Changes

19.0.9

Patch Changes

19.0.8

Patch Changes

  • [patch]f9b5e24662, (opens new window):

    @atlaskit/icon-file-type and @atlaskit/icon-object have been converted to TypeScript to provide static typing. Flow types are no longer provided. No API or bahavioural changes.

19.0.7

Patch Changes

  • [patch]3c7bee089a, (opens new window):

    @atlaskit/icon-priority has been converted to TypeScript to provide static typing. Flow types are no longer provided. No API or bahavioural changes.

19.0.6

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

19.0.5

Patch Changes

19.0.4

Patch Changes

19.0.3

Patch Changes

19.0.2

19.0.1

Patch Changes

19.0.0

Major Changes

  • [major]06326ef3f7, (opens new window):

    @atlaskit/icon has been converted to TypeScript to provide static typing. Flow types are no longer provided. No API or bahavioural changes.

18.0.5

Patch Changes

18.0.4

Patch Changes

18.0.3

Patch Changes

18.0.2

Patch Changes

18.0.1

  • Updated dependencies 67f06f58dd, (opens new window):
    • @atlaskit/icon-file-type@4.0.3
    • @atlaskit/icon-object@4.0.3
    • @atlaskit/icon-priority@4.0.3
    • @atlaskit/tooltip@15.0.0

18.0.0

Major Changes

  • [major]cfc3c8adb3, (opens new window):
    • @atlaskit/icon has been converted to TypeScript to provide static typing. Flow types are no longer provided. No API or bahavioural changes.

17.2.0

  • [minor]70862830d6, (opens new window):
    • 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.

17.1.3

  • [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

17.1.2

  • Updated dependencies 06c5cccf9d, (opens new window):
    • @atlaskit/icon-file-type@4.0.1
    • @atlaskit/icon-object@4.0.1
    • @atlaskit/icon-priority@4.0.1
    • @atlaskit/modal-dialog@10.0.0

17.1.1

17.1.0

17.0.2

17.0.1

17.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.

16.0.9

  • Updated dependencies 9c0b4744be, (opens new window):
    • @atlaskit/docs@7.0.3
    • @atlaskit/button@12.0.3
    • @atlaskit/dynamic-table@11.0.3
    • @atlaskit/field-text@8.0.3
    • @atlaskit/icon-file-type@3.0.8
    • @atlaskit/icon-object@3.0.8
    • @atlaskit/icon-priority@3.0.5
    • @atlaskit/logo@10.0.4
    • @atlaskit/modal-dialog@8.0.7
    • @atlaskit/section-message@2.0.3
    • @atlaskit/tooltip@13.0.4
    • @atlaskit/theme@8.1.7

16.0.8

  • Updated dependencies 1e826b2966, (opens new window):
    • @atlaskit/docs@7.0.2
    • @atlaskit/dynamic-table@11.0.2
    • @atlaskit/field-text@8.0.2
    • @atlaskit/icon-file-type@3.0.7
    • @atlaskit/icon-object@3.0.7
    • @atlaskit/icon-priority@3.0.4
    • @atlaskit/logo@10.0.3
    • @atlaskit/modal-dialog@8.0.6
    • @atlaskit/section-message@2.0.2
    • @atlaskit/theme@8.1.6
    • @atlaskit/tooltip@13.0.3
    • @atlaskit/button@12.0.0

16.0.7

16.0.6

16.0.5

  • Updated dependencies 9d5cc39394, (opens new window):
    • @atlaskit/docs@7.0.1
    • @atlaskit/dynamic-table@11.0.1
    • @atlaskit/field-text@8.0.1
    • @atlaskit/icon-file-type@3.0.5
    • @atlaskit/icon-object@3.0.5
    • @atlaskit/icon-priority@3.0.2
    • @atlaskit/logo@10.0.1
    • @atlaskit/modal-dialog@8.0.2
    • @atlaskit/section-message@2.0.1
    • @atlaskit/theme@8.0.1
    • @atlaskit/tooltip@13.0.1
    • @atlaskit/button@11.0.0

16.0.4

  • Updated dependencies 76299208e6, (opens new window):
    • @atlaskit/button@10.1.3
    • @atlaskit/icon-file-type@3.0.4
    • @atlaskit/icon-object@3.0.4
    • @atlaskit/icon-priority@3.0.1
    • @atlaskit/docs@7.0.0
    • @atlaskit/dynamic-table@11.0.0
    • @atlaskit/field-text@8.0.0
    • @atlaskit/logo@10.0.0
    • @atlaskit/modal-dialog@8.0.0
    • @atlaskit/section-message@2.0.0
    • @atlaskit/theme@8.0.0
    • @atlaskit/tooltip@13.0.0

16.0.3

16.0.2

16.0.1

16.0.0

15.0.3

15.0.2

  • Updated dependencies 58b84fa, (opens new window):
    • @atlaskit/button@10.1.1
    • @atlaskit/dynamic-table@10.0.22
    • @atlaskit/field-text@7.0.18
    • @atlaskit/icon-file-type@3.0.2
    • @atlaskit/icon-object@3.0.2
    • @atlaskit/logo@9.2.6
    • @atlaskit/modal-dialog@7.1.1
    • @atlaskit/section-message@1.0.14
    • @atlaskit/theme@7.0.1
    • @atlaskit/tooltip@12.1.13
    • @atlaskit/docs@6.0.0

15.0.1

  • Updated dependencies d13242d, (opens new window):
    • @atlaskit/docs@5.2.3
    • @atlaskit/button@10.0.4
    • @atlaskit/dynamic-table@10.0.20
    • @atlaskit/field-text@7.0.16
    • @atlaskit/icon-file-type@3.0.1
    • @atlaskit/icon-object@3.0.1
    • @atlaskit/logo@9.2.5
    • @atlaskit/modal-dialog@7.0.14
    • @atlaskit/section-message@1.0.13
    • @atlaskit/tooltip@12.1.12
    • @atlaskit/theme@7.0.0

15.0.0

  • [major]ab9b69c, (opens new window):
    • Removed onClick prop as icon is only a presentational placeholder. Please wrap your icon in a Button or a Link component and add onClick to that instead.

14.6.1

  • Updated dependencies 6998f11, (opens new window):
    • @atlaskit/docs@5.2.1
    • @atlaskit/dynamic-table@10.0.18
    • @atlaskit/field-text@7.0.15
    • @atlaskit/icon-file-type@2.0.1
    • @atlaskit/icon-object@2.0.1
    • @atlaskit/logo@9.2.4
    • @atlaskit/modal-dialog@7.0.12
    • @atlaskit/section-message@1.0.11
    • @atlaskit/theme@6.2.1
    • @atlaskit/tooltip@12.1.10
    • @atlaskit/button@10.0.0

14.6.0

14.5.0

14.4.0

  • [patch]29b160f, (opens new window):

    • Simplify the icons build process

    Icons no longer need a custom build step to be accurate on npm. This has come about by renaming the es5 folder to cjs. If you weren't reaching into our package's internals, you shouldn't notice.

  • [minor]62a7c37, (opens new window):

    • Add metadata export

    In trying to align the icons packages, the core @atlaskit/icon package now exports metadata, which includes information about every icon in this package.

  • Updated dependencies b29bec1, (opens new window):

  • Updated dependencies 80304f0, (opens new window):

    • @atlaskit/icon-file-type@2.0.0
    • @atlaskit/icon-object@2.0.0
    • @atlaskit/icon-build-process@0.1.0

14.3.0

14.2.1

14.2.0

14.1.0

14.0.3

14.0.2

14.0.1

14.0.0

  • [major] Remove product logo icons from icons, recommend using @atlaskit/logo instead 65c6514, (opens new window)
    • The following logo exports have been removed:
      • AtlassianIcon
      • BitbucketIcon
      • ConfluenceIcon
      • HipchatIcon
      • JiraCoreIcon
      • JiraServiceDeskIcon
      • JiraSoftwareIcon
      • JiraIcon
      • StatuspageIcon
      • StrideIcon
    • Check the Upgrade Guide, (opens new window) for more information.
  • [patch] Updated dependencies 709b239, (opens new window)
    • @atlaskit/icon-file-type@1.0.0
    • @atlaskit/icon-object@1.0.0

13.9.0

13.8.1

13.8.0

13.7.0

13.6.1

13.6.0

  • [minor] Add static displayName prop to all icons. This results in accurate display names even after minifying and uglifying the icon variable names. a75db9d, (opens new window)

13.5.0

13.4.0

13.3.0

13.2.6

13.2.5

  • [patch] Updated dependencies df22ad8, (opens new window)
    • @atlaskit/theme@6.0.0
    • @atlaskit/tooltip@12.0.9
    • @atlaskit/modal-dialog@6.0.9
    • @atlaskit/field-text@7.0.6
    • @atlaskit/button@9.0.6
    • @atlaskit/docs@5.0.6

13.2.4

13.2.3

13.2.2

  • [patch] Updated dependencies acd86a1, (opens new window)
    • @atlaskit/tooltip@12.0.4
    • @atlaskit/button@9.0.4
    • @atlaskit/theme@5.1.2
    • @atlaskit/field-text@7.0.3
    • @atlaskit/docs@5.0.2
    • @atlaskit/modal-dialog@6.0.5

13.2.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/tooltip@12.0.3
    • @atlaskit/modal-dialog@6.0.4
    • @atlaskit/field-text@7.0.2
    • @atlaskit/button@9.0.3
    • @atlaskit/theme@5.1.1

13.2.0

13.1.1

13.1.0

13.0.0

  • [major] Updates to React ^16.4.0 7edb866, (opens new window)
  • [major] Updated dependencies 563a7eb, (opens new window)
    • @atlaskit/tooltip@11.0.0
    • @atlaskit/modal-dialog@6.0.0
    • @atlaskit/field-text@7.0.0
    • @atlaskit/button@9.0.0
    • @atlaskit/theme@5.0.0
    • @atlaskit/docs@5.0.0
  • [major] Updated dependencies 7edb866, (opens new window)
    • @atlaskit/tooltip@11.0.0
    • @atlaskit/modal-dialog@6.0.0
    • @atlaskit/field-text@7.0.0
    • @atlaskit/button@9.0.0
    • @atlaskit/theme@5.0.0
    • @atlaskit/docs@5.0.0

12.8.0

12.7.0

12.6.2

12.6.1

12.6.0

12.5.1

12.5.0

12.4.0

12.3.1

12.3.0

12.2.0

12.1.2

12.1.1

12.1.0

  • [none] Updated dependencies 9d20f54, (opens new window)
    • @atlaskit/modal-dialog@5.1.0
    • @atlaskit/tooltip@10.2.0
    • @atlaskit/docs@4.1.0
    • @atlaskit/theme@4.0.2
    • @atlaskit/field-text@6.0.2
    • @atlaskit/button@8.1.0

12.0.1

12.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/tooltip@10.0.0
    • @atlaskit/modal-dialog@5.0.0
    • @atlaskit/field-text@6.0.0
    • @atlaskit/button@8.0.0
    • @atlaskit/theme@4.0.0
    • @atlaskit/docs@4.0.0

11.4.0

11.3.2

11.3.1

11.3.0

11.2.0

11.1.0

11.0.1

11.0.0

10.13.0

10.12.2

10.12.1

10.12.0

10.11.0

10.10.1

10.10.0

10.9.3

10.9.2

10.9.1

10.9.0

10.8.0

10.7.1

10.7.0

10.6.0

10.5.0

10.4.0 (2017-12-08)

10.3.3 (2017-12-05)

10.3.2 (2017-11-23)

10.3.1 (2017-11-20)

10.3.0 (2017-11-16)

10.2.0 (2017-11-15)

10.1.3 (2017-11-09)

10.1.2 (2017-10-26)

10.1.1 (2017-10-22)

10.1.0 (2017-10-10)

10.0.0 (2017-09-25)

9.0.1 (2017-09-15)

9.0.0 (2017-09-11)

8.1.0 (2017-08-28)

8.0.1 (2017-08-21)

8.0.0 (2017-08-17)

7.1.0 (2017-08-11)

7.0.2 (2017-07-24)

7.0.1 (2017-06-28)

7.0.0 (2017-06-08)

  • fix; refactored icon module and build process (a68abba, (opens new window))
  • breaking; Module no longer exports named exports. Import a specific icon like so: import AtlassianIcon from '@atlaskit/icon/glyph/atlassian';
  • ISSUES CLOSED: AK-2388

6.6.0 (2017-05-31)

6.5.4 (2017-05-12)

6.5.3 (2017-05-10)

6.5.2 (2017-04-27)

6.4.0 (2017-04-26)

6.3.2 (2017-04-24)

6.3.1 (2017-04-20)

6.3.0 (2017-04-20)

6.1.0 (2017-04-19)

6.0.1 (2017-04-18)

5.0.0 (2017-03-28)

  • fix; remove icon baseline alignment story (876c682, (opens new window))
  • fix; use new 24px artboard size in 'too big' story (404e6e0, (opens new window))
  • feature; bulk icon update (76367b5, (opens new window))
  • feature; update default icon sizes (90850bd, (opens new window))
  • breaking; default SVG artboard sizes are now 24px, with some icons such as editor on the 16px artboard.
  • breaking; icons are no longer guaranteed to baseline-align with sibling content. use flexbox to control alignment.
  • ISSUES CLOSED: AK-1924
  • breaking; This icon released contains a large amount of breaking naming changes due to deletions and renames. Please update to this new major version and ensure your application is using the correct icon exports via linting.
  • ISSUES CLOSED: AK-1924

3.0.3 (2017-03-23)

3.0.1 (2017-03-21)

3.0.0 (2017-03-03)

  • feature; move service desk icons out of the servicedesk directory (f959e6b, (opens new window))
  • breaking; Service desk icons now live in the root icons directory
  • ISSUES CLOSED: AK-1858

2.5.5 (2017-02-28)

2.5.3 (2017-02-28)

2.5.3 (2017-02-28)

2.5.2 (2017-02-28)

2.5.1 (2017-02-27)

2.4.3 (2017-02-20)

2.4.1 (2017-02-20)

2.4.0 (2017-02-16)

2.3.3 (2017-02-07)

2.3.1 (2017-02-06)

Was this page helpful?
We use this feedback to improve our documentation.
© 2026 AtlassianTrademark, (opens new window)Privacy, (opens new window)License