Form

A form allows people to input information.

17.2.1

Patch Changes

  • Updated dependencies

17.2.0

Minor Changes

Patch Changes

  • Updated dependencies

17.1.2

Patch Changes

17.1.1

Patch Changes

17.1.0

Minor Changes

  • d82e6f76528ab, (opens new window) - Add direct subpath package exports as part of the linking-platform, search, media, and design-system barrel-removal (de-barrel) migration.

    These packages now expose their individual modules via explicit package.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

17.0.0

Major Changes

  • 11ace7dc73878, (opens new window) - Apply Volt entry-point and multi-export standards via volt-migrate-package. This is a major change to @atlaskit/form: the package exports map has been restructured so every public subpath now resolves directly to its ./src/* implementation instead of going through an intermediate ./src/entry-points/* re-export. It also introduces new public subpaths: @atlaskit/form/error-message, @atlaskit/form/helper-message, @atlaskit/form/label/default, @atlaskit/form/legend, @atlaskit/form/message-wrapper, @atlaskit/form/valid-message.

    Why this is breaking

    Because each subpath now points straight at its implementation module, a subpath and the package root can resolve to the same module instance. Consumers that deep-import the internal entry-points/* files, or that jest.mock() a specific subpath, may observe changed resolution/behaviour and need updating.

    Internally, components that were export default are now named exports (CharacterCounter, CharacterCounterField, CheckboxField, Fieldset, FormFooter, FormHeader, FormSection, RangeField, RequiredAsterisk). The published subpaths and the package root already exposed these as named exports, so their public shape is unchanged; @atlaskit/form/field and @atlaskit/form/form keep their default exports.

    Migration — public imports are unchanged

    Importing the published subpaths (or the package root) continues to work as before:

    // Still valid — no change required import { CheckboxField } from '@atlaskit/form/checkbox-field';

    If you were reaching into the internal entry-point modules, switch to the public subpath:

    -import { CheckboxField } from '@atlaskit/form/entry-points/checkbox-field'; +import { CheckboxField } from '@atlaskit/form/checkbox-field';

    Before / after exports map

    "exports": { ".": "./src/index.tsx", - "./character-counter": "./src/entry-points/character-counter.tsx", + "./character-counter": "./src/character-counter.tsx", - "./character-counter-field": "./src/entry-points/character-counter-field.tsx", + "./character-counter-field": "./src/character-counter-field.tsx", - "./checkbox-field": "./src/entry-points/checkbox-field.tsx", + "./checkbox-field": "./src/checkbox-field.tsx", - "./CheckboxField": "./src/entry-points/checkbox-field.tsx", + "./CheckboxField": "./src/checkbox-field.tsx", + "./error-message": "./src/error-message.tsx", - "./field": "./src/entry-points/field.tsx", + "./field": "./src/field.tsx", - "./Field": "./src/entry-points/field.tsx", + "./Field": "./src/field.tsx", - "./fieldset": "./src/entry-points/fieldset.tsx", + "./fieldset": "./src/fieldset.tsx", - "./Fieldset": "./src/entry-points/fieldset.tsx", + "./Fieldset": "./src/fieldset.tsx", - "./form": "./src/entry-points/form.tsx", + "./form": "./src/form.tsx", - "./Form": "./src/entry-points/form.tsx", + "./Form": "./src/form.tsx", - "./form-footer": "./src/entry-points/form-footer.tsx", + "./form-footer": "./src/form-footer.tsx", - "./form-header": "./src/entry-points/form-header.tsx", + "./form-header": "./src/form-header.tsx", - "./form-section": "./src/entry-points/form-section.tsx", + "./form-section": "./src/form-section.tsx", - "./FormFooter": "./src/entry-points/form-footer.tsx", + "./FormFooter": "./src/form-footer.tsx", - "./FormHeader": "./src/entry-points/form-header.tsx", + "./FormHeader": "./src/form-header.tsx", - "./FormSection": "./src/entry-points/form-section.tsx", + "./FormSection": "./src/form-section.tsx", + "./helper-message": "./src/helper-message.tsx", "./label": "./src/entry-points/label.tsx", "./Label": "./src/entry-points/label.tsx", + "./label/default": "./src/label.tsx", + "./legend": "./src/legend.tsx", + "./message-wrapper": "./src/message-wrapper.tsx", "./messages": "./src/entry-points/messages.tsx", "./Messages": "./src/entry-points/messages.tsx", - "./range-field": "./src/entry-points/range-field.tsx", + "./range-field": "./src/range-field.tsx", - "./RangeField": "./src/entry-points/range-field.tsx", + "./RangeField": "./src/range-field.tsx", - "./required-asterisk": "./src/entry-points/required-asterisk.tsx", + "./required-asterisk": "./src/required-asterisk.tsx", "./types": "./src/types.tsx", - "./use-form-state": "./src/entry-points/use-form-state.tsx", + "./use-form-state": "./src/use-form-state.tsx", + "./valid-message": "./src/valid-message.tsx", }

    The ./label and ./messages shims remain in place and their re-exports are now marked @deprecated, each pointing at the per-export subpath to use instead — ./label/default for Label, ./legend for Legend, and ./error-message, ./helper-message, ./message-wrapper, ./valid-message for the message components. VOLTC-139 tracks their removal.

Patch Changes

16.1.5

Patch Changes

  • Updated dependencies

16.1.4

Patch Changes

  • Updated dependencies

16.1.3

Patch Changes

  • Updated dependencies

16.1.2

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

16.0.1

Patch Changes

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

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

15.5.2

Patch Changes

15.5.1

Patch Changes

  • Updated dependencies

15.5.0

Minor Changes

Patch Changes

  • Updated dependencies

15.4.2

Patch Changes

  • Updated dependencies

15.4.1

Patch Changes

  • Updated dependencies

15.4.0

Minor Changes

15.3.7

Patch Changes

  • dcf8070f2b6ca, (opens new window) - Cleans-up internal platform feature flag platform_dst_form_fix_isrequired_effect. Resolving a bug where form fields were not marked as required when the isRequired prop was changed.

15.3.6

Patch Changes

  • Updated dependencies

15.3.5

Patch Changes

  • Updated dependencies

15.3.4

Patch Changes

  • Updated dependencies

15.3.3

Patch Changes

  • Updated dependencies

15.3.2

Patch Changes

15.3.1

Patch Changes

  • Updated dependencies

15.3.0

Minor Changes

15.2.0

Minor Changes

  • c6332d9f5e6de, (opens new window) - Introduces standalone CharacterCounter component for more customised cases of character counting on input fields. Use this component in cases where CharacterCounterField is not appropriate such as non-form contexts or customised experiences

15.1.2

Patch Changes

  • Updated dependencies

15.1.1

Patch Changes

15.1.0

Minor Changes

Patch Changes

  • Updated dependencies

15.0.1

Patch Changes

  • 1f2184e410650, (opens new window) - Updates internal useEffect depenedency array to include isRequired. This fixes an issue where validation was not rerun when the prop was dynamically updated.
  • Updated dependencies

15.0.0

Major Changes

  • 903d3e8f3b8ad, (opens new window) - Removes aria-required from use directly on field. It is automatically applied via fieldProps when using isRequired, so this change is purely to ensure people appropriately apply accessibility props to their fields without the false sense of security of an invalid use of aria-required.

Patch Changes

  • Updated dependencies

14.4.0

Minor Changes

  • c19181795ec37, (opens new window) - Introduces CharacterCounterField, a new field component that provides automatic character count validation and display. This component wraps the standard Field with built-in support for minimum and maximum character limits, displaying a real-time character counter to users.

    Key features:

    • Automatic validation for minCharacters and maxCharacters limits
    • Integrated character counter display with error states
    • Customizable messaging for character limit violations via overMaximumMessage, underMaximumMessage, and underMinimumMessage props
    • Seamless integration with existing Field validation through the validate prop
    • Full accessibility support with proper ARIA announcements for screen readers
    • Supports both TextField and TextArea components via render prop pattern

    Example usage:

    <CharacterCounterField name="description" label="Description" maxCharacters={200} minCharacters={10} helperMessage="Provide a brief description" > {({ fieldProps }) => <TextArea {...fieldProps} />} </CharacterCounterField>

    This component simplifies the implementation of character-limited inputs by combining validation, error handling, and counter display in a single, accessible component.

14.3.2

Patch Changes

14.3.1

Patch Changes

  • Updated dependencies

14.3.0

Minor Changes

Patch Changes

  • Updated dependencies

14.2.7

Patch Changes

  • Updated dependencies

14.2.6

Patch Changes

  • Updated dependencies

14.2.5

Patch Changes

  • Updated dependencies

14.2.4

Patch Changes

14.2.3

Patch Changes

  • Updated dependencies

14.2.2

Patch Changes

  • Updated dependencies

14.2.1

Patch Changes

  • Updated dependencies

14.2.0

Minor Changes

14.1.0

Minor Changes

  • ba5410321550c, (opens new window) - Add new streamlined field implementation through the usage of the component prop and it's associated *Message props. This accounts for the majority of field implementations in products and will increase velocity in releasing accessibility improvements to all insteances using this implementation.

14.0.0

Major Changes

  • a225bfa035441, (opens new window) - Adds simplified rendering pattern for the form component. When rendering with JSX as chilren and not a function as children, the HTML form element will be implicitly rendered with props passed down from the ADS form component.

New streamlined form

The majority of uses of our form component look like the following:

<Form onSubmit={(data) => console.log(data)}> {({ formProps }) => ( <form {...formProps} name="form" id="form" data-attribute="abc"> {/* form contents */} </form> )} </Form>

