Skip to content

Commit

Permalink
Release v0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jakezatecky committed May 25, 2017
1 parent 87fe44f commit b628527
Show file tree
Hide file tree
Showing 5 changed files with 994 additions and 781 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

## v0.6.2 (TBD)
## [v0.6.2](https://github.com/jakezatecky/react-checkbox-tree/compare/v0.6.1...v0.6.2) (2017-05-25)

### New Features

Expand Down
13 changes: 12 additions & 1 deletion examples/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,19 @@ <h2>Basic Example</h2>
<h2>Custom Icons Example</h2>
<div id="custom-icons-example"></div>

<h2>No Cascading Example</h2>
<p>
By default, the check state of a parent is determined by the check state of its children. Similarly, checking or
unchecking a parent node will cascade that status to all of its children. To disable this behavior, simply pass
the <code>noCascade</code> property.
</p>
<div id="no-cascade-example"></div>

<h2>Pessimistic Toggle Example</h2>
<p>Try clicking a partially-checked node. Instead of select all children, the pessimistic model will uncheck them.</p>
<p>
Try clicking a partially-checked node below. Instead of cascading a checked state to all children, the
pessimistic model will uncheck children and their descendents.
</p>
<div id="pessimistic-toggle-example"></div>

<h2>Large Data Example</h2>
Expand Down
Loading

0 comments on commit b628527

Please sign in to comment.