React Data Menu
Hints-based aligning with custom renderers and factories.
Never clipped by other components or screen edges.
Usage
Installation
Option A - use it as NPM plugin:
This will install the package into the node_modules folder of your project.
Option B - download the project source:
npm install will install all the dependencies (and their dependencies) into the node_modules folder.
Then, you should run one of the builds.
Builds
Hot-loader development build
This will give you the build that will partially update the browser via webpack whenever you save the edited source file.
Additionally, it will keep the React component state intact.
For more info on React hot-loader, take a look into this fantastic video.
Demo build
This should build the minified demo folder (it's how the demo is built).
This should build the non-minified demo folder (for easier debugging).
You could install the http-server for running demo builds in the browser:
Additional builds
Runs Babel on source files (converting ES6 and React to JS) and puts them into the build folder.
Builds the webpackUniversalModuleDefinition and puts it into the dist folder.
Runs all the builds: build + dist + demo.
Runs the tests.