Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add splitpane repo #955

Closed
wants to merge 299 commits into from
Closed

Add splitpane repo #955

wants to merge 299 commits into from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on May 27, 2015

  1. Provide a way of building a standalone/UMD JS file

    There may be more required for this to really work.  require.js does not seem
    entirely happy with the built module since it's failing to scan the deps, but
    if I ensure they're already loaded things work.  Which is at least a good first
    step!
    asutherland committed May 27, 2015
    Configuration menu
    Copy the full SHA
    afc7242 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2 from asutherland/do-not-assume-event

    event needs to be a specified argument of the handlers
    tomkp committed May 27, 2015
    Configuration menu
    Copy the full SHA
    8c3b3bf View commit details
    Browse the repository at this point in the history

Commits on May 28, 2015

  1. ...

    tomkp committed May 28, 2015
    Configuration menu
    Copy the full SHA
    e6b22ba View commit details
    Browse the repository at this point in the history
  2. split vertically by default

    tomkp committed May 28, 2015
    Configuration menu
    Copy the full SHA
    679b7eb View commit details
    Browse the repository at this point in the history
  3. improving tests

    tomkp committed May 28, 2015
    Configuration menu
    Copy the full SHA
    9605946 View commit details
    Browse the repository at this point in the history

Commits on May 29, 2015

  1. empty dist directory

    tomkp committed May 29, 2015
    Configuration menu
    Copy the full SHA
    1317898 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #3 from asutherland/standalone-dist

    Provide a way of building a standalone/UMD JS file
    tomkp committed May 29, 2015
    Configuration menu
    Copy the full SHA
    3c51235 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    134aee0 View commit details
    Browse the repository at this point in the history
  4. added dist file

    tomkp committed May 29, 2015
    Configuration menu
    Copy the full SHA
    7b83485 View commit details
    Browse the repository at this point in the history
  5. introducing eslint

    tomkp committed May 29, 2015
    Configuration menu
    Copy the full SHA
    2a0b8f4 View commit details
    Browse the repository at this point in the history
  6. eslinting

    tomkp committed May 29, 2015
    Configuration menu
    Copy the full SHA
    781315b View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2015

  1. test

    tomkp committed Jun 1, 2015
    Configuration menu
    Copy the full SHA
    c0bc7cc View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2015

  1. Configuration menu
    Copy the full SHA
    21780b0 View commit details
    Browse the repository at this point in the history
  2. extra tag

    tomkp committed Jun 14, 2015
    Configuration menu
    Copy the full SHA
    5885983 View commit details
    Browse the repository at this point in the history
  3. adding github urls

    tomkp committed Jun 14, 2015
    Configuration menu
    Copy the full SHA
    a395d88 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2015

  1. es6 all the way

    tomkp committed Jun 15, 2015
    Configuration menu
    Copy the full SHA
    eccc6d4 View commit details
    Browse the repository at this point in the history
  2. 0.0.4

    tomkp committed Jun 15, 2015
    Configuration menu
    Copy the full SHA
    caa4f4c View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2015

  1. code in es6, publish es5

    tomkp committed Jun 16, 2015
    Configuration menu
    Copy the full SHA
    0b6f6a9 View commit details
    Browse the repository at this point in the history
  2. fixing dependencies

    tomkp committed Jun 16, 2015
    Configuration menu
    Copy the full SHA
    26eb0e5 View commit details
    Browse the repository at this point in the history
  3. demo...

    tomkp committed Jun 16, 2015
    Configuration menu
    Copy the full SHA
    1da8b89 View commit details
    Browse the repository at this point in the history
  4. 0.0.5

    tomkp committed Jun 16, 2015
    Configuration menu
    Copy the full SHA
    4468395 View commit details
    Browse the repository at this point in the history
  5. updated README

    tomkp committed Jun 16, 2015
    Configuration menu
    Copy the full SHA
    95e9fd0 View commit details
    Browse the repository at this point in the history
  6. 0.0.6

    tomkp committed Jun 16, 2015
    Configuration menu
    Copy the full SHA
    c1b995e View commit details
    Browse the repository at this point in the history
  7. remove core-js shim

    tomkp committed Jun 16, 2015
    Configuration menu
    Copy the full SHA
    077a16c View commit details
    Browse the repository at this point in the history
  8. 0.0.7

    tomkp committed Jun 16, 2015
    Configuration menu
    Copy the full SHA
    6f7612d View commit details
    Browse the repository at this point in the history
  9. updated README

    tomkp committed Jun 16, 2015
    Configuration menu
    Copy the full SHA
    6bce88e View commit details
    Browse the repository at this point in the history
  10. 0.0.8

    tomkp committed Jun 16, 2015
    Configuration menu
    Copy the full SHA
    3bbc6ff View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2015

  1. use 'split' instead of 'orientation', reverse horizontal and vertical...

    <SplitPane orientation="horizontal">
        <div></div>
        <div></div>
    </SplitPane>
    
    is now
    
    <SplitPane split="vertical">
        <div></div>
        <div></div>
    </SplitPane>
    tomkp committed Jun 17, 2015
    Configuration menu
    Copy the full SHA
    dccb065 View commit details
    Browse the repository at this point in the history
  2. 0.1.0

    tomkp committed Jun 17, 2015
    Configuration menu
    Copy the full SHA
    e186f67 View commit details
    Browse the repository at this point in the history
  3. default to vertically split

    tomkp committed Jun 17, 2015
    Configuration menu
    Copy the full SHA
    7762417 View commit details
    Browse the repository at this point in the history
  4. 0.1.1

    tomkp committed Jun 17, 2015
    Configuration menu
    Copy the full SHA
    9aff833 View commit details
    Browse the repository at this point in the history
  5. ...

    tomkp committed Jun 17, 2015
    Configuration menu
    Copy the full SHA
    41ca614 View commit details
    Browse the repository at this point in the history
  6. 0.1.2

    tomkp committed Jun 17, 2015
    Configuration menu
    Copy the full SHA
    beb24de View commit details
    Browse the repository at this point in the history
  7. 0.1.3

    tomkp committed Jun 17, 2015
    Configuration menu
    Copy the full SHA
    4aefeb4 View commit details
    Browse the repository at this point in the history
  8. 0.1.4

    tomkp committed Jun 17, 2015
    Configuration menu
    Copy the full SHA
    474ecb6 View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2015

  1. Update README.md

    tomkp committed Jun 19, 2015
    Configuration menu
    Copy the full SHA
    e696934 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2015

  1. Update README.md

    tomkp committed Jul 2, 2015
    Configuration menu
    Copy the full SHA
    b5230eb View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2015

  1. Configuration menu
    Copy the full SHA
    218e60d View commit details
    Browse the repository at this point in the history
  2. updated readme

    tomkp committed Jul 5, 2015
    Configuration menu
    Copy the full SHA
    db3c7bd View commit details
    Browse the repository at this point in the history
  3. updated readme

    tomkp committed Jul 5, 2015
    Configuration menu
    Copy the full SHA
    4ca9be0 View commit details
    Browse the repository at this point in the history
  4. demo...

    tomkp committed Jul 5, 2015
    Configuration menu
    Copy the full SHA
    1d5bd04 View commit details
    Browse the repository at this point in the history
  5. updated readme

    tomkp committed Jul 5, 2015
    Configuration menu
    Copy the full SHA
    1758edf View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4ec451b View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2015

  1. bump packages

    tomkp committed Jul 8, 2015
    Configuration menu
    Copy the full SHA
    6917c4c View commit details
    Browse the repository at this point in the history
  2. demo

    tomkp committed Jul 8, 2015
    Configuration menu
    Copy the full SHA
    df49211 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2015

  1. unused

    tomkp committed Jul 9, 2015
    Configuration menu
    Copy the full SHA
    5b8ab4b View commit details
    Browse the repository at this point in the history
  2. 0.1.5

    tomkp committed Jul 9, 2015
    Configuration menu
    Copy the full SHA
    c7215f5 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2015

  1. export index.js

    tomkp committed Jul 12, 2015
    Configuration menu
    Copy the full SHA
    cd3c92d View commit details
    Browse the repository at this point in the history
  2. 0.1.6

    tomkp committed Jul 12, 2015
    Configuration menu
    Copy the full SHA
    aa1877a View commit details
    Browse the repository at this point in the history
  3. use index.js for demo

    tomkp committed Jul 12, 2015
    Configuration menu
    Copy the full SHA
    88c02e6 View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2015

  1. index.js to use es5 syntax

    tomkp committed Jul 14, 2015
    Configuration menu
    Copy the full SHA
    d69f73c View commit details
    Browse the repository at this point in the history
  2. 0.1.7

    tomkp committed Jul 14, 2015
    Configuration menu
    Copy the full SHA
    c77d757 View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2015

  1. npm update

    tomkp committed Aug 4, 2015
    Configuration menu
    Copy the full SHA
    6be04bc View commit details
    Browse the repository at this point in the history
  2. 0.1.8

    tomkp committed Aug 4, 2015
    Configuration menu
    Copy the full SHA
    05fb9cd View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2015

  1. update npm

    tomkp committed Aug 14, 2015
    Configuration menu
    Copy the full SHA
    db29afb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3f25fa2 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2015

  1. use chai instead of expect.js,

    implement defaultSize as described in tomkp/react-split-pane#4
    additional work on an assertion DSL for testing
    tomkp committed Aug 16, 2015
    Configuration menu
    Copy the full SHA
    921435a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bd74a57 View commit details
    Browse the repository at this point in the history
  3. assert on defaultSize

    tomkp committed Aug 16, 2015
    Configuration menu
    Copy the full SHA
    a3c31bd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0a485a9 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9c9792b View commit details
    Browse the repository at this point in the history
  6. split tests

    tomkp committed Aug 16, 2015
    Configuration menu
    Copy the full SHA
    b492db2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0baba9a View commit details
    Browse the repository at this point in the history
  8. 0.1.9

    tomkp committed Aug 16, 2015
    Configuration menu
    Copy the full SHA
    55ce13c View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    4126490 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    4f330b5 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2015

  1. rename tests

    tomkp committed Aug 17, 2015
    Configuration menu
    Copy the full SHA
    6e93fc5 View commit details
    Browse the repository at this point in the history
  2. test refactor

    tomkp committed Aug 17, 2015
    Configuration menu
    Copy the full SHA
    81580c5 View commit details
    Browse the repository at this point in the history
  3. demo update

    tomkp committed Aug 17, 2015
    Configuration menu
    Copy the full SHA
    2126b4a View commit details
    Browse the repository at this point in the history
  4. test dsl refactor

    tomkp committed Aug 17, 2015
    Configuration menu
    Copy the full SHA
    24f07bb View commit details
    Browse the repository at this point in the history
  5. 0.1.10

    tomkp committed Aug 17, 2015
    Configuration menu
    Copy the full SHA
    84f3f5c View commit details
    Browse the repository at this point in the history
  6. updated readme

    tomkp committed Aug 17, 2015
    Configuration menu
    Copy the full SHA
    a0051b8 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2015

  1. npm package upgrade

    tomkp committed Sep 28, 2015
    Configuration menu
    Copy the full SHA
    4b5fd4a View commit details
    Browse the repository at this point in the history
  2. export defaults

    tomkp committed Sep 28, 2015
    Configuration menu
    Copy the full SHA
    d982c9d View commit details
    Browse the repository at this point in the history
  3. 0.1.11

    tomkp committed Sep 28, 2015
    Configuration menu
    Copy the full SHA
    d578bf3 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2015

  1. Configuration menu
    Copy the full SHA
    6a9d526 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2015

  1. Merge pull request #8 from tomkp/greenkeeper-pin

    Pinned all dependencies
    tomkp committed Oct 3, 2015
    Configuration menu
    Copy the full SHA
    1e0ce6d View commit details
    Browse the repository at this point in the history
  2. 0.1.12

    tomkp committed Oct 3, 2015
    Configuration menu
    Copy the full SHA
    79fa7e9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3ac5c41 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2015

  1. Implement onChange prop to enable persistence

    onChange allows the user of the SplitPane to receive a callback invocation
    when the splitter's position is changed.  This can be persisted somewhere
    like localStorage.  This commit updates README.md to include an example
    of using localStorage to this end, as well as some advice on why one might
    want to use something other than localStorage.
    asutherland committed Oct 4, 2015
    Configuration menu
    Copy the full SHA
    573a865 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #9 from asutherland/persist

    Implement onChange prop to enable persistence
    tomkp committed Oct 4, 2015
    Configuration menu
    Copy the full SHA
    d5b8619 View commit details
    Browse the repository at this point in the history
  3. 0.1.13

    tomkp committed Oct 4, 2015
    Configuration menu
    Copy the full SHA
    a9fb557 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2015

  1. react 0.14

    tomkp committed Oct 7, 2015
    Configuration menu
    Copy the full SHA
    21e272e View commit details
    Browse the repository at this point in the history
  2. react 0.14 - demo

    tomkp committed Oct 7, 2015
    Configuration menu
    Copy the full SHA
    f965e7d View commit details
    Browse the repository at this point in the history
  3. node version for travis

    tomkp committed Oct 7, 2015
    Configuration menu
    Copy the full SHA
    9d75f7f View commit details
    Browse the repository at this point in the history
  4. revert

    tomkp committed Oct 7, 2015
    Configuration menu
    Copy the full SHA
    bc6aca9 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2015

  1. React 14

    tomkp committed Oct 14, 2015
    Configuration menu
    Copy the full SHA
    1b8c3d5 View commit details
    Browse the repository at this point in the history
  2. 0.1.14

    tomkp committed Oct 14, 2015
    Configuration menu
    Copy the full SHA
    156b831 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2015

  1. remove commented out lines

    tomkp committed Oct 15, 2015
    Configuration menu
    Copy the full SHA
    9d8df04 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2015

  1. remove cruft

    tomkp committed Oct 19, 2015
    Configuration menu
    Copy the full SHA
    ba15d27 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2015

  1. Configuration menu
    Copy the full SHA
    466801d View commit details
    Browse the repository at this point in the history
  2. demo update

    tomkp committed Oct 24, 2015
    Configuration menu
    Copy the full SHA
    daec01f View commit details
    Browse the repository at this point in the history
  3. 0.1.15

    tomkp committed Oct 24, 2015
    Configuration menu
    Copy the full SHA
    d0d8206 View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2015

  1. Configuration menu
    Copy the full SHA
    efb0fcd View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12 from tomkp/greenkeeper-browserify-12.0.0

    Update browserify to version 12.0.0 🚀
    tomkp committed Oct 26, 2015
    Configuration menu
    Copy the full SHA
    dd34581 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2015

  1. npm update

    tomkp committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    12e32b7 View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'origin/master'

    # Conflicts:
    #	package.json
    tomkp committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    9aeaca3 View commit details
    Browse the repository at this point in the history
  3. 0.1.16

    tomkp committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    b1b91b6 View commit details
    Browse the repository at this point in the history
  4. npm update

    tomkp committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    0a581de View commit details
    Browse the repository at this point in the history
  5. npm update - babel

    tomkp committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    afca927 View commit details
    Browse the repository at this point in the history
  6. 0.1.17

    tomkp committed Nov 3, 2015
    Configuration menu
    Copy the full SHA
    ba37b1c View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2015

  1. npm update

    tomkp committed Nov 15, 2015
    Configuration menu
    Copy the full SHA
    ae153d9 View commit details
    Browse the repository at this point in the history
  2. 0.1.18

    tomkp committed Nov 15, 2015
    Configuration menu
    Copy the full SHA
    53c9d23 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2015

  1. npm update

    tomkp committed Nov 16, 2015
    Configuration menu
    Copy the full SHA
    3059e89 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2015

  1. npm update

    tomkp committed Nov 22, 2015
    Configuration menu
    Copy the full SHA
    9c6559d View commit details
    Browse the repository at this point in the history
  2. 0.1.19

    tomkp committed Nov 22, 2015
    Configuration menu
    Copy the full SHA
    6e90c53 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2015

  1. Fix resize with scrollbar

    chenwenlong committed Nov 28, 2015
    Configuration menu
    Copy the full SHA
    970d56e View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2015

  1. Merge pull request #29 from qzchenwl/master

    Fix resize with scrollbar
    tomkp committed Nov 29, 2015
    Configuration menu
    Copy the full SHA
    94777bb View commit details
    Browse the repository at this point in the history
  2. updated demo

    tomkp committed Nov 29, 2015
    Configuration menu
    Copy the full SHA
    b62b5b3 View commit details
    Browse the repository at this point in the history
  3. 0.1.20

    tomkp committed Nov 29, 2015
    Configuration menu
    Copy the full SHA
    32c90d0 View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2015

  1. Added babel-plugins-add-module-exports

    For compatibility for non-ES6 require()
    AnsonT committed Dec 15, 2015
    Configuration menu
    Copy the full SHA
    ad38d67 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #31 from AnsonT/AnsonT-add-module-exports

    Added babel-plugins-add-module-exports
    tomkp committed Dec 15, 2015
    Configuration menu
    Copy the full SHA
    10bf7c3 View commit details
    Browse the repository at this point in the history

