All Versions
61
Latest Version
Avg Release Cycle
90 days
Latest Release
1 day ago

Changelog History
Page 5

  • v6.7.1 Changes

    April 13, 2020

    ๐Ÿ›  Fixes

    • ๐Ÿ›  fix the wrong type for direction should be auto, not autodetect
  • v6.7.0 Changes

    April 13, 2020

    ๐Ÿ”‹ Features

    • 0๏ธโƒฃ #532 #514 #536 You can now force language direction on RDT using direction="auto | rtl | ltr"} The default setting is auto which, in browser environments will detect the dir attribute on the html or body tags. For SSR environments this check is bypassed so you may want to use direction="rtl" if you need to support an rtl language

    ๐Ÿ›  Fixes

    ๐Ÿ‘€ #521 - when using selectableRowsHighlight with stripedRows you can now see the selection on an odd row

  • v6.6.0 Changes

    April 12, 2020

    ๐Ÿ”‹ Features

    • #514 add a new prop rtl which "forces" RDT to render in rtl
  • v6.5.0 Changes

    April 11, 2020

    ๐Ÿ”‹ Features

    • #518 when using pagination and selectableRows, you may now use the new prop selectableRowsVisibleOnly to restrict selected rows to only those on the current page. If you use Gmail then this should be familiar
    • #530 You can now specify an "All" in the pagination select dropdown using

      paginationComponentOptions={{ selectAllRowsItem: true, }}

    ๐Ÿ›  Fixes

    • ๐Ÿ’ป #522 No longer throw a typescript error for selectableRowsComponentProps. selectableRowsComponentProps is generic in that the props depend on which UI library you are integrating with.
    • โœ๏ธ Typos in README
  • v6.4.0 Changes

    April 05, 2020

    ๐Ÿ”‹ Features

    • #511 you can now programmatically control if a row is expanded via expandableRowExpanded when your data changes. Previously, expandableRowExpanded only allowed this on the initial data render.

    ๐Ÿ›  Fixes

    • #513 fix missing typing for selectableRowsNoSelectAll
  • v6.3.6 Changes

    April 04, 2020

    ๐Ÿ›  Fixes

    • #509 fix onSelectedRowsChange typings
  • v6.3.5 Changes

    April 01, 2020

    ๐Ÿ›  Fixes

    • ๐Ÿ›  #506 fixes an issue where RDT buttons were causing a submit when DataTable is wrapped with a <form> tag

    ๐Ÿšง Maintenance

    • โฌ†๏ธ bump dependencies
  • v6.3.4 Changes

    March 31, 2020

    ๐Ÿ›  Fixes

    • #492 added missing selectableRowsComponent and selectableRowsComponentProps to typings
  • v6.3.1 Changes

    February 22, 2020

    ๐Ÿ›  Fixes

    • #442 and #469 If a row's keyField is the numbder 0 (e.g. { id: 0 ...}) RDT will not correctly render rows. Instead, RDT will check if the field isEmpty(undefined, null or no length) instead.
  • v6.3.0 Changes

    February 08, 2020

    ๐Ÿ†• New Features

    • #449 As a convenience, you can now column[].omit. omit takes a boolean on whether to render the column or not.
    • ๐Ÿ’… #431 expandableRowsHideExpander is a new prop that allows you to completely hide the expander cell. This is useful when using expandOnRowClicked or expandOnRowDoubleClicked where you may not want or need the expander button to show. Additionally, you can now apply customStyles via the new expanderCell customStyle.

    ๐Ÿ›  Fixes

    • ๐Ÿ›  #428 Wrapping RDT with a flex element would cause a vertical scroll bar to appear. This should now be fixed.