├── .gitignore ├── README.md ├── package.json ├── public ├── apresentacao.gif ├── favicon.ico ├── index.html ├── insta.png ├── logo192.png ├── logo512.png └── twitter.png ├── src ├── App.css ├── App.tsx ├── components │ └── Input │ │ ├── index.tsx │ │ ├── masks.ts │ │ └── styles.css ├── index.tsx └── react-app-env.d.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danileao/youtube-input-mask/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danileao/youtube-input-mask/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danileao/youtube-input-mask/HEAD/package.json -------------------------------------------------------------------------------- /public/apresentacao.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danileao/youtube-input-mask/HEAD/public/apresentacao.gif -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danileao/youtube-input-mask/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danileao/youtube-input-mask/HEAD/public/index.html -------------------------------------------------------------------------------- /public/insta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danileao/youtube-input-mask/HEAD/public/insta.png -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danileao/youtube-input-mask/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danileao/youtube-input-mask/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danileao/youtube-input-mask/HEAD/public/twitter.png -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danileao/youtube-input-mask/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danileao/youtube-input-mask/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danileao/youtube-input-mask/HEAD/src/components/Input/index.tsx -------------------------------------------------------------------------------- /src/components/Input/masks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danileao/youtube-input-mask/HEAD/src/components/Input/masks.ts -------------------------------------------------------------------------------- /src/components/Input/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danileao/youtube-input-mask/HEAD/src/components/Input/styles.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danileao/youtube-input-mask/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danileao/youtube-input-mask/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danileao/youtube-input-mask/HEAD/yarn.lock --------------------------------------------------------------------------------