├── .gitignore ├── .nvmrc ├── .travis.yml ├── LICENSE ├── README.md ├── __tests__ └── index.tsx ├── custom-typings ├── .gitkeep ├── atlaskit.d.ts └── typings.d.ts ├── example ├── app.tsx ├── assets │ └── .gitkeep ├── index.html ├── index.tsx ├── root_files │ └── .gitkeep └── styled.ts ├── logo.png ├── package.json ├── src └── index.ts ├── toolbox-config.json ├── tsconfig.json ├── video-snapshot.gif └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/video-snapshot/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8.5.0 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/video-snapshot/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/video-snapshot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/video-snapshot/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/video-snapshot/HEAD/__tests__/index.tsx -------------------------------------------------------------------------------- /custom-typings/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom-typings/atlaskit.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@atlaskit/*'; -------------------------------------------------------------------------------- /custom-typings/typings.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@atlaskit/*'; -------------------------------------------------------------------------------- /example/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/video-snapshot/HEAD/example/app.tsx -------------------------------------------------------------------------------- /example/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/video-snapshot/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/video-snapshot/HEAD/example/index.tsx -------------------------------------------------------------------------------- /example/root_files/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/video-snapshot/HEAD/example/styled.ts -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/video-snapshot/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/video-snapshot/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/video-snapshot/HEAD/src/index.ts -------------------------------------------------------------------------------- /toolbox-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Video snapshot" 3 | } -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/video-snapshot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /video-snapshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/video-snapshot/HEAD/video-snapshot.gif -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/video-snapshot/HEAD/yarn.lock --------------------------------------------------------------------------------