Commits on Dec 27, 2015

  1. Allow text selection

    rohn committed Dec 27, 2015
    Configuration menu
    Copy the full SHA
    cd21cf8 View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2015

  1. Merge pull request #35 from rohn/allowSelect

    Allow text selection
    tomkp committed Dec 28, 2015
    Configuration menu
    Copy the full SHA
    12006bb View commit details
    Browse the repository at this point in the history
  2. 0.1.21

    tomkp committed Dec 28, 2015
    Configuration menu
    Copy the full SHA
    283f08b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3622de9 View commit details
    Browse the repository at this point in the history
  4. 0.1.22

    tomkp committed Dec 28, 2015
    Configuration menu
    Copy the full SHA
    f0a6450 View commit details
    Browse the repository at this point in the history
  5. npm update

    tomkp committed Dec 28, 2015
    Configuration menu
    Copy the full SHA
    8651fab View commit details
    Browse the repository at this point in the history
  6. demo url reflects project name

    tomkp committed Dec 28, 2015
    Configuration menu
    Copy the full SHA
    a354771 View commit details
    Browse the repository at this point in the history
  7. demo favicon

    tomkp committed Dec 28, 2015
    Configuration menu
    Copy the full SHA
    e13ceb9 View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2016

  1. Configuration menu
    Copy the full SHA
    d2dfa7f View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2016

  1. Configuration menu
    Copy the full SHA
    0d57454 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2016

  1. Merge pull request #37 from antal-bukos/add-drag-finished-event

    Add onDragFinished property
    tomkp committed Jan 19, 2016
    Configuration menu
    Copy the full SHA
    3983035 View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2016

  1. Configuration menu
    Copy the full SHA
    90fc9ec View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2016

  1. Configuration menu
    Copy the full SHA
    4a418ea View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2016

  1. 0.1.23

    tomkp committed Jan 23, 2016
    Configuration menu
    Copy the full SHA
    12a3ab2 View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2016

  1. add onDragStart property

    jirokun committed Feb 16, 2016
    Configuration menu
    Copy the full SHA
    a24c799 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3165f13 View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2016

  1. Check if defaultSize !== undefined

    Otherwise defaultSize={0} does not work
    Meowtimer committed Feb 24, 2016
    Configuration menu
    Copy the full SHA
    d8da58a View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2016

  1. Update Pane.js

    aktenkundig committed Feb 25, 2016
    Configuration menu
    Copy the full SHA
    dd280af View commit details
    Browse the repository at this point in the history
  2. Update SplitPane.js

    aktenkundig committed Feb 25, 2016
    Configuration menu
    Copy the full SHA
    841d926 View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2016

  1. Merge pull request #42 from tomkp/greenkeeper-babel-eslint-5.0.0

    Update babel-eslint to version 5.0.0 🚀
    tomkp committed Feb 26, 2016
    Configuration menu
    Copy the full SHA
    42d8c72 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #39 from tomkp/greenkeeper-browserify-13.0.0

    Update browserify to version 13.0.0 🚀
    tomkp committed Feb 26, 2016
    Configuration menu
    Copy the full SHA
    659476c View commit details
    Browse the repository at this point in the history
  3. Merge pull request #45 from Meowtimer/patch-1

    Check if defaultSize !== undefined
    tomkp committed Feb 26, 2016
    Configuration menu
    Copy the full SHA
    c803014 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #46 from jirokun/master

    add onDragStart property
    tomkp committed Feb 26, 2016
    Configuration menu
    Copy the full SHA
    c005dd2 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #47 from neo6238/master

    null checking improved
    tomkp committed Feb 26, 2016
    Configuration menu
    Copy the full SHA
    429474e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9cdccf2 View commit details
    Browse the repository at this point in the history
  7. npm upgrade

    tomkp committed Feb 26, 2016
    Configuration menu
    Copy the full SHA
    950f2fe View commit details
    Browse the repository at this point in the history
  8. 0.1.24

    tomkp committed Feb 26, 2016
    Configuration menu
    Copy the full SHA
    4cce60c View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2016

  1. ignore lcov.info

    tomkp committed Feb 27, 2016
    Configuration menu
    Copy the full SHA
    8bff188 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8bdddcb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c2c07eb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    df7f908 View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2016

  1. Configuration menu
    Copy the full SHA
    76548a1 View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2016

  1. Merge pull request #50 from machacekjan/master

    Adds new prop primary. It defines which Pane will keep its size.
    tomkp committed Mar 4, 2016
    Configuration menu
    Copy the full SHA
    e6cc893 View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2016

  1. continuous deployment of demo

    tomkp committed Mar 5, 2016
    Configuration menu
    Copy the full SHA
    58f7b61 View commit details
    Browse the repository at this point in the history
  2. 0.1.25

    tomkp committed Mar 5, 2016
    Configuration menu
    Copy the full SHA
    cce6400 View commit details
    Browse the repository at this point in the history
  3. auto update npm version

    tomkp committed Mar 5, 2016
    Configuration menu
    Copy the full SHA
    7fe464c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    922623e View commit details
    Browse the repository at this point in the history
  5. new demo js

    tomkp committed Mar 5, 2016
    Configuration menu
    Copy the full SHA
    18417a2 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c325e53 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2016

  1. npm release hook

    tomkp committed Mar 6, 2016
    Configuration menu
    Copy the full SHA
    469473d View commit details
    Browse the repository at this point in the history
  2. npm release hook

    tomkp committed Mar 6, 2016
    Configuration menu
    Copy the full SHA
    2ef63ca View commit details
    Browse the repository at this point in the history
  3. revert: npm release hook

    tomkp committed Mar 6, 2016
    Configuration menu
    Copy the full SHA
    5710a09 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2016

  1. remove overflow auto from Pane

    tomkp committed Mar 28, 2016
    Configuration menu
    Copy the full SHA
    350ba3f View commit details
    Browse the repository at this point in the history
  2. packages update

    tomkp committed Mar 28, 2016
    Configuration menu
    Copy the full SHA
    8a7d881 View commit details
    Browse the repository at this point in the history
  3. 0.1.26

    tomkp committed Mar 28, 2016
    Configuration menu
    Copy the full SHA
    7774698 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2016

  1. Allow for optional class name for a SplitPane.

    Panes now have extra default class - Pane1 & Pane2.
    tomkp committed Mar 29, 2016
    Configuration menu
    Copy the full SHA
    dd4a6b9 View commit details
    Browse the repository at this point in the history
  2. 0.1.27

    tomkp committed Mar 29, 2016
    Configuration menu
    Copy the full SHA
    f722c4c View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2016

  1. onDragStart renamed to it's past tense form (to match onDragFinished)…

    …. More specific type checks. ReadMe update.
    vlad-nica committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    35e209a View commit details
    Browse the repository at this point in the history
  2. Tests for resize callbacks

    vlad-nica committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    a739b47 View commit details
    Browse the repository at this point in the history
  3. separate css file for demo

    tomkp committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    4009c55 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #54 from Hubrus/master

    Resizing callbacks type check + ReadMe update
    tomkp committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    3f3ff2f View commit details
    Browse the repository at this point in the history
  5. - Allow setting size through props

    - Allow disabling resizing
    Dylan Schuster authored and tomkp committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    a427f19 View commit details
    Browse the repository at this point in the history
  6. adding /lib directory

    Dylan Schuster authored and tomkp committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    d6ec450 View commit details
    Browse the repository at this point in the history
  7. lib files

    Dylan Schuster authored and tomkp committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    aad2ea0 View commit details
    Browse the repository at this point in the history
  8. fixing initial mount size

    Dylan Schuster authored and tomkp committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    f26e158 View commit details
    Browse the repository at this point in the history
  9. fixing de-syncing of position and mouse when user scrolls past minwid…

    …th point
    Dylan Schuster authored and tomkp committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    07913d5 View commit details
    Browse the repository at this point in the history
  10. ignore the lib directory

    tomkp committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    5165ec6 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    5c32977 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    648c480 View commit details
    Browse the repository at this point in the history
  13. lib directory is not committed to source control - it gets built when…

    … the module is published
    tomkp committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    4204508 View commit details
    Browse the repository at this point in the history
  14. fix up tests

    tomkp committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    6e3f8b0 View commit details
    Browse the repository at this point in the history
  15. updated demo code

    tomkp committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    52834da View commit details
    Browse the repository at this point in the history
  16. npm update

    tomkp committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    decf1a5 View commit details
    Browse the repository at this point in the history
  17. 0.1.28

    tomkp committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    852f6f1 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    4825fa3 View commit details
    Browse the repository at this point in the history
  19. npm bump

    tomkp committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    0387211 View commit details
    Browse the repository at this point in the history
  20. 0.1.29

    tomkp committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    c1357b8 View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2016

  1. Added maxSize property

    zerkms committed Mar 31, 2016
    Configuration menu
    Copy the full SHA
    b4db70a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    577941f View commit details
    Browse the repository at this point in the history
  3. Fixed travis PRs

    Now PRs will not be tried to publish to surge, which causes failure (since PRs are not authorised to do so)
    zerkms committed Mar 31, 2016
    Configuration menu
    Copy the full SHA
    e1eff52 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #60 from zerkms/TRAVIS_PR_FIX

    Fixed travis PRs
    tomkp committed Mar 31, 2016
    Configuration menu
    Copy the full SHA
    894cb0c View commit details
    Browse the repository at this point in the history
  5. Merge pull request #58 from zerkms/ISSUE-56_MAXSIZE_PROP

    Added maxSize property
    tomkp committed Mar 31, 2016
    Configuration menu
    Copy the full SHA
    1cb47c5 View commit details
    Browse the repository at this point in the history
  6. updated demo

    tomkp committed Mar 31, 2016
    Configuration menu
    Copy the full SHA
    57311fc View commit details
    Browse the repository at this point in the history
  7. Merge pull request #59 from zerkms/ESLINT_AIRBNB

    Added eslint based on airbnb config
    tomkp committed Mar 31, 2016
    Configuration menu
    Copy the full SHA
    016bdc4 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    132398f View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    8331ec0 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2016

  1. Merge pull request #61 from zerkms/STYLE_FIXES

    Style fixes
    tomkp committed Apr 1, 2016
    Configuration menu
    Copy the full SHA
    a34b10b View commit details
    Browse the repository at this point in the history
  2. 0.1.30

    tomkp committed Apr 1, 2016
    Configuration menu
    Copy the full SHA
    e2be48a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ba83b54 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #62 from zerkms/TESTS_MAXSIZE_MINSIZE

    Implemented tests for maxSize and minSize
    tomkp committed Apr 1, 2016
    Configuration menu
    Copy the full SHA
    bf85fff View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2016

  1. Configuration menu
    Copy the full SHA
    f0eeb2d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    318b621 View commit details
    Browse the repository at this point in the history
  3. Update README.md

    thani-sh committed Apr 6, 2016
    Configuration menu
    Copy the full SHA
    ad08044 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #2 from mnmtanish/resizer-children

    Get resizer children from user
    Muhammed Thanish committed Apr 6, 2016
    Configuration menu
    Copy the full SHA
    624aba8 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2016

  1. Update package.json

    thani-sh committed Apr 8, 2016
    Configuration menu
    Copy the full SHA
    24d6ca6 View commit details
    Browse the repository at this point in the history
  2. Release v1.0.0.

    thani-sh committed Apr 8, 2016
    Configuration menu
    Copy the full SHA
    6b25e19 View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2016

  1. Update to v15.0.0

    arunoda committed Apr 9, 2016
    Configuration menu
    Copy the full SHA
    493c74e View commit details
    Browse the repository at this point in the history
  2. 1.1.0

    arunoda committed Apr 9, 2016
    Configuration menu
    Copy the full SHA
    d49f441 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f871c37 View commit details
    Browse the repository at this point in the history
  4. 1.2.0

    arunoda committed Apr 9, 2016
    Configuration menu
    Copy the full SHA
    8738b13 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2016

  1. accept string as size

    ritz078 committed Apr 23, 2016
    Configuration menu
    Copy the full SHA
    43a3fe9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1 from ritz078/fix/proptype

    accept string as size
    arunoda committed Apr 23, 2016
    Configuration menu
    Copy the full SHA
    993f9df View commit details
    Browse the repository at this point in the history
  3. 1.2.0

    arunoda committed Apr 23, 2016
    Configuration menu
    Copy the full SHA
    8436f31 View commit details
    Browse the repository at this point in the history
  4. Change reponame to kadira

    arunoda committed Apr 23, 2016
    Configuration menu
    Copy the full SHA
    4e53f84 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5dc4bcf View commit details
    Browse the repository at this point in the history
  6. 1.3.0

    arunoda committed Apr 23, 2016
    Configuration menu
    Copy the full SHA
    7146ca0 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2016

  1. Remove vendor-prefixes to support SSR.

    Also changed some styles.
    arunoda committed May 3, 2016
    Configuration menu
    Copy the full SHA
    9de315c View commit details
    Browse the repository at this point in the history
  2. 1.3.0

    arunoda committed May 3, 2016
    Configuration menu
    Copy the full SHA
    19ad120 View commit details
    Browse the repository at this point in the history
  3. Update Changelog

    arunoda committed May 3, 2016
    Configuration menu
    Copy the full SHA
    f66defb View commit details
    Browse the repository at this point in the history
  4. Merge changes from master.

    arunoda committed May 3, 2016
    Configuration menu
    Copy the full SHA
    0310346 View commit details
    Browse the repository at this point in the history
  5. 1.4.0

    arunoda committed May 3, 2016
    Configuration menu
    Copy the full SHA
    6d7178e View commit details
    Browse the repository at this point in the history

