Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Jan 15, 2022. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: glittershark/reactable
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: bf/reactable
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 20 commits
  • 9 files changed
  • 4 contributors

Commits on Oct 3, 2015

  1. Configuration menu
    Copy the full SHA
    71b81bf View commit details
    Browse the repository at this point in the history
  2. prototype solution to custom components

    Since react will not render child components until the parent component
    is rendered (exploratory hypotheis) We need to render the custom
    component first and then access the component.  This uses a Component
    function of getData().  The getData function could/should be fast
    because after the render function all the data could be available via
    props or state
    
    I have not tested this with updating data from the custom component.  Or
    if the custom component internally changes the data and they table needs
    to resort.
    trshafer authored and glittershark committed Oct 3, 2015
    Configuration menu
    Copy the full SHA
    570cfd1 View commit details
    Browse the repository at this point in the history
  3. Revert "prototype solution to custom components"

    This reverts commit 1fc822d.
    glittershark committed Oct 3, 2015
    Configuration menu
    Copy the full SHA
    3bd8e5a View commit details
    Browse the repository at this point in the history
  4. Allow specifying table rows in custom components

    Use the structure returned by `react.createElement` to do a render of
    any child components with unrecognized types, and extract the data out
    of them if they themselves return a `<Tr>`
    glittershark committed Oct 3, 2015
    Configuration menu
    Copy the full SHA
    7a937ca View commit details
    Browse the repository at this point in the history
  5. Handle passing through context to child components

    When instantiating child components in order to render them, also pass
    through the props given when creating the child component.
    glittershark committed Oct 3, 2015
    Configuration menu
    Copy the full SHA
    3ca5bb7 View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2017

  1. Allow <Thead> className customization

    introduce `headerClassName` option to table, as the className to the <Thead> element is somehow ignored
    Benjamin Flesch authored Jan 20, 2017
    Configuration menu
    Copy the full SHA
    11f8a5a View commit details
    Browse the repository at this point in the history
  2. filter headerClassName prop

    Benjamin Flesch authored Jan 20, 2017
    Configuration menu
    Copy the full SHA
    d92e464 View commit details
    Browse the repository at this point in the history
  3. move to jsx

    Benjamin Flesch committed Jan 20, 2017
    Configuration menu
    Copy the full SHA
    a08958a View commit details
    Browse the repository at this point in the history
  4. undo change of entry point..

    Benjamin Flesch committed Jan 20, 2017
    Configuration menu
    Copy the full SHA
    0689d68 View commit details
    Browse the repository at this point in the history
  5. re-add lib

    Benjamin Flesch committed Jan 20, 2017
    Configuration menu
    Copy the full SHA
    456e153 View commit details
    Browse the repository at this point in the history
  6. fix entry point.. again

    Benjamin Flesch committed Jan 20, 2017
    Configuration menu
    Copy the full SHA
    62f6c7c View commit details
    Browse the repository at this point in the history
  7. add missing name

    Benjamin Flesch committed Jan 20, 2017
    Configuration menu
    Copy the full SHA
    ffc3faa View commit details
    Browse the repository at this point in the history
  8. fix filter props

    Benjamin Flesch committed Jan 20, 2017
    Configuration menu
    Copy the full SHA
    e5c6d84 View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2017

  1. fix bug where pagination is shown if we have only 1 page

    Benjamin Flesch committed Jan 25, 2017
    Configuration menu
    Copy the full SHA
    b4d0c94 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2017

  1. Merge remote-tracking branch 'origin/tr-custom-components'

    Benjamin Flesch committed Jan 26, 2017
    Configuration menu
    Copy the full SHA
    7ceb1ca View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2017

  1. Revert "Allow specifying table rows in custom components"

    This reverts commit 7a937ca.
    Benjamin Flesch committed Feb 1, 2017
    Configuration menu
    Copy the full SHA
    85015e3 View commit details
    Browse the repository at this point in the history
  2. Revert "Revert "prototype solution to custom components""

    This reverts commit 3bd8e5a.
    Benjamin Flesch committed Feb 1, 2017
    Configuration menu
    Copy the full SHA
    2e930ec View commit details
    Browse the repository at this point in the history
  3. Merge branch 'tr-custom-components'

    Benjamin Flesch committed Feb 1, 2017
    Configuration menu
    Copy the full SHA
    8bcbfa2 View commit details
    Browse the repository at this point in the history
  4. use cloneElement

    Benjamin Flesch committed Feb 1, 2017
    Configuration menu
    Copy the full SHA
    f75edfd View commit details
    Browse the repository at this point in the history
  5. compile to bundle

    Benjamin Flesch committed Feb 1, 2017
    Configuration menu
    Copy the full SHA
    aa2b9e0 View commit details
    Browse the repository at this point in the history
Loading