├── .babelrc ├── .eslintrc ├── .gitignore ├── .jscsrc ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── examples └── masking-example.gif ├── lib └── test-helpers │ ├── index.js │ └── throw-error-on-console-error.js ├── package.json ├── rollup.config.js ├── src ├── components │ ├── __snapshots__ │ │ └── currency-input.test.js.snap │ ├── currency-input.js │ └── currency-input.test.js └── services │ ├── currency-conversion.js │ └── currency-conversion.test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcnally/react-currency-masked-input/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcnally/react-currency-masked-input/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.DS_Store 3 | react-currency-masked-input.js 4 | coverage/ 5 | -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcnally/react-currency-masked-input/HEAD/.jscsrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | index.test.js 2 | src/ 3 | .babelrc 4 | lib/ 5 | rollup.config.js 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcnally/react-currency-masked-input/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcnally/react-currency-masked-input/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcnally/react-currency-masked-input/HEAD/README.md -------------------------------------------------------------------------------- /examples/masking-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcnally/react-currency-masked-input/HEAD/examples/masking-example.gif -------------------------------------------------------------------------------- /lib/test-helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcnally/react-currency-masked-input/HEAD/lib/test-helpers/index.js -------------------------------------------------------------------------------- /lib/test-helpers/throw-error-on-console-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcnally/react-currency-masked-input/HEAD/lib/test-helpers/throw-error-on-console-error.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcnally/react-currency-masked-input/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcnally/react-currency-masked-input/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/components/__snapshots__/currency-input.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcnally/react-currency-masked-input/HEAD/src/components/__snapshots__/currency-input.test.js.snap -------------------------------------------------------------------------------- /src/components/currency-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcnally/react-currency-masked-input/HEAD/src/components/currency-input.js -------------------------------------------------------------------------------- /src/components/currency-input.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcnally/react-currency-masked-input/HEAD/src/components/currency-input.test.js -------------------------------------------------------------------------------- /src/services/currency-conversion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcnally/react-currency-masked-input/HEAD/src/services/currency-conversion.js -------------------------------------------------------------------------------- /src/services/currency-conversion.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcnally/react-currency-masked-input/HEAD/src/services/currency-conversion.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianmcnally/react-currency-masked-input/HEAD/yarn.lock --------------------------------------------------------------------------------