We've provided a way to simplify these use cases. You can move the attributes on the HTML <form> element up to the form component. If they aren't a top-level prop, you can use the formProps prop on the form component. All of the contents will be wrapped within an HTML <form> element that includes all necessary props, including those provided on the form component.

<Form onSubmit={(data) => console.log(data)} name="form" id="form" formProps={{ 'data-attribute': 'abc', }} > {/* form contents */} </Form>

The original implementation still exists and works as it did previously.

Patch Changes

  • Updated dependencies

13.0.0

Major Changes

  • 2eb0f5a39acd6, (opens new window) - Spread props have been removed from the checkbox field and range field components to improve maintenance and consistency of experience for makers.

Patch Changes

  • Updated dependencies

12.7.0

Minor Changes

  • edef4ab21e5c5, (opens new window) - We are testing a new streamlined implementation of the field component behind a feature flag. If this fix is successful it will be available in a later release.

12.6.2

Patch Changes

12.6.1

Patch Changes

12.6.0

Minor Changes

12.5.4

Patch Changes

12.5.3

Patch Changes

  • Updated dependencies

12.5.2

Patch Changes

12.5.1

Patch Changes

  • Updated dependencies

12.5.0

Minor Changes

12.4.1

Patch Changes

  • Updated dependencies

12.4.0

Minor Changes

  • 84cea20e778c3, (opens new window) - We are testing removing spread props for range field behind a feature flag. If this fix is successful it will be implemented in a later release.

12.3.0

Minor Changes

  • c247b696ec62a, (opens new window) - We are testing removing spread props for checkbox field behind a feature flag. If this fix is successful it will be implemented in a later release.

12.2.2

Patch Changes

12.2.1

Patch Changes

  • Updated dependencies

12.2.0

Minor Changes

  • 07de46497864a, (opens new window) - We are testing a new way to render the Form component behind a feature flag. Rendering a Form component with direct JSX elements instead of a function as children will render an HTML form element internally, reducing the boilerplate required for most use cases. If this fix is successful it will be available in a later release.

12.1.1

Patch Changes

  • Updated dependencies

12.1.0

Minor Changes

  • a32c90b3928be, (opens new window) - We are testing a fix to message components behind a feature flag. There was an issue with messages that made them not announce when using screenreaders, this has been fixed by adding a slight delay to render message content. If this fix is successful it will be available in a later release.

12.0.16

Patch Changes

12.0.15

Patch Changes

  • Updated dependencies

12.0.14

Patch Changes

  • Updated dependencies

12.0.13

Patch Changes

12.0.12

Patch Changes

12.0.11

Patch Changes

  • Updated dependencies

12.0.10

Patch Changes

  • Updated dependencies

12.0.9

Patch Changes

  • Updated dependencies

12.0.8

Patch Changes

  • Updated dependencies

12.0.7

Patch Changes

  • Updated dependencies

12.0.6

Patch Changes

12.0.5

Patch Changes

12.0.4

Patch Changes

  • Updated dependencies

12.0.3

Patch Changes

12.0.2

Patch Changes

  • Updated dependencies

12.0.1

Patch Changes

  • Updated dependencies

12.0.0

Major Changes

Patch Changes

  • Updated dependencies

11.2.0

Minor Changes

Patch Changes

  • Updated dependencies

11.1.2

Patch Changes

  • Updated dependencies

11.1.1

Patch Changes

  • Updated dependencies

11.1.0

Minor Changes

Patch Changes

  • Updated dependencies

11.0.3