Commits on May 13, 2016

  1. Use a .babelrc file

    thani-sh committed May 13, 2016
    Configuration menu
    Copy the full SHA
    b411123 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2 from kadirahq/fix-babel-issue

    Use a .babelrc file
    Muhammed Thanish committed May 13, 2016
    Configuration menu
    Copy the full SHA
    c1e281d View commit details
    Browse the repository at this point in the history
  3. Release v1.4.1.

    thani-sh committed May 13, 2016
    Configuration menu
    Copy the full SHA
    9e7ea4e View commit details
    Browse the repository at this point in the history

Commits on May 30, 2016

  1. Publish compiled code

    thani-sh committed May 30, 2016
    Configuration menu
    Copy the full SHA
    2592588 View commit details
    Browse the repository at this point in the history
  2. Release v1.4.2.

    thani-sh committed May 30, 2016
    Configuration menu
    Copy the full SHA
    f113f9a View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2016

  1. Remove default minSize

    thani-sh committed Jun 3, 2016
    Configuration menu
    Copy the full SHA
    543f24f View commit details
    Browse the repository at this point in the history
  2. Release v1.4.3.

    thani-sh committed Jun 3, 2016
    Configuration menu
    Copy the full SHA
    fa6d3e4 View commit details
    Browse the repository at this point in the history
  3. Add storybook

    thani-sh committed Jun 3, 2016
    Configuration menu
    Copy the full SHA
    6bd56ee View commit details
    Browse the repository at this point in the history
  4. Merge pull request #3 from kadirahq/add-storybook

    Add storybook
    Muhammed Thanish committed Jun 3, 2016
    Configuration menu
    Copy the full SHA
    c89172c View commit details
    Browse the repository at this point in the history
  5. Fix undefined variable

    thani-sh committed Jun 3, 2016
    Configuration menu
    Copy the full SHA
    dc84be4 View commit details
    Browse the repository at this point in the history
  6. Add gh-pages script

    thani-sh committed Jun 3, 2016
    Configuration menu
    Copy the full SHA
    c8f12b9 View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2016

  1. Use react-storybook-story

    thani-sh committed Jun 14, 2016
    Configuration menu
    Copy the full SHA
    609cb66 View commit details
    Browse the repository at this point in the history
  2. Update gh-pages

    thani-sh committed Jun 14, 2016
    Configuration menu
    Copy the full SHA
    9797420 View commit details
    Browse the repository at this point in the history
  3. 1.4.4

    thani-sh committed Jun 14, 2016
    Configuration menu
    Copy the full SHA
    e222f6e View commit details
    Browse the repository at this point in the history
  4. Refactor story

    thani-sh committed Jun 14, 2016
    Configuration menu
    Copy the full SHA
    cde4d32 View commit details
    Browse the repository at this point in the history
  5. Update react-storybook-story

    thani-sh committed Jun 14, 2016
    Configuration menu
    Copy the full SHA
    7b2574c View commit details
    Browse the repository at this point in the history
  6. Update static build

    thani-sh committed Jun 14, 2016
    Configuration menu
    Copy the full SHA
    4ef0294 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2016

  1. Add displayName property

    thani-sh committed Jun 15, 2016
    Configuration menu
    Copy the full SHA
    96a0fbd View commit details
    Browse the repository at this point in the history
  2. Refactor webpack config

    thani-sh committed Jun 15, 2016
    Configuration menu
    Copy the full SHA
    fe90c55 View commit details
    Browse the repository at this point in the history
  3. Update demo page

    thani-sh committed Jun 15, 2016
    Configuration menu
    Copy the full SHA
    a5688bf View commit details
    Browse the repository at this point in the history
  4. Update dependencies

    thani-sh committed Jun 15, 2016
    Configuration menu
    Copy the full SHA
    a4e3a51 View commit details
    Browse the repository at this point in the history
  5. Update dependencies

    thani-sh committed Jun 15, 2016
    Configuration menu
    Copy the full SHA
    6c803ac View commit details
    Browse the repository at this point in the history
  6. 1.4.5

    thani-sh committed Jun 15, 2016
    Configuration menu
    Copy the full SHA
    12e4db4 View commit details
    Browse the repository at this point in the history
  7. Fix default story

    thani-sh committed Jun 15, 2016
    Configuration menu
    Copy the full SHA
    350df26 View commit details
    Browse the repository at this point in the history
  8. Update dependencies

    thani-sh committed Jun 15, 2016
    Configuration menu
    Copy the full SHA
    a68c48e View commit details
    Browse the repository at this point in the history
  9. 1.4.6

    thani-sh committed Jun 15, 2016
    Configuration menu
    Copy the full SHA
    75baca3 View commit details
    Browse the repository at this point in the history
  10. Update dependencies

    thani-sh committed Jun 15, 2016
    Configuration menu
    Copy the full SHA
    1102e4c View commit details
    Browse the repository at this point in the history
  11. 1.4.7

    thani-sh committed Jun 15, 2016
    Configuration menu
    Copy the full SHA
    8da6264 View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2016

  1. Add PropType.string for defaultSize to allow "xx%"

    Richard Farman committed Jul 16, 2016
    Configuration menu
    Copy the full SHA
    ada2a83 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2017

  1. Merge pull request #4 from farmanrl/farmanrl-defaultSize-prop

    Add PropType.string for defaultSize to allow "xx%"
    ndelangen committed Apr 23, 2017
    Configuration menu
    Copy the full SHA
    736fc17 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'master' of github.com:storybooks/react-split-pane into …

    …add-splitpane-repo
    
    # Conflicts:
    #	.gitignore
    #	.npmignore
    #	.travis.yml
    #	LICENSE
    #	README.md
    #	package.json
    ndelangen committed Apr 23, 2017
    Configuration menu
    Copy the full SHA
    484a98f View commit details
    Browse the repository at this point in the history
  3. MOVE to packages

    ndelangen committed Apr 23, 2017
    Configuration menu
    Copy the full SHA
    07ceb53 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0471f23 View commit details
    Browse the repository at this point in the history
  5. FIX incorrect lint config

    ndelangen committed Apr 23, 2017
    Configuration menu
    Copy the full SHA
    3660b6c View commit details
    Browse the repository at this point in the history
  6. FIX linting

    ndelangen committed Apr 23, 2017
    Configuration menu
    Copy the full SHA
    2829f04 View commit details
    Browse the repository at this point in the history
  7. ADD lib (dist) to ignore

    ndelangen committed Apr 23, 2017
    Configuration menu
    Copy the full SHA
    1246d85 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e6b421a View commit details
    Browse the repository at this point in the history