Skip to content

Commit

Permalink
chore(containers): remove Form from default export (#1031)
Browse files Browse the repository at this point in the history
  • Loading branch information
romainseb authored and jsomsanith-tlnd committed Feb 2, 2018
1 parent 2238561 commit 39c0766
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
17 changes: 16 additions & 1 deletion BREAKING_CHANGES_LOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@ Before 1.0, the stack do NOT follow semver version in releases.

This document aims to ease the WIP migration from a version to another by providing intels about what to do to migrate.

## v0.151.0
* Container: Form
* PR: https://github.com/Talend/ui/pull/1031
* Changes: With Form container in default export, we must have form as dependency on the project that import containers. Remove Form from default export and import it à la lodash when you need it.

Before
```javascript
import { Form } from '@talend/react-containers'
```
After
```javascript
import Form from '@talend/react-containers/lib/Form'
```


## 0.150.0
* Component: Typeahead
* PR: [chore: upgrade react-autowhatever](https://github.com/Talend/ui/pull/1022)
Expand Down Expand Up @@ -46,7 +61,7 @@ function renderItemsContainer({ children, containerProps }) {
);
}
```

## v0.143.0
* Component: CollapsiblePanel
* PR: [feat(components/collapsiblepanel): style update](https://github.com/Talend/ui/pull/961)
Expand Down
2 changes: 0 additions & 2 deletions packages/containers/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import Actions from './Actions';
import ActionSplitDropdown from './ActionSplitDropdown';
import ConfirmDialog from './ConfirmDialog';
import FilterBar from './FilterBar';
import Form from './Form';
import HeaderBar from './HeaderBar';
import HomeListView from './HomeListView';
import List from './List';
Expand Down Expand Up @@ -50,7 +49,6 @@ export {
Drawer,
DeleteResource,
FilterBar,
Form,
HeaderBar,
HomeListView,
Icon,
Expand Down

0 comments on commit 39c0766

Please sign in to comment.