├── .gitignore ├── .prettierrc ├── README.md ├── index.html ├── package.json ├── public └── vite.svg ├── src ├── App.css ├── App.tsx ├── Editor.tsx ├── assets │ └── react.svg ├── components │ ├── NewEditor │ │ ├── NewEditor.tsx │ │ ├── editorStyles.ts │ │ └── editorUtils.ts │ └── Popover │ │ └── Popover.tsx ├── highlight.css ├── index.css ├── main.tsx ├── plugin.ts ├── types.ts ├── utils.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/package.json -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/src/Editor.tsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/NewEditor/NewEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/src/components/NewEditor/NewEditor.tsx -------------------------------------------------------------------------------- /src/components/NewEditor/editorStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/src/components/NewEditor/editorStyles.ts -------------------------------------------------------------------------------- /src/components/NewEditor/editorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/src/components/NewEditor/editorUtils.ts -------------------------------------------------------------------------------- /src/components/Popover/Popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/src/components/Popover/Popover.tsx -------------------------------------------------------------------------------- /src/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/src/highlight.css -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/src/plugin.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanvesh01/experimental-hover-docs/HEAD/vite.config.ts --------------------------------------------------------------------------------