├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── package.json ├── packages ├── component │ ├── README.md │ ├── package.json │ ├── src │ │ ├── ReactDocumentPictureInPicture.tsx │ │ ├── globals.d.ts │ │ └── index.tsx │ └── tsconfig.json └── examples │ ├── dist │ ├── index.0fef4f03.css │ ├── index.0fef4f03.css.map │ ├── index.46f76c42.js │ ├── index.46f76c42.js.map │ └── index.html │ ├── package.json │ ├── src │ ├── App.tsx │ ├── CodeSnippet │ │ └── index.tsx │ ├── EventsExampleSection │ │ └── index.tsx │ ├── ShareStylesExampleSection │ │ └── index.tsx │ ├── SizeExampleSection │ │ └── index.tsx │ ├── UnsupportedExampleSection │ │ └── index.tsx │ ├── UsingRefExampleSection │ │ └── index.tsx │ ├── index.html │ ├── index.tsx │ └── style.scss │ └── tsconfig.json ├── pnpm-lock.yaml └── pnpm-workspace.yaml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "powerHeader.autoInsert.enable": false, 3 | } -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/SECURITY.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/package.json -------------------------------------------------------------------------------- /packages/component/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/component/README.md -------------------------------------------------------------------------------- /packages/component/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/component/package.json -------------------------------------------------------------------------------- /packages/component/src/ReactDocumentPictureInPicture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/component/src/ReactDocumentPictureInPicture.tsx -------------------------------------------------------------------------------- /packages/component/src/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/component/src/globals.d.ts -------------------------------------------------------------------------------- /packages/component/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/component/src/index.tsx -------------------------------------------------------------------------------- /packages/component/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/component/tsconfig.json -------------------------------------------------------------------------------- /packages/examples/dist/index.0fef4f03.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/examples/dist/index.0fef4f03.css -------------------------------------------------------------------------------- /packages/examples/dist/index.0fef4f03.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/examples/dist/index.0fef4f03.css.map -------------------------------------------------------------------------------- /packages/examples/dist/index.46f76c42.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/examples/dist/index.46f76c42.js -------------------------------------------------------------------------------- /packages/examples/dist/index.46f76c42.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/examples/dist/index.46f76c42.js.map -------------------------------------------------------------------------------- /packages/examples/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/examples/dist/index.html -------------------------------------------------------------------------------- /packages/examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/examples/package.json -------------------------------------------------------------------------------- /packages/examples/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/examples/src/App.tsx -------------------------------------------------------------------------------- /packages/examples/src/CodeSnippet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/examples/src/CodeSnippet/index.tsx -------------------------------------------------------------------------------- /packages/examples/src/EventsExampleSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/examples/src/EventsExampleSection/index.tsx -------------------------------------------------------------------------------- /packages/examples/src/ShareStylesExampleSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/examples/src/ShareStylesExampleSection/index.tsx -------------------------------------------------------------------------------- /packages/examples/src/SizeExampleSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/examples/src/SizeExampleSection/index.tsx -------------------------------------------------------------------------------- /packages/examples/src/UnsupportedExampleSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/examples/src/UnsupportedExampleSection/index.tsx -------------------------------------------------------------------------------- /packages/examples/src/UsingRefExampleSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/examples/src/UsingRefExampleSection/index.tsx -------------------------------------------------------------------------------- /packages/examples/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/examples/src/index.html -------------------------------------------------------------------------------- /packages/examples/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/examples/src/index.tsx -------------------------------------------------------------------------------- /packages/examples/src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/examples/src/style.scss -------------------------------------------------------------------------------- /packages/examples/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/packages/examples/tsconfig.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinshaw/react-document-picture-in-picture/HEAD/pnpm-workspace.yaml --------------------------------------------------------------------------------