├── .gitignore ├── .nvmrc ├── .travis.yml ├── LICENSE ├── README.md ├── __tests__ └── index.tsx ├── custom-typings ├── .gitkeep └── atlaskit.d.ts ├── example ├── app.tsx ├── assets │ └── .gitkeep ├── index.html ├── index.tsx ├── styled.ts └── utils.ts ├── package.json ├── src ├── generateKey.ts └── index.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/react-smart-key/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8.5.0 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/react-smart-key/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/react-smart-key/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/react-smart-key/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/react-smart-key/HEAD/__tests__/index.tsx -------------------------------------------------------------------------------- /custom-typings/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom-typings/atlaskit.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@atlaskit/*'; -------------------------------------------------------------------------------- /example/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/react-smart-key/HEAD/example/app.tsx -------------------------------------------------------------------------------- /example/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/react-smart-key/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/react-smart-key/HEAD/example/index.tsx -------------------------------------------------------------------------------- /example/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/react-smart-key/HEAD/example/styled.ts -------------------------------------------------------------------------------- /example/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/react-smart-key/HEAD/example/utils.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/react-smart-key/HEAD/package.json -------------------------------------------------------------------------------- /src/generateKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/react-smart-key/HEAD/src/generateKey.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/react-smart-key/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/react-smart-key/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/react-smart-key/HEAD/yarn.lock --------------------------------------------------------------------------------