Skip to content

Releases: jakezatecky/react-checkbox-tree

Release v1.8.0

06 Sep 19:29
Compare
Choose a tag to compare

v1.8.0 (2022-09-06)

Other

  • [#329] Add React 18 to the peer dependency list (Note: React 18 is not part of the automatic testing, but should work)

Release v1.7.3

23 May 13:59
Compare
Choose a tag to compare

v1.7.3 (2022-05-23)

Bug Fixes

  • [#258]: Fix check behavior on nodes with an empty children array

Release v1.7.2

09 Aug 23:50
Compare
Choose a tag to compare

v1.7.2 (2021-08-09)

Bug Fixes

  • [#281]: Fix accessibility issues with checkbox nodes
  • [#288]: Fix issue with custom checkbox icons appearing when nativeCheckboxes={true}

Release v1.7.0

08 Jun 21:11
Compare
Choose a tag to compare

v1.7.0 (2021-06-08)

New Features

  • [#182]: Add direction property to support RTL languages
  • [#211]: Throw an error when nodes have duplicate values
  • [#244]: Add expandNodesToLevel utility

Bug Fixes

  • [#208]: Add missing onCheck argument in TypeScript definition
  • [#248]: Add missing onExpand argument in TypeScript definition

Release v1.6.0

11 Dec 23:35
Compare
Choose a tag to compare

v1.6.0 (2019-12-11)

New Features

  • [#13]: Add checkModel property to specify which nodes should be stored in the checked array (currently "all" and "leaf" supported)
  • [#126]: Add iconsClass property and allow 'fa5' to fully support Font Awesome 5 icons
  • [#171]: Allow parent nodes to have an empty children array

Bug Fixes

  • [#127]: Change TypeScript definition of TreeNode's label property to React.ReactNode to better align with the PropType
  • [#145]: Fix alignment of many React properties to TypeScript typings
  • [#180]: Fix issue where the id property did not apply to the top-level CheckboxTree container

Release v1.5.0

25 Jan 11:29
Compare
Choose a tag to compare

v1.5.0 (2019-01-25)

New Features

  • [#116]: Add id property to specify the DOM ID for the generated tree nodes
  • [#122]: Add label, isLeaf, isParent, parent, treeDepth, and level metadata to the target node of onCheck, onClick, and onExpand handlers

Bug Fixes

  • [#119]: Fix issue where an initially disabled tree could not be enabled after the initial render
  • [#120]: Fix issue where Internet Explorer and Microsoft Edge browsers would fail to update check state when a parent was in a half-check or indeterminate state
  • [#125]: Fix misalignment of TreeNode's label property between PropType and TypeScript definitions

Release v1.4.1

21 Sep 15:07
Compare
Choose a tag to compare

v1.4.1 (2018-09-21)

Bug Fixes

  • [#113]: Add missing expandOpen property from TypeScript declaration (...again)

Release v1.4.0

21 Sep 15:00
Compare
Choose a tag to compare

v1.4.0 (2018-09-21)

New Features

  • [#114]: Add rct-node-expanded and rct-node-collapsed classes to expanded and collapsed parent nodes

Bug Fixes

  • [#113]: Add missing expandOpen property from TypeScript declaration

Release v1.3.1

06 Sep 16:53
Compare
Choose a tag to compare

v1.3.1 (2018-09-06)

Bug Fixes

  • [#109]: Fix erroneous PropTypes check for lang property

Release v1.3.0

05 Sep 21:31
Compare
Choose a tag to compare

v1.3.0 (2018-09-05)

New Features

  • [#79]: Add showExpandAll property to give the user the ability to expand or collapse all nodes in the tree
  • [#96]: Add TypeScript definitions
  • [#102]: Add icons property to allow specification of icon components
  • [#103]: Add title node property and showNodeTitle tree property
  • [#108]: Add lang property for language customization

Bug Fixes

  • [#61]: Fix issue where disabled children would be checked if a parent node was checked

Other

  • [#91]: Prevent disconnection between Sass and Less files on build
  • [#97]: Some performance optimizations