UNPKG

@atlaskit/form

Version:

A form allows people to input information.

1,676 lines (1,028 loc) 96.3 kB
# @atlaskit/form ## 15.5.1 ### Patch Changes - Updated dependencies ## 15.5.0 ### Minor Changes - [`b9829b6cd7780`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b9829b6cd7780) - Autofix: add explicit package exports (barrel removal) ### Patch Changes - Updated dependencies ## 15.4.2 ### Patch Changes - Updated dependencies ## 15.4.1 ### Patch Changes - Updated dependencies ## 15.4.0 ### Minor Changes - [`d8406f8f9043e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d8406f8f9043e) - Removed FG which provides resetFieldState to form consumers ## 15.3.7 ### Patch Changes - [`dcf8070f2b6ca`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/dcf8070f2b6ca) - 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 - [`a48fdadce2137`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a48fdadce2137) - Minor internal typography changes. - Updated dependencies ## 15.3.1 ### Patch Changes - Updated dependencies ## 15.3.0 ### Minor Changes - [`87b12e64ff750`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/87b12e64ff750) - Removed usages of LEGACY icon props ## 15.2.0 ### Minor Changes - [`c6332d9f5e6de`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c6332d9f5e6de) - 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 - [`d14ea5f60b689`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d14ea5f60b689) - chore: migrate platform UI & component libraries icon imports from migration paths to core ## 15.1.0 ### Minor Changes - [`8b640226a78b9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8b640226a78b9) - [ux] Improved focusing behavior on submit for fields with errors ### Patch Changes - Updated dependencies ## 15.0.1 ### Patch Changes - [`1f2184e410650`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1f2184e410650) - 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`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/903d3e8f3b8ad) - 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`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c19181795ec37) - 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:** ```javascript <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 - [`a60a82196851a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a60a82196851a) - Internal refactors to remove unused variables. No functional or public changes. - Updated dependencies ## 14.3.1 ### Patch Changes - Updated dependencies ## 14.3.0 ### Minor Changes - [`cdecdf6402143`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cdecdf6402143) - Adds `aria-required` to input fields when `isRequired` is used on field. ### 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 - [`6928afcd12672`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6928afcd12672) - Typescript fixes ## 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 - [`10985771cb1e5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/10985771cb1e5) - Add props to form component for more transparent prop application to underlying HTML form element. ## 14.1.0 ### Minor Changes - [`ba5410321550c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ba5410321550c) - 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`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a225bfa035441) - 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: ```tsx <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. ```tsx <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`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2eb0f5a39acd6) - 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`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/edef4ab21e5c5) - 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 - [`2f220beaedb7a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2f220beaedb7a) - Remove unused dependency. ## 12.6.1 ### Patch Changes - [`2e9c49d200b1d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2e9c49d200b1d) - Added resetFieldState to Form children props - Updated dependencies ## 12.6.0 ### Minor Changes - [`27fa43b33e35e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/27fa43b33e35e) - Add optional testId prop that applies a data-testid attribute to the underlying form element ## 12.5.4 ### Patch Changes - [`281cc603f5925`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/281cc603f5925) - Improve typing within checkbox field ## 12.5.3 ### Patch Changes - Updated dependencies ## 12.5.2 ### Patch Changes - [`020fb99d98aff`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/020fb99d98aff) - Simplified screenreader logic for message components when MessageWrapper is present ## 12.5.1 ### Patch Changes - Updated dependencies ## 12.5.0 ### Minor Changes - [`c22bdb7c0b0f8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c22bdb7c0b0f8) - [ux] Added support for focusing error fields containing react-select when submitting with errors ## 12.4.1 ### Patch Changes - Updated dependencies ## 12.4.0 ### Minor Changes - [`84cea20e778c3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/84cea20e778c3) - 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`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c247b696ec62a) - 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 - [`543068f818b30`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/543068f818b30) - Remove unused internal invariant for the field component. ## 12.2.1 ### Patch Changes - Updated dependencies ## 12.2.0 ### Minor Changes - [`07de46497864a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/07de46497864a) - 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`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a32c90b3928be) - 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 - [`67eaf0a522c17`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/67eaf0a522c17) - Update internal css usage from compiled/react to atlaskit/css ## 12.0.15 ### Patch Changes - Updated dependencies ## 12.0.14 ### Patch Changes - Updated dependencies ## 12.0.13 ### Patch Changes - [#188952](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/188952) [`1a88e6e2601ae`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1a88e6e2601ae) - Migrated usage of renamed/deprecated icons - Updated dependencies ## 12.0.12 ### Patch Changes - [#182760](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/182760) [`971d04b4835b3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/971d04b4835b3) - Remove React.FC from all form components. ## 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 - [#160530](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/160530) [`3d97095c489a5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3d97095c489a5) - Internal change to align styling solutions. - Updated dependencies ## 12.0.5 ### Patch Changes - [#155802](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/155802) [`08019848e3eab`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/08019848e3eab) - Refreshed "issue" terminology. - Updated dependencies ## 12.0.4 ### Patch Changes - Updated dependencies ## 12.0.3 ### Patch Changes - [#129972](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/129972) [`b2d69a39e6687`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b2d69a39e6687) - Update `@compiled/react` dependency for improved type checking support. - Updated dependencies ## 12.0.2 ### Patch Changes - Updated dependencies ## 12.0.1 ### Patch Changes - Updated dependencies ## 12.0.0 ### Major Changes - [#117363](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/117363) [`10a0f7f6c2027`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/10a0f7f6c2027) - This package's `peerDependencies` have been adjusted for `react` and/or `react-dom` to reflect the status of only supporting React 18 going forward. No explicit breaking change to React support has been made in this release, but this is to signify going forward, breaking changes for React 16 or React 17 may come via non-major semver releases. Please refer this community post for more details: https://community.developer.atlassian.com/t/rfc-78-dropping-support-for-react-16-and-rendering-in-a-react-18-concurrent-root-in-jira-and-confluence/87026 ### Patch Changes - Updated dependencies ## 11.2.0 ### Minor Changes - [#116138](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/116138) [`b50c5d5d65ae2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b50c5d5d65ae2) - Bump to the latest version of @compiled/react ### Patch Changes - Updated dependencies ## 11.1.2 ### Patch Changes - Updated dependencies ## 11.1.1 ### Patch Changes - Updated dependencies ## 11.1.0 ### Minor Changes - [#109060](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/109060) [`4660ec858a305`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4660ec858a305) - Update `React` from v16 to v18 ### Patch Changes - Updated dependencies ## 11.0.3 ### Patch Changes - [#107240](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/107240) [`5255a1a097bad`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5255a1a097bad) - Update dependencies and remove unused internal exports. ## 11.0.2 ### Patch Changes - [#103999](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/103999) [`9f62ecec4d422`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9f62ecec4d422) - Update dependencies. ## 11.0.1 ### Patch Changes - Updated dependencies ## 11.0.0 ### Major Changes - [#166027](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/166027) [`7dc9e1f2a2cb7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7dc9e1f2a2cb7) - Migrated from `@emotion/react` to `@compiled/react` in order to improve performance, align with the rest of the Atlaskit techstack, and support React 18 Streaming SSR.Please note, in order to use this version of `@atlaskit/form`, you will need to ensure that your bundler is configured to handle `.css` imports correctly.Most bundlers come with built-in support for `.css` imports, so you may not need to do anything. If you are using a different bundler, please refer to the documentation for that bundler to understand how to handle `.css` imports.For more information on the migration, please refer to [RFC-73 Migrating our components to Compiled CSS-in-JS](https://community.developer.atlassian.com/t/rfc-73-migrating-our-components-to-compiled-css-in-js/859 ## 10.6.3 ### Patch Changes - [#174905](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/174905) [`450cbe9dbf8ff`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/450cbe9dbf8ff) - Upgrade from react-router-dom v4 to v6. ## 10.6.2 ### Patch Changes - Updated dependencies ## 10.6.1 ### Patch Changes - Updated dependencies ## 10.6.0 ### Minor Changes - [#168743](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/168743) [`b27dba8a5f3cd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b27dba8a5f3cd) - Update types to improve compatibility with React 18. ### Patch Changes - Updated dependencies ## 10.5.12 ### Patch Changes - [#165531](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/165531) [`57f451bda8919`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/57f451bda8919) - Adds side-effect config to support Compiled css extraction in third-party apps ## 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 - [#153024](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/153024) [`f2ca7201459b1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f2ca7201459b1) - Change `react-uid` to use ID generator that is compatible with React16 and React 18; Strict React 18 behind a flag. ## 10.5.7 ### Patch Changes - [#152429](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/152429) [`5d414827c3394`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5d414827c3394) - Removes usages of deprecated CustomThemeButton in favor of the new Button ## 10.5.6 ### Patch Changes - [#149694](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/149694) [`770bc26d556f7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/770bc26d556f7) - Migrate to new icons behind a feature flag - Updated dependencies ## 10.5.5 ### Patch Changes - [#143559](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/143559) [`56dfbfe361f96`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/56dfbfe361f96) - Upgrade react-select from 5.4 to 5.8 and replace it with internal atlaskit/react-select ## 10.5.4 ### Patch Changes - Updated dependencies ## 10.5.3 ### Patch Changes - [`34d8c0a75098e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/34d8c0a75098e) - [ux] accessibility improvements to the error validation ## 10.5.2 ### Patch Changes - [#129726](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/129726) [`778c15c1d279a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/778c15c1d279a) - [ux] Removed feature flag `platform.design-system-team.form-header-typography-updates_4f1g6` and `platform.design-system-team.form-label-typography-updates` feature flags resulting in minor visual changes to typography. ## 10.5.1 ### Patch Changes - Updated dependencies ## 10.5.0 ### Minor Changes - [#127511](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/127511) [`db30e29344013`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/db30e29344013) - 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 - [#118734](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/118734) [`f9641d1cfa4bd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f9641d1cfa4bd) - Remove remnants of `extract-react-types`. ## 10.4.5 ### Patch Changes - Updated dependencies ## 10.4.4 ### Patch Changes - Updated dependencies ## 10.4.3 ### Patch Changes - [#114683](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/114683) [`ff0815316ab38`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ff0815316ab38) - Removes usage of custom theme button in places where its API is not being used and the default button is able to be used instead. This should give a slight performance (runtime) improvement. ## 10.4.2 ### Patch Changes - [#105813](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/105813) [`f2f51e7a24d00`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f2f51e7a24d00) - Internal change only. Update typography to use typography tokens. - Updated dependencies ## 10.4.1 ### Patch Changes - Updated dependencies ## 10.4.0 ### Minor Changes - [#110670](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/110670) [`c733254a2dd6e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c733254a2dd6e) - Explicitly set jsxRuntime to classic via pragma comments in order to avoid issues where jsxRuntime is implicitly set to automatic. ### Patch Changes - Updated dependencies ## 10.3.1 ### Patch Changes - Updated dependencies ## 10.3.0 ### Minor Changes - [#106664](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/106664) [`a791a005eaec`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a791a005eaec) - [ux] We are testing a visual change behind a feature flag. The font weight and color of form labels changes. If this change is successful it will be available in a later release. ## 10.2.0 ### Minor Changes - [#99625](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/99625) [`f60a622d5890`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f60a622d5890) - FormHeader refactor to follow new typography system behind a feature flag. FormHeader title does not truncate any more. ## 10.1.1 ### Patch Changes - [#100993](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/100993) [`cb7514abb833`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/cb7514abb833) - Typography tokens for form labels. ## 10.1.0 ### Minor Changes - [#98612](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/98612) [`7a11b97d325a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7a11b97d325a) - Add support for React 18 in non-strict mode. ### Patch Changes - Updated dependencies ## 10.0.0 ### Major Changes - [#95117](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/95117) [`34507dd83e5e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/34507dd83e5e) - Typography changes to form section titles. Form section titles don't truncate content anymore. ### Patch Changes - Updated dependencies ## 9.3.1 ### Patch Changes - Updated dependencies ## 9.3.0 ### Minor Changes - [#92853](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92853) [`e241d0c95e65`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e241d0c95e65) - Typography tokenisation and improvements for form messages. ## 9.2.0 ### Minor Changes - [#89977](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/89977) [`4922acfee53b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4922acfee53b) - Typography tokens for RequiredAsterisk. ## 9.1.2 ### Patch Changes - [#68248](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68248) [`22e0fd4f6694`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/22e0fd4f6694) - Move the onBlur event from the input to the input container in `DatePicker`. Add the type `aria-describedby` in to Field component. ## 9.1.1 ### Patch Changes - [#88354](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/88354) [`4c87d9b4f0c2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4c87d9b4f0c2) - The internal composition of this component has changed. There is no expected change in behavior. ## 9.1.0 ### Minor Changes - [#83175](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83175) [`03e4aaa5a468`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/03e4aaa5a468) - Adds ability to subscribe to form state using the useFormState hook. This can be helpful in situations such as forms with conditional fields, or for previewing a form response. [Read the docs here.](https://atlassian.design/components/form/examples#listening-to-form-state-with-useformstate) ## 9.0.12 ### Patch Changes - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116) [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) - Upgrade Typescript from `4.9.5` to `5.4.2` ## 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 - [#76686](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/76686) [`8eba69714ea6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8eba69714ea6) - The internal composition of this component has changed. There is no expected change in behaviour. ## 9.0.7 ### Patch Changes - [#70460](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70460) [`2f37600156ae`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2f37600156ae) - The internal composition of a component in this package has changed. There is no expected change in behaviour. ## 9.0.6 ### Patch Changes - [#68013](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68013) [`a23882ab49f8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a23882ab49f8) - Upgrade depdendency `final-form` for bugfix. ## 9.0.5 ### Patch Changes - [#61141](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/61141) [`57a79a328287`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/57a79a328287) - Revert the solution with the hidden span in the Label which was merged in scope of DST-11061. ## 9.0.4 ### Patch Changes - [#60029](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60029) [`b9826ea49c47`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b9826ea49c47) - Update dependencies that were impacted by HOT-106483 to latest. ## 9.0.3 ### Patch Changes - [#59147](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59147) [`f12e489f23b0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f12e489f23b0) - Re-build and deploy packages to NPM to resolve React/Compiled not found error (HOT-106483). ## 9.0.2 ### Patch Changes - [#58458](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58458) [`536478cdcf0b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/536478cdcf0b) - Updated Form messages to have a small gap between the icon and message text. ## 9.0.1 ### Patch Changes - Updated dependencies ## 9.0.0 ### Major Changes - [#41791](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41791) [`ec7c2a38247`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec7c2a38247) - Removed all remaining legacy theming logic from the Calendar, Form, InlineDialog, InlineEdit and InlineMessage components. ## 8.11.13 ### Patch Changes - [#40650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40650) [`07aa588c8a4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/07aa588c8a4) - Reverts the fix to text descender cut-off, due to incompatibilities with Firefox and Safari. ## 8.11.12 ### Patch Changes - [#38209](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38209) [`56b444b56a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56b444b56a8) - Fix a bug where text descenders were cut off at high zoom levels on Windows ## 8.11.11 ### Patch Changes - [#38386](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38386) [`02b609f1447`](https://bitbucket.org/atlassian/atlassian-frontend/commits/02b609f1447) - Form now onboarded onto the product push model for Jira. ## 8.11.10 ### Patch Changes - [#37900](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37900) [`7c7704ad529`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7c7704ad529) - Imports from @atlaskit/form/Messages will no longer pull react-final-form and Field in the bundle. ## 8.11.9 ### Patch Changes - [#37515](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37515) [`85935c8cde4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/85935c8cde4) - [ux] Denoting live region of form messages using aria-live attribute instead of alert role. ## 8.11.8 ### Patch Changes - [#35295](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35295) [`421b74bf0f9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/421b74bf0f9) - Combines stylings of label and legend for simpler maintenance. - [`215b4b5df50`](https://bitbucket.org/atlassian/atlassian-frontend/commits/215b4b5df50) - Removes redundant label from legend in fieldset. ## 8.11.7 ### Patch Changes - [#32979](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32979) [`ddb4e858a79`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ddb4e858a79) - Removes usage of deprecated theme mixins in favor of static token / color usage. ## 8.11.6 ### Patch Changes - [#33652](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33652) [`e7ea6832ad2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7ea6832ad2) - Bans the use of React.FC/React.FunctionComponent type in ADS components as part of the React 18 migration work. The change is internal only and should not introduce any changes for the component consumers. ## 8.11.5 ### Patch Changes - [#32935](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32935) [`b1bdec7cce2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b1bdec7cce2) - Internal change to enforce token usage for spacing properties. There is no expected visual or behaviour change. ## 8.11.4 ### Patch Changes - [#34051](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34051) [`49b08bfdf5f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/49b08bfdf5f) - Migrated use of `gridSize` to space tokens where possible. There is no expected visual or behaviour change. ## 8.11.3 ### Patch Changes - [#33584](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33584) [`e8dbb0a281b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e8dbb0a281b) - add a11y support for alert messages ## 8.11.2 ### Patch Changes - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793) [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8 ## 8.11.1 ### Patch Changes - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649) [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5` ## 8.11.0 ### Minor Changes - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258) [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump ### Patch Changes - Updated dependencies ## 8.10.0 ### Minor Changes - [#32350](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32350) [`c71b0ac8222`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c71b0ac8222) - Added testId prop to the Field component for better testing. ## 8.9.1 ### Patch Changes - [#32437](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32437) [`eb179f0c089`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eb179f0c089) - Migrates unit tests from enzyme to RTL. ## 8.9.0 ### Minor Changes - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424) [`824851f3580`](https://bitbucket.org/atlassian/atlassian-frontend/commits/824851f3580) - [ux] Gives added affordance to sighted users to get information on meaning of asterisk symbol on required fields. ### Patch Changes - [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils ## 8.8.8 ### Patch Changes - [#32294](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32294) [`e0460d5d989`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e0460d5d989) - Usages of `process` are now guarded by a `typeof` check. ## 8.8.7 ### Patch Changes - [#31891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31891) [`1c6c493447f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1c6c493447f) - [ux] Place label and message fields in correct aria attributes. ## 8.8.6 ### Patch Changes - [#31206](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31206) [`261420360ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/261420360ec) - Upgrades component types to support React 18. - Updated dependencies ## 8.8.5 ### Patch Changes - [#31338](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31338) [`74c1b81a476`](https://bitbucket.org/atlassian/atlassian-frontend/commits/74c1b81a476) - Replaces use of `gridSize` with space tokens. There is no expected visual change. ## 8.8.4 ### Patch Changes - Updated dependencies ## 8.8.3 ### Patch Changes - [#28090](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28090) [`1b8e257525f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1b8e257525f) - [ux] Message content now preserves whitespace between elements. - [`ea1ad1d867f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ea1ad1d867f) - Message typings have been corrected, removing a number of props. These props existed only in the type and had no effect when used. The props which were removed from the typings are: - `error` - `fieldId` - `valid` - [`b96e69cdf36`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b96e69cdf36) - [ux] DSP-6625: Updated Form label text color token to match the design. ## 8.8.2 ### Patch Changes - Updated dependencies ## 8.8.1 ### Patch Changes - Updated dependencies ## 8.8.0 ### Minor Changes - [#26712](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26712) [`f2d39d67a70`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f2d39d67a70) - Fixed the issue where field's value was reset on the component re-mount. ## 8.7.1 ### Patch Changes - Updated dependencies ## 8.7.0 ### Minor Changes - [#25860](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25860) [`500a96aa7de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/500a96aa7de) - Add elementAfterLabel prop to form Field. ### Patch Changes - [`001c650e983`](https://bitbucket.org/atlassian/atlassian-frontend/commits/001c650e983) - Add ds-lib devDependency. No behaviour change. ## 8.6.0 ### Minor Changes - [#24710](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24710) [`ae87a1a6d39`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ae87a1a6d39) - Updates `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change. ### Patch Changes - Updated dependencies ## 8.5.9 ### Patch Changes - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874) [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5` ## 8.5.8 ### Patch Changes - [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004) [`0fbb2840aba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0fbb2840aba) - 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 - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492) [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`. ## 8.5.6 ### Patch Changes - [#23485](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23485) [`f2b8ca863a0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f2b8ca863a0) - [ux] Updates to slightly darken fallback colors for field messages ## 8.5.5 ### Patch Changes - Updated dependencies ## 8.5.4 ### Patch Changes - [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650) [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade to TypeScript 4.2.4 ## 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 - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752) [`c987bb60a89`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c987bb60a89) - Exposes an additional Label component in `@atlaskit/form` - this component is designed to be wrapped by the Field component but there are certain use cases that require a Label on its own. This is to fulfill those use cases. ### Patch Changes - [`58884c2f6c1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58884c2f6c1) - Internal code change turning on a new linting rule. ## 8.4.8 ### Patch Changes - [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - Updates usage of deprecated token names so they're aligned with the latest naming conventions. No UI or visual changes - [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - Bump dependency tiny-invariant to latest" - Updated dependencies ## 8.4.7 ### Patch Changes - Updated dependencies ## 8.4.6 ### Patch Changes - [#17475](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17475) [`c55c736ecea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c55c736ecea) - Patch VULN AFP-3486 AFP-3487 AFP-3488 AFP-3489 ## 8.4.5 ### Patch Changes - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998) [`f460cc7c411`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f460cc7c411) - Builds for this package now pass through a tokens babel plugin, removing runtime invocations of the tokens() function and improving bundle size. - Updated dependencies ## 8.4.4 ### Patch Changes - Updated dependencies ## 8.4.3 ### Patch Changes - [#15981](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15981) [`2cf338dd802`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2cf338dd802) - Added homepage to package.json ## 8.4.2 ### Patch Changes - [#15632](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15632) [`34282240102`](https://bitbucket.org/atlassian/atlassian-frontend/commits/34282240102) - Adds explicit type to button usages components. ## 8.4.1 ### Patch Changes - [#15148](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15148) [`b9b3ab10494`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b9b3ab10494) - There was a bug in 8.4.0 where the props in FormSection were not recognized. This has now been fixed. ## 8.4.0 ### Minor Changes - [#14319](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14319) [`4e3c853e85f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e3c853e85f) - This change removes the dependency `styled-components`. It has been refactored to use `@emotion/core` instead and entrypoints have been updated. Some examples have also been updated. There should be no UI or UX change. ### Patch Changes - [`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) - Internal changes to remove `@atlaskit/theme/math` usage. - Updated dependencies ## 8.3.1 ### Patch Changes - Updated dependencies ## 8.3.0 ### Minor Changes - [#13302](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13302) [`4cab1a3d163`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4cab1a3d163) - Form is now instrumented with the new tokens theme implementation. This change is interoperable with the previous theme implementation. ### Patch Changes - Updated dependencies ## 8.2.4 ### Patch Changes - [#12837](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12837) [`f701489305f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f701489305f) - Export Field directly for types to be exported explicitly. - Updated dependencies ## 8.2.3 ### Patch Changes - [#12880](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12880) [`378d1cef00f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/378d1cef00f) - Bump `@atlaskit/theme` to version `^11.3.0`. ## 8.2.2 ### Patch Changes - [#8644](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8644) [`c50a63f9f72`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c50a63f9f72) - Upgrade `@types/react-select` to `v3.1.2` and fix type breaks - Updated dependencies ## 8.2.1 ### Patch Changes - [#8478](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8478) [`5af85edf960`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5af85edf960) - Internal code style change of default exports ## 8.2.0 ### Minor Changes - [#6930](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/6930) [`fa4256f9b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fa4256f9b0) - Add getState to FormProps for inspecting internal Form state (errors, values, et al) - [`9552363cb7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9552363cb7) - [ux] Added a RangeField component to address issues surrounding Range having a different interface to other kinds of inputs. Use a RangeField instead of a Field when using a Range inside of a Form. You must provide a `defaultValue`. ## 8.1.7 ### Patch Changes - [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857) [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc ## 8.1.6 ### Patch Changes - [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497) [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option. This requires version 3.8 of Typescript, read more about how we handle Typescript versions here: https://atlaskit.atlassian.com/get-started Also add `typescript` to `devDependencies` to denote version that the package was built with. ## 8.1.5 ### Patch Changes - Updated dependencies ## 8.1.4 ### Patch Changes - [#4707](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4707) [`6360c46009`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6360c46009) - Reenable integration tests for Edge browser ## 8.1.3 ### Patch Changes - [#4424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4424) [`741e4240d0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/741e4240d0) - Final form dependencies have been upgraded to their latest versions - [`3773e0ad4e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3773e0ad4e) - There was an issue where the validate function in Field would return an incorrect value or even go unresponsive when mixing async and sync validators. This has been fixed by updating the version of `final-form`. The test that validates this is working has been re-enabled. - Updated dependencies ## 8.1.2 ### Patch Changes - [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885) [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0 Since tslib is a dependency for all our packages we recommend that products also follow this tslib upgrade to prevent duplicates of tslib being bundled. ## 8.1.1 ### Patch Changes - [#3823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3823) [`6262f382de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6262f382de) - Use the 'lodash' package instead of single-function 'lodash.\*' packages - [`e99262c6f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e99262c6f0) - All form elements now have a default font explicitly set ## 8.1.0 ### Minor Changes - [#3428](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3428) [`694fee4dcc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/694fee4dcc) - Adding validating status to meta for async validations, and make sure the default value of error in form is a string ### Patch Changes - [`db053b24d8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db053b24d8) - Update all the theme imports to be tree-shakable ## 8.0.0 ### Major Changes - [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335) [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially dropping IE11 support, from this version onwards there are no warranties of the package working in IE11. For more information see: https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534 ### Patch Changes - Updated dependencies ## 7.4.1 ### Patch Changes - [#2763](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2763) [`2e4000e57b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e4000e57b) - Form now fully supports object and array field names. ## 7.4.0 ### Minor Changes - [#2443](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2443) [`fc690a7dd4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fc690a7dd4) - HelperMessage, ErrorMessage and ValidMessage now have an optional prop testId that will set the attribute value data-testid. ## 7.3.1 ### Patch Changes - [#2866](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2866) [`54a9514fcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54a9514fcf) - Build and supporting files will no longer be published to npm ## 7.3.0 ### Minor Changes - [#2137](https://bitbucket.org/atlassian/atlassian-fron