Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jakezatecky committed Jul 31, 2017
1 parent cc73ebc commit f3f2ad6
Show file tree
Hide file tree
Showing 5 changed files with 34,430 additions and 16,647 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## v1.1.0 (TBA)
## v1.1.0 (July 31, 2017)

Release **v1.1.0** adds a variety of exciting new functionality to the funnel, and introduces a new data structure that allows for more flexibility on a row level than previously capable:
Release **v1.1.0** adds a variety of new functionality to the funnel, and introduces a new data structure that allows for more flexibility on a row level than previously capable:

``` javascript
funnel.draw([{
Expand All @@ -18,6 +18,7 @@ The old structure of an array-of-arrays has been deprecated and will be removed

### New Features

* [#45]: Add support for tooltips via `tooltip.enabled` and `tooltip.format`
* [#71]: Add `hideLabel` option to the data object
* [#74]: Add `label.enabled` chart option
* [#79]: Add support for `HTMLElement` in the D3Funnel constructor
Expand Down
15 changes: 10 additions & 5 deletions examples/dist/css/style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
* {
box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

body {
Expand Down Expand Up @@ -29,6 +30,7 @@ a:hover {
border-style: solid;
border-width: 1px;
border-radius: 0.3rem;
-webkit-transition: color 0.2s, background-color 0.2s, border-color 0.2s;
transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}

Expand Down Expand Up @@ -359,12 +361,15 @@ a:hover {
}

.demo {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
padding: 10px 30px;
}

Expand Down
5 changes: 4 additions & 1 deletion examples/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ <h2 class="project-tagline">A JavaScript library for rendering funnel charts usi
<input type="checkbox" value="hover">
Highlight on Hover
</label>
<label>
<input type="checkbox" value="tooltip">
Tooltips
</label>
<label>
<input type="checkbox" value="click">
Click Event
Expand Down Expand Up @@ -92,7 +96,6 @@ <h2 class="project-tagline">A JavaScript library for rendering funnel charts usi
</footer>
</section>

<script src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.4/lodash.js"></script>
<script src="js/index.js"></script>
</body>
</html>
Loading

0 comments on commit f3f2ad6

Please sign in to comment.