├── .babelrc ├── .eslintrc.js ├── .gitignore ├── .idea ├── misc.xml └── vcs.xml ├── .prettierrc ├── README.md ├── dist ├── ChildButton.d.ts ├── FloatingMenu.d.ts ├── MainButton.d.ts ├── index.css ├── index.d.ts ├── index.js.map ├── index.modern.js ├── index.modern.js.map └── index.test.d.ts ├── example ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── App.test.tsx │ ├── App.tsx │ ├── index.css │ ├── index.tsx │ ├── react-app-env.d.ts │ └── setupTests.ts ├── tsconfig.json └── yarn.lock ├── package.json ├── src ├── .eslintrc ├── ChildButton.tsx ├── FloatingMenu.tsx ├── MainButton.tsx ├── index.test.tsx ├── index.tsx ├── styles.module.css └── typings.d.ts ├── tsconfig.json ├── tsconfig.test.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/README.md -------------------------------------------------------------------------------- /dist/ChildButton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/dist/ChildButton.d.ts -------------------------------------------------------------------------------- /dist/FloatingMenu.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/dist/FloatingMenu.d.ts -------------------------------------------------------------------------------- /dist/MainButton.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/dist/MainButton.d.ts -------------------------------------------------------------------------------- /dist/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/dist/index.css -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/index.modern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/dist/index.modern.js -------------------------------------------------------------------------------- /dist/index.modern.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/dist/index.modern.js.map -------------------------------------------------------------------------------- /dist/index.test.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/example/README.md -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/example/package.json -------------------------------------------------------------------------------- /example/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/example/public/favicon.ico -------------------------------------------------------------------------------- /example/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/example/public/index.html -------------------------------------------------------------------------------- /example/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/example/public/manifest.json -------------------------------------------------------------------------------- /example/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/example/src/App.test.tsx -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/example/src/index.css -------------------------------------------------------------------------------- /example/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/example/src/index.tsx -------------------------------------------------------------------------------- /example/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /example/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/example/src/setupTests.ts -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/package.json -------------------------------------------------------------------------------- /src/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/src/.eslintrc -------------------------------------------------------------------------------- /src/ChildButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/src/ChildButton.tsx -------------------------------------------------------------------------------- /src/FloatingMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/src/FloatingMenu.tsx -------------------------------------------------------------------------------- /src/MainButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/src/MainButton.tsx -------------------------------------------------------------------------------- /src/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/src/index.test.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/src/styles.module.css -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifndefdeadmau5/react-floating-button-menu/HEAD/yarn.lock --------------------------------------------------------------------------------