├── .eslintrc.js ├── .gitignore ├── .lintstagedrc ├── .npmrc ├── .prettierrc ├── .snyk ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── codecov.yml ├── demo ├── .prettierrc ├── package.json ├── public │ ├── favicon.svg │ ├── fonts │ │ ├── beleren │ │ │ ├── BELEREN-BOLD-SMALLCAPS.ttf │ │ │ ├── BELEREN-BOLD.eot │ │ │ ├── BELEREN-BOLD.svg │ │ │ ├── BELEREN-BOLD.ttf │ │ │ ├── BELEREN-BOLD.woff │ │ │ └── _index.scss │ │ └── index.scss │ └── index.html └── src │ ├── elements.js │ ├── index.js │ ├── modal.js │ ├── radio.js │ └── state.js ├── greenkeeper.json ├── jest.config.js ├── nwb.config.js ├── package.json ├── resources └── header.png ├── src ├── __TEST__ │ └── mana.spec.js ├── index.js ├── mana.js └── symbols.js └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/.prettierrc -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/.snyk -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/codecov.yml -------------------------------------------------------------------------------- /demo/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/demo/.prettierrc -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/demo/public/favicon.svg -------------------------------------------------------------------------------- /demo/public/fonts/beleren/BELEREN-BOLD-SMALLCAPS.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/demo/public/fonts/beleren/BELEREN-BOLD-SMALLCAPS.ttf -------------------------------------------------------------------------------- /demo/public/fonts/beleren/BELEREN-BOLD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/demo/public/fonts/beleren/BELEREN-BOLD.eot -------------------------------------------------------------------------------- /demo/public/fonts/beleren/BELEREN-BOLD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/demo/public/fonts/beleren/BELEREN-BOLD.svg -------------------------------------------------------------------------------- /demo/public/fonts/beleren/BELEREN-BOLD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/demo/public/fonts/beleren/BELEREN-BOLD.ttf -------------------------------------------------------------------------------- /demo/public/fonts/beleren/BELEREN-BOLD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/demo/public/fonts/beleren/BELEREN-BOLD.woff -------------------------------------------------------------------------------- /demo/public/fonts/beleren/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/demo/public/fonts/beleren/_index.scss -------------------------------------------------------------------------------- /demo/public/fonts/index.scss: -------------------------------------------------------------------------------- 1 | @import "./beleren/index.scss"; 2 | -------------------------------------------------------------------------------- /demo/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/demo/public/index.html -------------------------------------------------------------------------------- /demo/src/elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/demo/src/elements.js -------------------------------------------------------------------------------- /demo/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/demo/src/index.js -------------------------------------------------------------------------------- /demo/src/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/demo/src/modal.js -------------------------------------------------------------------------------- /demo/src/radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/demo/src/radio.js -------------------------------------------------------------------------------- /demo/src/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/demo/src/state.js -------------------------------------------------------------------------------- /greenkeeper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/greenkeeper.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/jest.config.js -------------------------------------------------------------------------------- /nwb.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/nwb.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/package.json -------------------------------------------------------------------------------- /resources/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/resources/header.png -------------------------------------------------------------------------------- /src/__TEST__/mana.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/src/__TEST__/mana.spec.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/src/index.js -------------------------------------------------------------------------------- /src/mana.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/src/mana.js -------------------------------------------------------------------------------- /src/symbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/src/symbols.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saeris/react-mana/HEAD/yarn.lock --------------------------------------------------------------------------------