Patch Changes

11.0.2

Patch Changes

11.0.1

Patch Changes

  • Updated dependencies

11.0.0

Major Changes

10.6.3

Patch Changes

10.6.2

Patch Changes

  • Updated dependencies

10.6.1

Patch Changes

  • Updated dependencies

10.6.0

Minor Changes

Patch Changes

  • Updated dependencies

10.5.12

Patch Changes

10.5.11

Patch Changes

  • Updated dependencies

10.5.10

Patch Changes

  • Updated dependencies

10.5.9

Patch Changes

  • Updated dependencies

10.5.8

Patch Changes

10.5.7

Patch Changes

10.5.6

Patch Changes

10.5.5

Patch Changes

10.5.4

Patch Changes

  • Updated dependencies

10.5.3

Patch Changes

10.5.2

Patch Changes

10.5.1

Patch Changes

  • Updated dependencies

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

10.4.8

Patch Changes

  • Updated dependencies

10.4.7

Patch Changes

  • Updated dependencies

10.4.6

Patch Changes

10.4.5

Patch Changes

  • Updated dependencies

10.4.4

Patch Changes

  • Updated dependencies

10.4.3

Patch Changes

10.4.2

Patch Changes

10.4.1

Patch Changes

  • Updated dependencies

10.4.0

Minor Changes

Patch Changes

  • Updated dependencies

10.3.1

Patch Changes

  • Updated dependencies

10.3.0

Minor Changes

10.2.0

Minor Changes

10.1.1

Patch Changes

10.1.0

Minor Changes

Patch Changes

  • Updated dependencies

10.0.0

Major Changes

Patch Changes

  • Updated dependencies

9.3.1

Patch Changes

  • Updated dependencies

9.3.0

Minor Changes

9.2.0

Minor Changes

9.1.2

Patch Changes

9.1.1

Patch Changes

9.1.0

Minor Changes

9.0.12

Patch Changes

9.0.11

Patch Changes

  • Updated dependencies

9.0.10

Patch Changes

  • Updated dependencies

9.0.9

Patch Changes

  • Updated dependencies

9.0.8

Patch Changes

9.0.7

Patch Changes

9.0.6

Patch Changes

9.0.5

Patch Changes

9.0.4

Patch Changes

9.0.3

Patch Changes

9.0.2

Patch Changes

9.0.1

Patch Changes

  • Updated dependencies

9.0.0

Major Changes

8.11.13

Patch Changes

8.11.12

Patch Changes

8.11.11

Patch Changes

8.11.10

Patch Changes

8.11.9

Patch Changes

8.11.8

Patch Changes

8.11.7

Patch Changes

8.11.6

Patch Changes

8.11.5

Patch Changes

8.11.4

Patch Changes

8.11.3

Patch Changes

8.11.2

Patch Changes

8.11.1

Patch Changes

8.11.0

Minor Changes

Patch Changes

  • Updated dependencies

8.10.0

Minor Changes

8.9.1

Patch Changes

8.9.0

Minor Changes

Patch Changes

8.8.8

Patch Changes

8.8.7

Patch Changes

8.8.6

Patch Changes

8.8.5

Patch Changes

8.8.4

Patch Changes

  • Updated dependencies

8.8.3

Patch Changes

8.8.2

Patch Changes

  • Updated dependencies

8.8.1

Patch Changes

  • Updated dependencies

8.8.0

Minor Changes

8.7.1

Patch Changes

  • Updated dependencies

8.7.0

Minor Changes

Patch Changes

8.6.0

Minor Changes

Patch Changes

  • Updated dependencies

8.5.9

Patch Changes

8.5.8

Patch Changes

  • #24004, (opens new window) 0fbb2840aba, (opens new window) - Add isInvalid prop to @atlastkit/Select. The prop indicates whether if the component is in the error state. If true, it visually shows a red border around the input.

    This replaces validationState to make Select more consistent like other components that uses isInvalid prop.

  • Updated dependencies

8.5.7

Patch Changes

8.5.6

Patch Changes

8.5.5

Patch Changes

  • Updated dependencies

8.5.4

Patch Changes

8.5.3

Patch Changes

  • Updated dependencies

8.5.2

Patch Changes

  • Updated dependencies

8.5.1

Patch Changes

  • Updated dependencies

8.5.0

Minor Changes

Patch Changes

8.4.8

Patch Changes

8.4.7

Patch Changes

  • Updated dependencies

8.4.6

Patch Changes

8.4.5

Patch Changes

8.4.4

Patch Changes

  • Updated dependencies

8.4.3

Patch Changes

8.4.2

Patch Changes

8.4.1

Patch Changes

8.4.0

Minor Changes

Patch Changes

8.3.1

Patch Changes

  • Updated dependencies

8.3.0

Minor Changes

Patch Changes

  • Updated dependencies

8.2.4

Patch Changes

8.2.3

Patch Changes

8.2.2

Patch Changes

8.2.1

Patch Changes

8.2.0

Minor Changes

8.1.7

Patch Changes

8.1.6

Patch Changes

8.1.5

Patch Changes

  • Updated dependencies

8.1.4

Patch Changes

8.1.3

Patch Changes

8.1.2

Patch Changes

8.1.1

Patch Changes

8.1.0

Minor Changes

Patch Changes

8.0.0

Major Changes

Patch Changes

  • Updated dependencies

7.4.1

Patch Changes

7.4.0

Minor Changes

7.3.1

Patch Changes

7.3.0

Minor Changes

Patch Changes

7.2.2

Patch Changes

  • Updated dependencies

7.2.1

Patch Changes

7.2.0

Minor Changes

  • [minor]294c05bcdf, (opens new window):

    Form now exposes a setFieldValue command which enables the ability to imperatively change field values. For example, if you have an input field whos value is concatinated to the next of the next input.

Patch Changes

7.1.5

Patch Changes

7.1.4

Patch Changes

  • Updated dependencies e3f01787dd, (opens new window):
    • @atlaskit/webdriver-runner@0.2.0
    • @atlaskit/button@13.3.8
    • @atlaskit/calendar@9.2.5
    • @atlaskit/checkbox@10.1.9
    • @atlaskit/datetime-picker@9.2.7
    • @atlaskit/dropdown-menu@9.0.1
    • @atlaskit/droplist@10.0.2
    • @atlaskit/modal-dialog@10.5.3
    • @atlaskit/radio@3.1.10
    • @atlaskit/section-message@4.1.6
    • @atlaskit/select@11.0.8
    • @atlaskit/textarea@2.2.5
    • @atlaskit/textfield@3.1.8
    • @atlaskit/toggle@8.1.5
    • @atlaskit/tooltip@15.2.4

