├── .babelrc ├── .codeclimate.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── demos ├── demo-swipeable-views │ ├── HorizontalTimelineConfigurator.jsx │ ├── HorizontalTimelineContent.js │ ├── index.html │ └── index.js └── resources │ └── content.js ├── package.json ├── src ├── Components │ ├── EventLine.jsx │ ├── Events.jsx │ ├── EventsBar.jsx │ ├── Faders.jsx │ ├── HorizontalTimeline.jsx │ ├── HorizontalTimelineButtons.jsx │ └── TimelineDot.jsx ├── Constants.js ├── helpers.js └── helpers.test.js ├── tools ├── lint-config.js ├── server.js ├── webpack.config.demos.js ├── webpack.config.js └── webpack.config.prod.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/.babelrc -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | build/ 4 | coverage/ 5 | .nyc_output/ 6 | *.log 7 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/README.md -------------------------------------------------------------------------------- /demos/demo-swipeable-views/HorizontalTimelineConfigurator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/demos/demo-swipeable-views/HorizontalTimelineConfigurator.jsx -------------------------------------------------------------------------------- /demos/demo-swipeable-views/HorizontalTimelineContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/demos/demo-swipeable-views/HorizontalTimelineContent.js -------------------------------------------------------------------------------- /demos/demo-swipeable-views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/demos/demo-swipeable-views/index.html -------------------------------------------------------------------------------- /demos/demo-swipeable-views/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/demos/demo-swipeable-views/index.js -------------------------------------------------------------------------------- /demos/resources/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/demos/resources/content.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/package.json -------------------------------------------------------------------------------- /src/Components/EventLine.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/src/Components/EventLine.jsx -------------------------------------------------------------------------------- /src/Components/Events.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/src/Components/Events.jsx -------------------------------------------------------------------------------- /src/Components/EventsBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/src/Components/EventsBar.jsx -------------------------------------------------------------------------------- /src/Components/Faders.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/src/Components/Faders.jsx -------------------------------------------------------------------------------- /src/Components/HorizontalTimeline.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/src/Components/HorizontalTimeline.jsx -------------------------------------------------------------------------------- /src/Components/HorizontalTimelineButtons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/src/Components/HorizontalTimelineButtons.jsx -------------------------------------------------------------------------------- /src/Components/TimelineDot.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/src/Components/TimelineDot.jsx -------------------------------------------------------------------------------- /src/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/src/Constants.js -------------------------------------------------------------------------------- /src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/src/helpers.js -------------------------------------------------------------------------------- /src/helpers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/src/helpers.test.js -------------------------------------------------------------------------------- /tools/lint-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/tools/lint-config.js -------------------------------------------------------------------------------- /tools/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/tools/server.js -------------------------------------------------------------------------------- /tools/webpack.config.demos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/tools/webpack.config.demos.js -------------------------------------------------------------------------------- /tools/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/tools/webpack.config.js -------------------------------------------------------------------------------- /tools/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/tools/webpack.config.prod.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixypanda/react-horizontal-timeline/HEAD/yarn.lock --------------------------------------------------------------------------------