├── .github └── workflows │ ├── nodejs.yml │ └── npmpublish.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── rollup.config.js ├── src ├── components │ ├── Image.tsx │ └── Video.tsx ├── index.ts ├── interface │ └── index.ts └── provider │ └── ImageKit.tsx ├── test-app ├── .gitignore ├── README.md ├── app │ ├── app.css │ ├── components │ │ └── basic.tsx │ ├── root.tsx │ ├── routes.ts │ └── routes │ │ ├── csr.tsx │ │ └── ssr.tsx ├── e2e │ ├── __snapshot__ │ │ ├── csr.spec.ts │ │ │ └── CSR-test-case-1.txt │ │ └── ssr.spec.ts │ │ │ └── SSR-test-case-1.txt │ ├── csr.spec.ts │ └── ssr.spec.ts ├── package.json ├── playwright.config.ts ├── public │ └── favicon.ico ├── react-router.config.ts ├── tsconfig.json └── vite.config.ts └── tsconfig.json /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github/workflows/npmpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/.github/workflows/npmpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | package-lock.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/components/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/src/components/Image.tsx -------------------------------------------------------------------------------- /src/components/Video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/src/components/Video.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interface/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/src/interface/index.ts -------------------------------------------------------------------------------- /src/provider/ImageKit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/src/provider/ImageKit.tsx -------------------------------------------------------------------------------- /test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/test-app/.gitignore -------------------------------------------------------------------------------- /test-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/test-app/README.md -------------------------------------------------------------------------------- /test-app/app/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-app/app/components/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/test-app/app/components/basic.tsx -------------------------------------------------------------------------------- /test-app/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/test-app/app/root.tsx -------------------------------------------------------------------------------- /test-app/app/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/test-app/app/routes.ts -------------------------------------------------------------------------------- /test-app/app/routes/csr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/test-app/app/routes/csr.tsx -------------------------------------------------------------------------------- /test-app/app/routes/ssr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/test-app/app/routes/ssr.tsx -------------------------------------------------------------------------------- /test-app/e2e/__snapshot__/csr.spec.ts/CSR-test-case-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/test-app/e2e/__snapshot__/csr.spec.ts/CSR-test-case-1.txt -------------------------------------------------------------------------------- /test-app/e2e/__snapshot__/ssr.spec.ts/SSR-test-case-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/test-app/e2e/__snapshot__/ssr.spec.ts/SSR-test-case-1.txt -------------------------------------------------------------------------------- /test-app/e2e/csr.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/test-app/e2e/csr.spec.ts -------------------------------------------------------------------------------- /test-app/e2e/ssr.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/test-app/e2e/ssr.spec.ts -------------------------------------------------------------------------------- /test-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/test-app/package.json -------------------------------------------------------------------------------- /test-app/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/test-app/playwright.config.ts -------------------------------------------------------------------------------- /test-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/test-app/public/favicon.ico -------------------------------------------------------------------------------- /test-app/react-router.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/test-app/react-router.config.ts -------------------------------------------------------------------------------- /test-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/test-app/tsconfig.json -------------------------------------------------------------------------------- /test-app/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/test-app/vite.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imagekit-developer/imagekit-react/HEAD/tsconfig.json --------------------------------------------------------------------------------