7.1.3

Patch Changes

7.1.2

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/calendar@9.2.4
    • @atlaskit/checkbox@10.1.7
    • @atlaskit/datetime-picker@9.2.5
    • @atlaskit/dropdown-menu@8.2.4
    • @atlaskit/droplist@10.0.1
    • @atlaskit/field-radio-group@7.0.1
    • @atlaskit/field-range@8.0.1
    • @atlaskit/icon@20.0.1
    • @atlaskit/modal-dialog@10.5.2
    • @atlaskit/multi-select@14.0.1
    • @atlaskit/radio@3.1.9
    • @atlaskit/section-message@4.1.5
    • @atlaskit/select@11.0.7
    • @atlaskit/single-select@9.0.1
    • @atlaskit/textarea@2.2.4
    • @atlaskit/textfield@3.1.6
    • @atlaskit/theme@9.5.1
    • @atlaskit/toggle@8.1.4
    • @atlaskit/tooltip@15.2.3

7.1.1

Patch Changes

  • Updated dependencies c0102a3ea2, (opens new window):
    • @atlaskit/droplist@10.0.0
    • @atlaskit/field-radio-group@7.0.0
    • @atlaskit/field-range@8.0.0
    • @atlaskit/icon@20.0.0
    • @atlaskit/multi-select@14.0.0
    • @atlaskit/single-select@9.0.0
    • @atlaskit/dropdown-menu@8.2.3
    • @atlaskit/datetime-picker@9.2.4
    • @atlaskit/modal-dialog@10.5.1
    • @atlaskit/section-message@4.1.4
    • @atlaskit/docs@8.3.1
    • @atlaskit/button@13.3.6
    • @atlaskit/calendar@9.2.3
    • @atlaskit/checkbox@10.1.6
    • @atlaskit/radio@3.1.8
    • @atlaskit/select@11.0.6
    • @atlaskit/textfield@3.1.5
    • @atlaskit/tooltip@15.2.2

7.1.0

Minor Changes

  • [minor]ff32b3db47, (opens new window):

    Adds the ability to reset a form to it's default state. This is useful for cases where a user might want to manually clear their information.

Patch Changes

7.0.1

Patch Changes

7.0.0

Major Changes

  • [major]24865cfaff, (opens new window):

    Form has been converted to Typescript. TypeScript consumers will now get static type safety. Flow types are no longer provided. No API changes.

Patch Changes

6.3.2

  • Updated dependencies 30acc30979, (opens new window):
    • @atlaskit/calendar@9.2.1
    • @atlaskit/modal-dialog@10.3.6
    • @atlaskit/select@11.0.0
    • @atlaskit/button@13.3.4
    • @atlaskit/datetime-picker@9.2.1

6.3.1

Patch Changes

6.3.0

Minor Changes

6.2.5

6.2.4

6.2.3

  • Updated dependencies 97bab7fd28, (opens new window):
    • @atlaskit/button@13.3.1
    • @atlaskit/modal-dialog@10.3.1
    • @atlaskit/radio@3.0.18
    • @atlaskit/select@10.1.1
    • @atlaskit/checkbox@10.0.0
    • @atlaskit/docs@8.1.7

6.2.2

Patch Changes

  • [patch]2deee10c17, (opens new window):

    Bugfix - DS-6661 - The componentWillUnmount method is not overridden properly in Form component as it has been misspelled as 'componenWillUnmount'.

6.2.1

Patch Changes

6.2.0

Minor Changes

6.1.12

Patch Changes

  • [patch]097b696613, (opens new window):

    Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving non-relative imports as relative imports

6.1.11

Patch Changes

6.1.10

Patch Changes

6.1.9

Patch Changes

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

    Bumping internal dependency (memoize-one) to latest version (5.1.0). memoize-one@5.1.0 has full typescript support so it is recommended that typescript consumers use it also.

6.1.8

Patch Changes

6.1.7

6.1.6

Patch Changes

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

    Adding a condition to check if the component are referenced in tests running in CI. It reduces the noise and help reading the CI log.

6.1.5

6.1.4

  • Updated dependencies 790e66bece, (opens new window):
    • @atlaskit/button@13.0.11
    • @atlaskit/datetime-picker@8.0.9
    • @atlaskit/modal-dialog@10.0.10
    • @atlaskit/select@10.0.0

6.1.3

6.1.2

  • Updated dependencies 87a2638655, (opens new window):
    • @atlaskit/button@13.0.10
    • @atlaskit/modal-dialog@10.0.8
    • @atlaskit/radio@3.0.7
    • @atlaskit/select@9.1.10
    • @atlaskit/checkbox@9.0.0

6.1.1

  • Updated dependencies 06326ef3f7, (opens new window):
    • @atlaskit/docs@8.1.3
    • @atlaskit/button@13.0.9
    • @atlaskit/calendar@8.0.3
    • @atlaskit/checkbox@8.0.5
    • @atlaskit/datetime-picker@8.0.7
    • @atlaskit/dropdown-menu@8.0.8
    • @atlaskit/droplist@9.0.8
    • @atlaskit/field-radio-group@6.0.4
    • @atlaskit/modal-dialog@10.0.7
    • @atlaskit/multi-select@13.0.7
    • @atlaskit/radio@3.0.6
    • @atlaskit/section-message@4.0.5
    • @atlaskit/select@9.1.8
    • @atlaskit/single-select@8.0.6
    • @atlaskit/textfield@2.0.3
    • @atlaskit/toggle@7.0.3
    • @atlaskit/tooltip@15.0.2
    • @atlaskit/icon@19.0.0

6.1.0

Minor Changes

  • [minor]7bbf303d01, (opens new window):
    • Improved form validation user experience when field validation and submission validation used together on the same field
    • Improved form validation docs

6.0.7

Patch Changes

6.0.6

  • Updated dependencies 67f06f58dd, (opens new window):
    • @atlaskit/dropdown-menu@8.0.5
    • @atlaskit/droplist@9.0.5
    • @atlaskit/icon@18.0.1
    • @atlaskit/select@9.1.6
    • @atlaskit/tooltip@15.0.0

