├── .editorconfig ├── .eslintrc ├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── demo ├── index.css ├── index.html └── index.js ├── gulpfile.js ├── index.js ├── mfb ├── .gitignore ├── .npmignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── package.json ├── src │ ├── _ │ │ ├── _fountain.scss │ │ ├── _slidein-spring.scss │ │ ├── _slidein.scss │ │ └── _zoomin.scss │ ├── index.css │ ├── index.html │ ├── lib │ │ └── modernizr.touch.js │ ├── mfb.css │ ├── mfb.css.map │ ├── mfb.js │ ├── mfb.min.css │ ├── mfb.min.js │ └── mfb.scss └── test │ └── unit.js ├── package.json ├── src ├── child-button.js ├── main-button.js ├── menu.js └── utils │ ├── children-validator.js │ ├── get-children.js │ └── get-classes.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/README.md -------------------------------------------------------------------------------- /demo/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/demo/index.css -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/demo/index.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/index.js -------------------------------------------------------------------------------- /mfb/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .sass-cache/ 4 | .grunt -------------------------------------------------------------------------------- /mfb/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/mfb/.npmignore -------------------------------------------------------------------------------- /mfb/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/mfb/Gruntfile.js -------------------------------------------------------------------------------- /mfb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/mfb/LICENSE -------------------------------------------------------------------------------- /mfb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/mfb/README.md -------------------------------------------------------------------------------- /mfb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/mfb/package.json -------------------------------------------------------------------------------- /mfb/src/_/_fountain.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/mfb/src/_/_fountain.scss -------------------------------------------------------------------------------- /mfb/src/_/_slidein-spring.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/mfb/src/_/_slidein-spring.scss -------------------------------------------------------------------------------- /mfb/src/_/_slidein.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/mfb/src/_/_slidein.scss -------------------------------------------------------------------------------- /mfb/src/_/_zoomin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/mfb/src/_/_zoomin.scss -------------------------------------------------------------------------------- /mfb/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/mfb/src/index.css -------------------------------------------------------------------------------- /mfb/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/mfb/src/index.html -------------------------------------------------------------------------------- /mfb/src/lib/modernizr.touch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/mfb/src/lib/modernizr.touch.js -------------------------------------------------------------------------------- /mfb/src/mfb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/mfb/src/mfb.css -------------------------------------------------------------------------------- /mfb/src/mfb.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/mfb/src/mfb.css.map -------------------------------------------------------------------------------- /mfb/src/mfb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/mfb/src/mfb.js -------------------------------------------------------------------------------- /mfb/src/mfb.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/mfb/src/mfb.min.css -------------------------------------------------------------------------------- /mfb/src/mfb.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/mfb/src/mfb.min.js -------------------------------------------------------------------------------- /mfb/src/mfb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/mfb/src/mfb.scss -------------------------------------------------------------------------------- /mfb/test/unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/mfb/test/unit.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/package.json -------------------------------------------------------------------------------- /src/child-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/src/child-button.js -------------------------------------------------------------------------------- /src/main-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/src/main-button.js -------------------------------------------------------------------------------- /src/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/src/menu.js -------------------------------------------------------------------------------- /src/utils/children-validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/src/utils/children-validator.js -------------------------------------------------------------------------------- /src/utils/get-children.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/src/utils/get-children.js -------------------------------------------------------------------------------- /src/utils/get-classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/src/utils/get-classes.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobitagit/react-material-floating-button/HEAD/yarn.lock --------------------------------------------------------------------------------