├── .eslintignore ├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── dist ├── dom │ ├── index.d.ts │ └── index.js ├── index.d.ts └── index.js ├── eslint.config.js ├── package.json ├── src ├── app.d.ts ├── app.html ├── lib │ ├── dom │ │ └── index.ts │ └── index.ts └── routes │ ├── +layout.svelte │ ├── +page.svelte │ ├── arrow │ └── +page.svelte │ ├── styles │ └── index.css │ └── virtual │ └── +page.svelte ├── static └── favicon.png ├── svelte-floating-ui.png ├── svelte.config.js ├── tsconfig.json └── vite.config.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/.eslintignore -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/README.md -------------------------------------------------------------------------------- /dist/dom/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from '@floating-ui/dom'; 2 | -------------------------------------------------------------------------------- /dist/dom/index.js: -------------------------------------------------------------------------------- 1 | export * from '@floating-ui/dom'; 2 | -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/dist/index.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/package.json -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/src/app.html -------------------------------------------------------------------------------- /src/lib/dom/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@floating-ui/dom' -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/src/lib/index.ts -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /src/routes/arrow/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/src/routes/arrow/+page.svelte -------------------------------------------------------------------------------- /src/routes/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/src/routes/styles/index.css -------------------------------------------------------------------------------- /src/routes/virtual/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/src/routes/virtual/+page.svelte -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/static/favicon.png -------------------------------------------------------------------------------- /svelte-floating-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/svelte-floating-ui.png -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/HEAD/vite.config.js --------------------------------------------------------------------------------