6.0.5

  • Updated dependencies cfc3c8adb3, (opens new window):
    • @atlaskit/docs@8.1.2
    • @atlaskit/button@13.0.8
    • @atlaskit/calendar@8.0.1
    • @atlaskit/checkbox@8.0.2
    • @atlaskit/datetime-picker@8.0.5
    • @atlaskit/dropdown-menu@8.0.4
    • @atlaskit/droplist@9.0.4
    • @atlaskit/field-radio-group@6.0.2
    • @atlaskit/modal-dialog@10.0.4
    • @atlaskit/multi-select@13.0.5
    • @atlaskit/radio@3.0.3
    • @atlaskit/section-message@4.0.2
    • @atlaskit/select@9.1.5
    • @atlaskit/single-select@8.0.4
    • @atlaskit/textfield@2.0.1
    • @atlaskit/toggle@7.0.1
    • @atlaskit/tooltip@14.0.3
    • @atlaskit/field-range@7.0.4
    • @atlaskit/icon@18.0.0

6.0.4

  • Updated dependencies 70862830d6, (opens new window):
    • @atlaskit/button@13.0.6
    • @atlaskit/modal-dialog@10.0.2
    • @atlaskit/radio@3.0.2
    • @atlaskit/select@9.1.4
    • @atlaskit/checkbox@8.0.0
    • @atlaskit/icon@17.2.0
    • @atlaskit/theme@9.1.0

6.0.3

6.0.2

  • Updated dependencies 6dd86f5b07, (opens new window):
    • @atlaskit/checkbox@7.0.1
    • @atlaskit/field-radio-group@6.0.1
    • @atlaskit/field-range@7.0.1
    • @atlaskit/field-text@9.0.1
    • @atlaskit/field-text-area@6.0.1
    • @atlaskit/icon@17.1.1
    • @atlaskit/multi-select@13.0.2
    • @atlaskit/single-select@8.0.1
    • @atlaskit/theme@9.0.2
    • @atlaskit/section-message@4.0.0

6.0.1

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

5.2.10

5.2.9

5.2.8

5.2.7

  • Updated dependencies 9c0b4744be, (opens new window):
    • @atlaskit/docs@7.0.3
    • @atlaskit/button@12.0.3
    • @atlaskit/calendar@7.0.22
    • @atlaskit/checkbox@6.0.4
    • @atlaskit/datetime-picker@7.0.4
    • @atlaskit/dropdown-menu@7.0.6
    • @atlaskit/droplist@8.0.5
    • @atlaskit/field-radio-group@5.0.3
    • @atlaskit/field-range@6.0.4
    • @atlaskit/field-text@8.0.3
    • @atlaskit/field-text-area@5.0.4
    • @atlaskit/icon@16.0.9
    • @atlaskit/modal-dialog@8.0.7
    • @atlaskit/multi-select@12.0.3
    • @atlaskit/radio@0.5.3
    • @atlaskit/section-message@2.0.3
    • @atlaskit/select@8.1.1
    • @atlaskit/single-select@7.0.3
    • @atlaskit/textarea@0.4.4
    • @atlaskit/textfield@0.4.4
    • @atlaskit/toggle@6.0.4
    • @atlaskit/tooltip@13.0.4
    • @atlaskit/theme@8.1.7

5.2.6

5.2.5

  • Updated dependencies 1e826b2966, (opens new window):
    • @atlaskit/docs@7.0.2
    • @atlaskit/calendar@7.0.21
    • @atlaskit/checkbox@6.0.3
    • @atlaskit/datetime-picker@7.0.3
    • @atlaskit/dropdown-menu@7.0.4
    • @atlaskit/droplist@8.0.3
    • @atlaskit/field-radio-group@5.0.2
    • @atlaskit/field-text@8.0.2
    • @atlaskit/field-text-area@5.0.3
    • @atlaskit/icon@16.0.8
    • @atlaskit/inline-edit@8.0.2
    • @atlaskit/modal-dialog@8.0.6
    • @atlaskit/multi-select@12.0.2
    • @atlaskit/radio@0.5.2
    • @atlaskit/section-message@2.0.2
    • @atlaskit/select@8.0.5
    • @atlaskit/single-select@7.0.2
    • @atlaskit/textarea@0.4.1
    • @atlaskit/textfield@0.4.3
    • @atlaskit/theme@8.1.6
    • @atlaskit/toggle@6.0.3
    • @atlaskit/tooltip@13.0.3
    • @atlaskit/field-range@6.0.3
    • @atlaskit/button@12.0.0

5.2.4

5.2.3

5.2.2

5.2.1

  • Updated dependencies 9d5cc39394, (opens new window):
    • @atlaskit/docs@7.0.1
    • @atlaskit/calendar@7.0.20
    • @atlaskit/checkbox@6.0.1
    • @atlaskit/datetime-picker@7.0.1
    • @atlaskit/dropdown-menu@7.0.1
    • @atlaskit/droplist@8.0.1
    • @atlaskit/field-radio-group@5.0.1
    • @atlaskit/field-text@8.0.1
    • @atlaskit/field-text-area@5.0.1
    • @atlaskit/icon@16.0.5
    • @atlaskit/inline-edit@8.0.1
    • @atlaskit/modal-dialog@8.0.2
    • @atlaskit/multi-select@12.0.1
    • @atlaskit/radio@0.5.1
    • @atlaskit/section-message@2.0.1
    • @atlaskit/select@8.0.3
    • @atlaskit/single-select@7.0.1
    • @atlaskit/textfield@0.3.1
    • @atlaskit/theme@8.0.1
    • @atlaskit/toggle@6.0.1
    • @atlaskit/tooltip@13.0.1
    • @atlaskit/field-range@6.0.1
    • @atlaskit/button@11.0.0
    • @atlaskit/textarea@0.3.0

5.2.0

5.1.8

  • [patch]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 import and export declarations.

    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.

5.1.7

5.1.6

  • [patch]887c85ffdc, (opens new window):
    • Form now provides a getValues function to it's child render function. The getValues function returns an object containing the current value of all fields.

5.1.5

5.1.4

5.1.3

  • [patch]a360a3d2b6, (opens new window):
    • Bugfix: field entry in form state gets deleted when Field is unmounted
    • Bugfix: Shallow equal check in Field works correctly across different types

5.1.2

  • Updated dependencies d7ef59d432, (opens new window):
    • @atlaskit/docs@6.0.1
    • @atlaskit/button@10.1.2
    • @atlaskit/calendar@7.0.17
    • @atlaskit/checkbox@5.0.11
    • @atlaskit/datetime-picker@6.3.25
    • @atlaskit/dropdown-menu@6.1.26
    • @atlaskit/droplist@7.0.18
    • @atlaskit/field-radio-group@4.0.15
    • @atlaskit/inline-edit@7.1.8
    • @atlaskit/modal-dialog@7.2.1
    • @atlaskit/multi-select@11.0.14
    • @atlaskit/radio@0.4.6
    • @atlaskit/section-message@1.0.16
    • @atlaskit/select@6.1.19
    • @atlaskit/single-select@6.0.12
    • @atlaskit/toggle@5.0.15
    • @atlaskit/tooltip@12.1.15
    • @atlaskit/field-range@5.0.14
    • @atlaskit/icon@16.0.0

