Skip to content

Commit 263d40f

Browse files
committed
docs(changelog): changelog of 1.1.0
1 parent d914eb4 commit 263d40f

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
### 1.1.0 (June 13, 2017)
4+
5+
#### New Features
6+
7+
- Add nested TabList and TabPanel support (#184)
8+
9+
This allows random elements as children for the `<Tabs />` component, for example:
10+
11+
```jsx
12+
<Tabs>
13+
<div id="tabs-nav-wrapper">
14+
<button>Left</button>
15+
<div className="tabs-container">
16+
<TabList>{tabs}</TabList>
17+
</div>
18+
<button>Right</button>
19+
</div>
20+
<div className="tab-panels">
21+
{tabPanels}
22+
</div>
23+
</Tabs>
24+
```
25+
326
### 1.0.0 (May 10, 2017)
427

528
#### Breaking Changes

0 commit comments

Comments
 (0)