├── .eslintrc.js ├── .github └── workflows │ ├── deploy-preview.yaml │ ├── deploy-prod.yaml │ ├── release.yaml │ └── test.yaml ├── .gitignore ├── .licensee.json ├── .npmignore ├── .prettierrc.js ├── .releaserc.json ├── LICENSE ├── README.md ├── assets └── license_header.txt ├── css └── styles.css ├── examples └── create-react-app │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ ├── setupTests.js │ └── terminals │ │ ├── basic.js │ │ ├── color.js │ │ ├── custom-element.js │ │ ├── custom-prompt.js │ │ ├── progress.js │ │ └── spinner.js │ └── yarn.lock ├── jest.config.js ├── licenseconfig.json ├── media ├── demo-basic.gif ├── demo-frames.gif ├── demo-progress.gif ├── demo-spinner.gif ├── demo.gif └── white-terminal.png ├── package.json ├── src ├── Code.tsx ├── Renderer.tsx ├── Terminal.tsx ├── __snapshots__ │ └── contentHandler.spec.ts.snap ├── contentHandler.spec.ts ├── contentHandler.ts └── index.ts ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/deploy-preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/.github/workflows/deploy-preview.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/.github/workflows/deploy-prod.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/.gitignore -------------------------------------------------------------------------------- /.licensee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/.licensee.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/.releaserc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/README.md -------------------------------------------------------------------------------- /assets/license_header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/assets/license_header.txt -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/css/styles.css -------------------------------------------------------------------------------- /examples/create-react-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/.gitignore -------------------------------------------------------------------------------- /examples/create-react-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/README.md -------------------------------------------------------------------------------- /examples/create-react-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/package.json -------------------------------------------------------------------------------- /examples/create-react-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/public/favicon.ico -------------------------------------------------------------------------------- /examples/create-react-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/public/index.html -------------------------------------------------------------------------------- /examples/create-react-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/public/logo192.png -------------------------------------------------------------------------------- /examples/create-react-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/public/logo512.png -------------------------------------------------------------------------------- /examples/create-react-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/public/manifest.json -------------------------------------------------------------------------------- /examples/create-react-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/public/robots.txt -------------------------------------------------------------------------------- /examples/create-react-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/src/App.css -------------------------------------------------------------------------------- /examples/create-react-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/src/App.js -------------------------------------------------------------------------------- /examples/create-react-app/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/src/App.test.js -------------------------------------------------------------------------------- /examples/create-react-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/src/index.css -------------------------------------------------------------------------------- /examples/create-react-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/src/index.js -------------------------------------------------------------------------------- /examples/create-react-app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/src/logo.svg -------------------------------------------------------------------------------- /examples/create-react-app/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/src/reportWebVitals.js -------------------------------------------------------------------------------- /examples/create-react-app/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/src/setupTests.js -------------------------------------------------------------------------------- /examples/create-react-app/src/terminals/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/src/terminals/basic.js -------------------------------------------------------------------------------- /examples/create-react-app/src/terminals/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/src/terminals/color.js -------------------------------------------------------------------------------- /examples/create-react-app/src/terminals/custom-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/src/terminals/custom-element.js -------------------------------------------------------------------------------- /examples/create-react-app/src/terminals/custom-prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/src/terminals/custom-prompt.js -------------------------------------------------------------------------------- /examples/create-react-app/src/terminals/progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/src/terminals/progress.js -------------------------------------------------------------------------------- /examples/create-react-app/src/terminals/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/src/terminals/spinner.js -------------------------------------------------------------------------------- /examples/create-react-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/examples/create-react-app/yarn.lock -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/jest.config.js -------------------------------------------------------------------------------- /licenseconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/licenseconfig.json -------------------------------------------------------------------------------- /media/demo-basic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/media/demo-basic.gif -------------------------------------------------------------------------------- /media/demo-frames.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/media/demo-frames.gif -------------------------------------------------------------------------------- /media/demo-progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/media/demo-progress.gif -------------------------------------------------------------------------------- /media/demo-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/media/demo-spinner.gif -------------------------------------------------------------------------------- /media/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/media/demo.gif -------------------------------------------------------------------------------- /media/white-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/media/white-terminal.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/package.json -------------------------------------------------------------------------------- /src/Code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/src/Code.tsx -------------------------------------------------------------------------------- /src/Renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/src/Renderer.tsx -------------------------------------------------------------------------------- /src/Terminal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/src/Terminal.tsx -------------------------------------------------------------------------------- /src/__snapshots__/contentHandler.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/src/__snapshots__/contentHandler.spec.ts.snap -------------------------------------------------------------------------------- /src/contentHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/src/contentHandler.spec.ts -------------------------------------------------------------------------------- /src/contentHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/src/contentHandler.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitrictech/react-animated-term/HEAD/yarn.lock --------------------------------------------------------------------------------