5.1.1

5.1.0

  • [minor]b36a82f, (opens new window):
    • feature: Uses context to automatically assosiate a message to field. No upgrade changes required. Can remove fieldId prop on Message components if you are using that prop currently.

5.0.0

  • [major]647a46f, (opens new window):
    • Breaking: this version is a major overhaul of the package.
      • Conceptual changes: The Form component must be the source of truth for the form state. This means you keep track of far less state in your application.
      • API changes: Form, Field and CheckboxField components use render props. This was done to maximise the flexiblity of the what can be rendered inside Form or Fields.
      • Accessibility: Creating accessible forms is easier than ever with this release. It is straight forward to link validation messages or helper text with a field. See the examples for details.

4.0.21

  • Updated dependencies 58b84fa, (opens new window):
    • @atlaskit/button@10.1.1
    • @atlaskit/calendar@7.0.16
    • @atlaskit/checkbox@5.0.9
    • @atlaskit/datetime-picker@6.3.21
    • @atlaskit/dropdown-menu@6.1.25
    • @atlaskit/droplist@7.0.17
    • @atlaskit/field-radio-group@4.0.14
    • @atlaskit/field-range@5.0.12
    • @atlaskit/field-text@7.0.18
    • @atlaskit/field-text-area@4.0.14
    • @atlaskit/icon@15.0.2
    • @atlaskit/inline-edit@7.1.7
    • @atlaskit/modal-dialog@7.1.1
    • @atlaskit/multi-select@11.0.13
    • @atlaskit/radio@0.4.4
    • @atlaskit/section-message@1.0.14
    • @atlaskit/select@6.1.13
    • @atlaskit/single-select@6.0.11
    • @atlaskit/theme@7.0.1
    • @atlaskit/toggle@5.0.14
    • @atlaskit/tooltip@12.1.13
    • @atlaskit/docs@6.0.0

4.0.20

  • Updated dependencies d13242d, (opens new window):
    • @atlaskit/docs@5.2.3
    • @atlaskit/button@10.0.4
    • @atlaskit/calendar@7.0.15
    • @atlaskit/checkbox@5.0.8
    • @atlaskit/datetime-picker@6.3.20
    • @atlaskit/dropdown-menu@6.1.24
    • @atlaskit/droplist@7.0.16
    • @atlaskit/field-radio-group@4.0.13
    • @atlaskit/field-range@5.0.11
    • @atlaskit/field-text@7.0.16
    • @atlaskit/field-text-area@4.0.13
    • @atlaskit/icon@15.0.1
    • @atlaskit/inline-edit@7.1.6
    • @atlaskit/modal-dialog@7.0.14
    • @atlaskit/multi-select@11.0.12
    • @atlaskit/radio@0.4.3
    • @atlaskit/section-message@1.0.13
    • @atlaskit/select@6.1.10
    • @atlaskit/single-select@6.0.10
    • @atlaskit/toggle@5.0.13
    • @atlaskit/tooltip@12.1.12
    • @atlaskit/theme@7.0.0

4.0.19

  • Updated dependencies ab9b69c, (opens new window):
    • @atlaskit/docs@5.2.2
    • @atlaskit/button@10.0.1
    • @atlaskit/calendar@7.0.14
    • @atlaskit/checkbox@5.0.7
    • @atlaskit/datetime-picker@6.3.19
    • @atlaskit/dropdown-menu@6.1.23
    • @atlaskit/droplist@7.0.14
    • @atlaskit/field-radio-group@4.0.12
    • @atlaskit/inline-edit@7.1.5
    • @atlaskit/modal-dialog@7.0.13
    • @atlaskit/multi-select@11.0.11
    • @atlaskit/radio@0.4.2
    • @atlaskit/section-message@1.0.12
    • @atlaskit/select@6.1.9
    • @atlaskit/single-select@6.0.9
    • @atlaskit/toggle@5.0.12
    • @atlaskit/tooltip@12.1.11
    • @atlaskit/icon@15.0.0

4.0.18

  • Updated dependencies 6998f11, (opens new window):
    • @atlaskit/docs@5.2.1
    • @atlaskit/calendar@7.0.13
    • @atlaskit/checkbox@5.0.6
    • @atlaskit/datetime-picker@6.3.18
    • @atlaskit/dropdown-menu@6.1.22
    • @atlaskit/droplist@7.0.13
    • @atlaskit/field-radio-group@4.0.11
    • @atlaskit/field-text@7.0.15
    • @atlaskit/field-text-area@4.0.12
    • @atlaskit/icon@14.6.1
    • @atlaskit/inline-edit@7.1.4
    • @atlaskit/modal-dialog@7.0.12
    • @atlaskit/multi-select@11.0.10
    • @atlaskit/radio@0.4.1
    • @atlaskit/section-message@1.0.11
    • @atlaskit/select@6.1.8
    • @atlaskit/single-select@6.0.8
    • @atlaskit/theme@6.2.1
    • @atlaskit/toggle@5.0.11
    • @atlaskit/tooltip@12.1.10
    • @atlaskit/field-range@5.0.9
    • @atlaskit/button@10.0.0

4.0.17

4.0.16

4.0.15

4.0.14

4.0.13

4.0.12

4.0.11

4.0.10

  • [patch] Updated dependencies 65c6514, (opens new window)
    • @atlaskit/docs@5.0.8
    • @atlaskit/button@9.0.13
    • @atlaskit/calendar@7.0.9
    • @atlaskit/checkbox@5.0.2
    • @atlaskit/datetime-picker@6.3.11
    • @atlaskit/dropdown-menu@6.1.17
    • @atlaskit/droplist@7.0.10
    • @atlaskit/field-radio-group@4.0.8
    • @atlaskit/inline-edit@7.1.1
    • @atlaskit/modal-dialog@7.0.2
    • @atlaskit/multi-select@11.0.7
    • @atlaskit/section-message@1.0.8
    • @atlaskit/select@6.0.2
    • @atlaskit/single-select@6.0.6
    • @atlaskit/toggle@5.0.9
    • @atlaskit/tooltip@12.1.1
    • @atlaskit/icon@14.0.0

4.0.9

4.0.8

4.0.7

4.0.6

