Exported library using bit so people can now:
- Find and install the component in bit.dev.
- Play with the examples and edit the code.
- See all the tests in each component.
- Install each component individually instead of installing all the project.
- Import component in their project to modify the code locally if needed.
- See all dependencies.
- See bundle size of the component before installing it.
* feat(svg): add an interval prop
Add an interval prop that controls the duration of the interval between two animations. For
instance, an interval of `.25` and an animation speed of `2` imply that the animation will
take 1.5s to complete, and wait 0.5s before starting again.
* feat(svg): add a gradientRatio prop
Add a gradientRatio prop that controls the width of the gradient relative to the viewbox's own
width. For instance, a gradientRatio of `0.5` and a width of `200` imply that the resulting gradient
will have a width of 100px.
* docs(docz): add props section
* feat(svg): add an interval prop
Add an interval prop that controls the duration of the interval between two animations. For
instance, an interval of `.25` and an animation speed of `2` imply that the animation will
take 1.5s to complete, and wait 0.5s before starting again.
* docs(options): add interval prop
* Ignore file generated by docz
* Add docz config
* Bump react versions; Add docz deps; Add docz scripts
* Introduction docs for docz
* Add usage docs
* Remove unused import
* Ignore rpt2_cache in version control
* Remove storybook and update dev script
* Update docs to refer docz instead of storybook
* Remove storybook files
* Ignore vs code specific files in version control
* Safari and iOS transparency workaround
Introduction of `primaryOpacity` and `secondaryOpacity`
* Remove primaryOpacity/secondaryOpacity conditional props type
* Add tests for primaryOpacity and secondaryOpacity
* Add props and create logic to controll speed animation
* Add stories to no animation
* Add tests on animation prop
* Set animation to appear just when animate prop is true
* Change tests to expected behavior
* Att on readme
* Update readme
* Realocate tests
* Export default props
* Refactor tests
* Refactor disposal of tests
* Remove custom components https://github.com/danilowoz/react-content-loader/issues/46
* return <rect/> and <circle/> in stories, update readme.md, return test for 'when type is custom'
* fix indentation, move 'when type is custom' test from 'Type props are used' block