4.0.5

  • [patch] Updated dependencies 80e1925, (opens new window)
    • @atlaskit/button@9.0.9
    • @atlaskit/modal-dialog@7.0.1
    • @atlaskit/select@5.0.18
    • @atlaskit/checkbox@5.0.0

4.0.4

4.0.3

  • [patch] Updated dependencies d5a043a, (opens new window)
    • @atlaskit/datetime-picker@6.3.7
    • @atlaskit/icon@13.8.1
    • @atlaskit/select@5.0.17
    • @atlaskit/tooltip@12.0.14
    • @atlaskit/modal-dialog@7.0.0

4.0.2

  • [patch] Updated dependencies 9c66d4d, (opens new window)
    • @atlaskit/datetime-picker@6.3.6
    • @atlaskit/select@5.0.16
    • @atlaskit/webdriver-runner@0.1.0

4.0.1

4.0.0

3.1.8

3.1.6

  • [patch] Updated dependencies df22ad8, (opens new window)
    • @atlaskit/theme@6.0.0
    • @atlaskit/tooltip@12.0.9
    • @atlaskit/toggle@5.0.6
    • @atlaskit/single-select@6.0.4
    • @atlaskit/select@5.0.9
    • @atlaskit/section-message@1.0.5
    • @atlaskit/multi-select@11.0.5
    • @atlaskit/modal-dialog@6.0.9
    • @atlaskit/inline-edit@7.0.6
    • @atlaskit/icon@13.2.5
    • @atlaskit/field-text-area@4.0.6
    • @atlaskit/field-text@7.0.6
    • @atlaskit/field-range@5.0.4
    • @atlaskit/field-radio-group@4.0.5
    • @atlaskit/droplist@7.0.7
    • @atlaskit/dropdown-menu@6.1.8
    • @atlaskit/datetime-picker@6.3.2
    • @atlaskit/checkbox@4.0.4
    • @atlaskit/calendar@7.0.5
    • @atlaskit/button@9.0.6
    • @atlaskit/docs@5.0.6

3.1.5

  • [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/tooltip@12.0.5
    • @atlaskit/select@5.0.8
    • @atlaskit/modal-dialog@6.0.6
    • @atlaskit/multi-select@11.0.4
    • @atlaskit/inline-edit@7.0.4
    • @atlaskit/field-text-area@4.0.4
    • @atlaskit/field-text@7.0.4
    • @atlaskit/toggle@5.0.5
    • @atlaskit/checkbox@4.0.3
    • @atlaskit/calendar@7.0.4
    • @atlaskit/button@9.0.5
    • @atlaskit/theme@5.1.3
    • @atlaskit/field-range@5.0.3
    • @atlaskit/section-message@1.0.4
    • @atlaskit/field-radio-group@4.0.4
    • @atlaskit/datetime-picker@6.1.1
    • @atlaskit/icon@13.2.4
    • @atlaskit/droplist@7.0.5
    • @atlaskit/dropdown-menu@6.1.5

3.1.4

  • [patch] Updated dependencies acd86a1, (opens new window)
    • @atlaskit/select@5.0.7
    • @atlaskit/tooltip@12.0.4
    • @atlaskit/icon@13.2.2
    • @atlaskit/toggle@5.0.4
    • @atlaskit/single-select@6.0.3
    • @atlaskit/section-message@1.0.3
    • @atlaskit/multi-select@11.0.3
    • @atlaskit/inline-edit@7.0.3
    • @atlaskit/field-radio-group@4.0.3
    • @atlaskit/checkbox@4.0.2
    • @atlaskit/calendar@7.0.3
    • @atlaskit/button@9.0.4
    • @atlaskit/theme@5.1.2
    • @atlaskit/field-range@5.0.2
    • @atlaskit/field-text-area@4.0.3
    • @atlaskit/field-text@7.0.3
    • @atlaskit/docs@5.0.2
    • @atlaskit/droplist@7.0.4
    • @atlaskit/dropdown-menu@6.1.4
    • @atlaskit/modal-dialog@6.0.5
    • @atlaskit/datetime-picker@6.0.3

3.1.3

  • [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/select@5.0.6
    • @atlaskit/modal-dialog@6.0.4
    • @atlaskit/inline-edit@7.0.2
    • @atlaskit/field-text-area@4.0.2
    • @atlaskit/field-text@7.0.2
    • @atlaskit/toggle@5.0.3
    • @atlaskit/checkbox@4.0.1
    • @atlaskit/calendar@7.0.2
    • @atlaskit/button@9.0.3
    • @atlaskit/theme@5.1.1
    • @atlaskit/field-range@5.0.1
    • @atlaskit/section-message@1.0.2
    • @atlaskit/field-radio-group@4.0.2
    • @atlaskit/datetime-picker@6.0.2
    • @atlaskit/icon@13.2.1
    • @atlaskit/droplist@7.0.3
    • @atlaskit/dropdown-menu@6.1.3

3.1.2

3.1.1

3.1.0

3.0.1

  • [patch] Updated dependencies e6b1985, (opens new window)
    • @atlaskit/tooltip@12.0.0
    • @atlaskit/select@5.0.1
    • @atlaskit/icon@13.1.1
    • @atlaskit/droplist@7.0.1
    • @atlaskit/dropdown-menu@6.1.1

3.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/select@5.0.0
    • @atlaskit/modal-dialog@6.0.0
    • @atlaskit/single-select@6.0.0
    • @atlaskit/multi-select@11.0.0
    • @atlaskit/inline-edit@7.0.0
    • @atlaskit/field-text-area@4.0.0
    • @atlaskit/field-text@7.0.0
    • @atlaskit/toggle@5.0.0
    • @atlaskit/checkbox@4.0.0
    • @atlaskit/calendar@7.0.0
    • @atlaskit/button@9.0.0
    • @atlaskit/theme@5.0.0
    • @atlaskit/field-range@5.0.0
    • @atlaskit/docs@5.0.0
    • @atlaskit/field-radio-group@4.0.0
    • @atlaskit/datetime-picker@6.0.0
    • @atlaskit/icon@13.0.0
    • @atlaskit/droplist@7.0.0
    • @atlaskit/dropdown-menu@6.0.0
  • [major] Updated dependencies 7edb866, (opens new window)
    • @atlaskit/tooltip@11.0.0
    • @atlaskit/select@5.0.0
    • @atlaskit/modal-dialog@6.0.0
    • @atlaskit/single-select@6.0.0
    • @atlaskit/multi-select@11.0.0
    • @atlaskit/inline-edit@7.0.0
    • @atlaskit/field-text-area@4.0.0
    • @atlaskit/field-text@7.0.0
    • @atlaskit/toggle@5.0.0
    • @atlaskit/checkbox@4.0.0
    • @atlaskit/calendar@7.0.0
    • @atlaskit/button@9.0.0
    • @atlaskit/theme@5.0.0
    • @atlaskit/field-range@5.0.0
    • @atlaskit/docs@5.0.0
    • @atlaskit/field-radio-group@4.0.0
    • @atlaskit/datetime-picker@6.0.0
    • @atlaskit/icon@13.0.0
    • @atlaskit/droplist@7.0.0
    • @atlaskit/dropdown-menu@6.0.0

2.1.5

2.1.4

2.1.3

  • [patch] Fix $FlowFixMe and release packages 25d0b2d, (opens new window)
  • [none] Updated dependencies 25d0b2d, (opens new window)
    • @atlaskit/tooltip@10.3.1
    • @atlaskit/select@4.3.1
    • @atlaskit/modal-dialog@5.2.5
    • @atlaskit/single-select@5.2.1
    • @atlaskit/multi-select@10.2.1
    • @atlaskit/field-text-area@3.1.2
    • @atlaskit/button@8.2.2
    • @atlaskit/checkbox@3.1.2
    • @atlaskit/calendar@6.1.3
    • @atlaskit/field-radio-group@3.1.2
    • @atlaskit/icon@12.3.1

2.1.2

  • [patch] Clean Changelogs - remove duplicates and empty entries e7756cd, (opens new window)
  • [none] Updated dependencies e7756cd, (opens new window)
    • @atlaskit/tooltip@10.2.1
    • @atlaskit/select@4.2.3
    • @atlaskit/modal-dialog@5.2.2
    • @atlaskit/single-select@5.1.2
    • @atlaskit/multi-select@10.1.2
    • @atlaskit/inline-edit@6.1.3
    • @atlaskit/field-text-area@3.1.1
    • @atlaskit/field-text@6.0.4
    • @atlaskit/button@8.1.2
    • @atlaskit/toggle@4.0.3
    • @atlaskit/theme@4.0.4
    • @atlaskit/field-range@4.0.3
    • @atlaskit/checkbox@3.0.6
    • @atlaskit/calendar@6.1.2
    • @atlaskit/field-radio-group@3.0.4
    • @atlaskit/datetime-picker@5.2.1
    • @atlaskit/icon@12.1.2
    • @atlaskit/droplist@6.1.2
    • @atlaskit/dropdown-menu@5.0.4

2.1.1

  • [patch] Update changelogs to remove duplicate cc58e17, (opens new window)
  • [none] Updated dependencies cc58e17, (opens new window)
    • @atlaskit/theme@4.0.3
    • @atlaskit/single-select@5.1.1
    • @atlaskit/select@4.2.1
    • @atlaskit/multi-select@10.1.1
    • @atlaskit/modal-dialog@5.1.1
    • @atlaskit/inline-edit@6.1.2
    • @atlaskit/icon@12.1.1
    • @atlaskit/field-radio-group@3.0.3
    • @atlaskit/droplist@6.1.1
    • @atlaskit/dropdown-menu@5.0.3
    • @atlaskit/checkbox@3.0.5
    • @atlaskit/calendar@6.1.1
    • @atlaskit/button@8.1.1
    • @atlaskit/docs@4.1.1

2.1.0

  • [none] Updated dependencies 9d20f54, (opens new window)
    • @atlaskit/single-select@5.1.0
    • @atlaskit/modal-dialog@5.1.0
    • @atlaskit/select@4.2.0
    • @atlaskit/tooltip@10.2.0
    • @atlaskit/dropdown-menu@5.0.2
    • @atlaskit/inline-edit@6.1.0
    • @atlaskit/icon@12.1.0
    • @atlaskit/toggle@4.0.2
    • @atlaskit/field-radio-group@3.0.2
    • @atlaskit/checkbox@3.0.4
    • @atlaskit/calendar@6.1.0
    • @atlaskit/docs@4.1.0
    • @atlaskit/theme@4.0.2
    • @atlaskit/field-text-area@3.0.3
    • @atlaskit/field-text@6.0.2
    • @atlaskit/field-range@4.0.2
    • @atlaskit/datetime-picker@5.2.0
    • @atlaskit/multi-select@10.1.0
    • @atlaskit/droplist@6.1.0
    • @atlaskit/button@8.1.0

2.0.1

  • [patch] Update readme's 223cd67, (opens new window)
  • [patch] Updated dependencies 223cd67, (opens new window)
    • @atlaskit/tooltip@10.0.1
    • @atlaskit/modal-dialog@5.0.1
    • @atlaskit/select@4.0.1
    • @atlaskit/datetime-picker@5.0.1
    • @atlaskit/icon@12.0.1
    • @atlaskit/toggle@4.0.1
    • @atlaskit/inline-edit@6.0.1
    • @atlaskit/field-radio-group@3.0.1
    • @atlaskit/field-text-area@3.0.1
    • @atlaskit/field-text@6.0.1
    • @atlaskit/checkbox@3.0.1
    • @atlaskit/calendar@6.0.1
    • @atlaskit/button@8.0.1
    • @atlaskit/theme@4.0.1
    • @atlaskit/field-range@4.0.1
    • @atlaskit/docs@4.0.1
    • @atlaskit/droplist@6.0.1
    • @atlaskit/dropdown-menu@5.0.1

2.0.0

  • [major] makes styled-components a peer dependency and upgrades version range from 1.4.6 - 3 to ^3.2.6 1e80619, (opens new window)
  • [patch] Updated dependencies 1e80619, (opens new window)
    • @atlaskit/tooltip@10.0.0
    • @atlaskit/modal-dialog@5.0.0
    • @atlaskit/select@4.0.0
    • @atlaskit/datetime-picker@5.0.0
    • @atlaskit/icon@12.0.0
    • @atlaskit/toggle@4.0.0
    • @atlaskit/single-select@5.0.0
    • @atlaskit/multi-select@10.0.0
    • @atlaskit/inline-edit@6.0.0
    • @atlaskit/field-radio-group@3.0.0
    • @atlaskit/field-text-area@3.0.0
    • @atlaskit/field-text@6.0.0
    • @atlaskit/checkbox@3.0.0
    • @atlaskit/calendar@6.0.0
    • @atlaskit/button@8.0.0
    • @atlaskit/theme@4.0.0
    • @atlaskit/field-range@4.0.0
    • @atlaskit/docs@4.0.0
    • @atlaskit/droplist@6.0.0
    • @atlaskit/dropdown-menu@5.0.0

1.0.4

1.0.3

1.0.2

1.0.0

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