├── .github └── workflows │ └── node.js.yml ├── .vercel ├── README.txt └── project.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── documentation ├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── README.md ├── package.json ├── postcss.config.cjs ├── src │ ├── app.css │ ├── app.d.ts │ ├── app.html │ ├── components │ │ ├── AlgoliaLogo.svelte │ │ ├── Anatomy │ │ │ ├── Anatomy.svelte │ │ │ ├── Classes.svelte │ │ │ ├── DynamicSlots.svelte │ │ │ ├── Slots.svelte │ │ │ └── Structure.svelte │ │ ├── Examples │ │ │ ├── Examples.svelte │ │ │ └── example.ts │ │ ├── Navigation.svelte │ │ ├── Pokemon │ │ │ ├── Pokedex.svelte │ │ │ ├── PokemonContent.svelte │ │ │ ├── PokemonEmptySearch.svelte │ │ │ ├── PokemonFooter.svelte │ │ │ ├── PokemonGroup.svelte │ │ │ ├── PokemonHeaderCenter.svelte │ │ │ ├── PokemonHeaderLeft.svelte │ │ │ ├── PokemonHeaderRight.svelte │ │ │ ├── PokemonItem.svelte │ │ │ ├── PokemonNoResult.svelte │ │ │ └── algoliaType.ts │ │ ├── Props │ │ │ └── Props.svelte │ │ ├── SideMenu.svelte │ │ ├── Simple │ │ │ └── Simple.svelte │ │ ├── Slots │ │ │ └── Slots.svelte │ │ ├── StickyBottom.svelte │ │ ├── Table.svelte │ │ └── ThemeSwitch.svelte │ └── routes │ │ ├── +layout.svelte │ │ └── +page.svelte ├── static │ ├── favicon.png │ └── pokemon.json ├── svelte.config.js ├── tailwind.config.cjs ├── tsconfig.json └── vite.config.ts ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml └── svelte-spotlight ├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .svelte-kit ├── ambient.d.ts ├── generated │ ├── client-manifest.js │ ├── client-matchers.js │ ├── nodes │ │ ├── 0.js │ │ ├── 1.js │ │ └── 2.js │ └── root.svelte ├── tsconfig.json └── types │ ├── route_meta_data.json │ └── src │ └── routes │ └── $types.d.ts ├── README.md ├── package.json ├── src ├── app.d.ts ├── app.html ├── lib │ ├── SvelteSpotlight.svelte │ ├── index.ts │ ├── portal.ts │ └── trapFocus.ts └── routes │ └── +page.svelte ├── static └── favicon.png ├── svelte.config.js ├── tsconfig.json └── vite.config.ts /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.vercel/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/.vercel/README.txt -------------------------------------------------------------------------------- /.vercel/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/.vercel/project.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/README.md -------------------------------------------------------------------------------- /documentation/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/.eslintignore -------------------------------------------------------------------------------- /documentation/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/.eslintrc.cjs -------------------------------------------------------------------------------- /documentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/.gitignore -------------------------------------------------------------------------------- /documentation/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /documentation/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/.prettierignore -------------------------------------------------------------------------------- /documentation/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/.prettierrc -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/README.md -------------------------------------------------------------------------------- /documentation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/package.json -------------------------------------------------------------------------------- /documentation/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/postcss.config.cjs -------------------------------------------------------------------------------- /documentation/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/app.css -------------------------------------------------------------------------------- /documentation/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/app.d.ts -------------------------------------------------------------------------------- /documentation/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/app.html -------------------------------------------------------------------------------- /documentation/src/components/AlgoliaLogo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/AlgoliaLogo.svelte -------------------------------------------------------------------------------- /documentation/src/components/Anatomy/Anatomy.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Anatomy/Anatomy.svelte -------------------------------------------------------------------------------- /documentation/src/components/Anatomy/Classes.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Anatomy/Classes.svelte -------------------------------------------------------------------------------- /documentation/src/components/Anatomy/DynamicSlots.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Anatomy/DynamicSlots.svelte -------------------------------------------------------------------------------- /documentation/src/components/Anatomy/Slots.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Anatomy/Slots.svelte -------------------------------------------------------------------------------- /documentation/src/components/Anatomy/Structure.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Anatomy/Structure.svelte -------------------------------------------------------------------------------- /documentation/src/components/Examples/Examples.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Examples/Examples.svelte -------------------------------------------------------------------------------- /documentation/src/components/Examples/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Examples/example.ts -------------------------------------------------------------------------------- /documentation/src/components/Navigation.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Navigation.svelte -------------------------------------------------------------------------------- /documentation/src/components/Pokemon/Pokedex.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Pokemon/Pokedex.svelte -------------------------------------------------------------------------------- /documentation/src/components/Pokemon/PokemonContent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Pokemon/PokemonContent.svelte -------------------------------------------------------------------------------- /documentation/src/components/Pokemon/PokemonEmptySearch.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Pokemon/PokemonEmptySearch.svelte -------------------------------------------------------------------------------- /documentation/src/components/Pokemon/PokemonFooter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Pokemon/PokemonFooter.svelte -------------------------------------------------------------------------------- /documentation/src/components/Pokemon/PokemonGroup.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Pokemon/PokemonGroup.svelte -------------------------------------------------------------------------------- /documentation/src/components/Pokemon/PokemonHeaderCenter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Pokemon/PokemonHeaderCenter.svelte -------------------------------------------------------------------------------- /documentation/src/components/Pokemon/PokemonHeaderLeft.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Pokemon/PokemonHeaderLeft.svelte -------------------------------------------------------------------------------- /documentation/src/components/Pokemon/PokemonHeaderRight.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Pokemon/PokemonHeaderRight.svelte -------------------------------------------------------------------------------- /documentation/src/components/Pokemon/PokemonItem.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Pokemon/PokemonItem.svelte -------------------------------------------------------------------------------- /documentation/src/components/Pokemon/PokemonNoResult.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Pokemon/PokemonNoResult.svelte -------------------------------------------------------------------------------- /documentation/src/components/Pokemon/algoliaType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Pokemon/algoliaType.ts -------------------------------------------------------------------------------- /documentation/src/components/Props/Props.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Props/Props.svelte -------------------------------------------------------------------------------- /documentation/src/components/SideMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/SideMenu.svelte -------------------------------------------------------------------------------- /documentation/src/components/Simple/Simple.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Simple/Simple.svelte -------------------------------------------------------------------------------- /documentation/src/components/Slots/Slots.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Slots/Slots.svelte -------------------------------------------------------------------------------- /documentation/src/components/StickyBottom.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/StickyBottom.svelte -------------------------------------------------------------------------------- /documentation/src/components/Table.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/Table.svelte -------------------------------------------------------------------------------- /documentation/src/components/ThemeSwitch.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/components/ThemeSwitch.svelte -------------------------------------------------------------------------------- /documentation/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/routes/+layout.svelte -------------------------------------------------------------------------------- /documentation/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/src/routes/+page.svelte -------------------------------------------------------------------------------- /documentation/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/static/favicon.png -------------------------------------------------------------------------------- /documentation/static/pokemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/static/pokemon.json -------------------------------------------------------------------------------- /documentation/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/svelte.config.js -------------------------------------------------------------------------------- /documentation/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/tailwind.config.cjs -------------------------------------------------------------------------------- /documentation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/tsconfig.json -------------------------------------------------------------------------------- /documentation/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/documentation/vite.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /svelte-spotlight/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/.eslintignore -------------------------------------------------------------------------------- /svelte-spotlight/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/.eslintrc.cjs -------------------------------------------------------------------------------- /svelte-spotlight/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/.gitignore -------------------------------------------------------------------------------- /svelte-spotlight/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /svelte-spotlight/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/.prettierignore -------------------------------------------------------------------------------- /svelte-spotlight/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/.prettierrc -------------------------------------------------------------------------------- /svelte-spotlight/.svelte-kit/ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/.svelte-kit/ambient.d.ts -------------------------------------------------------------------------------- /svelte-spotlight/.svelte-kit/generated/client-manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/.svelte-kit/generated/client-manifest.js -------------------------------------------------------------------------------- /svelte-spotlight/.svelte-kit/generated/client-matchers.js: -------------------------------------------------------------------------------- 1 | export const matchers = {}; -------------------------------------------------------------------------------- /svelte-spotlight/.svelte-kit/generated/nodes/0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/.svelte-kit/generated/nodes/0.js -------------------------------------------------------------------------------- /svelte-spotlight/.svelte-kit/generated/nodes/1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/.svelte-kit/generated/nodes/1.js -------------------------------------------------------------------------------- /svelte-spotlight/.svelte-kit/generated/nodes/2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/.svelte-kit/generated/nodes/2.js -------------------------------------------------------------------------------- /svelte-spotlight/.svelte-kit/generated/root.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/.svelte-kit/generated/root.svelte -------------------------------------------------------------------------------- /svelte-spotlight/.svelte-kit/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/.svelte-kit/tsconfig.json -------------------------------------------------------------------------------- /svelte-spotlight/.svelte-kit/types/route_meta_data.json: -------------------------------------------------------------------------------- 1 | { 2 | "/": [] 3 | } -------------------------------------------------------------------------------- /svelte-spotlight/.svelte-kit/types/src/routes/$types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/.svelte-kit/types/src/routes/$types.d.ts -------------------------------------------------------------------------------- /svelte-spotlight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/README.md -------------------------------------------------------------------------------- /svelte-spotlight/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/package.json -------------------------------------------------------------------------------- /svelte-spotlight/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/src/app.d.ts -------------------------------------------------------------------------------- /svelte-spotlight/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/src/app.html -------------------------------------------------------------------------------- /svelte-spotlight/src/lib/SvelteSpotlight.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/src/lib/SvelteSpotlight.svelte -------------------------------------------------------------------------------- /svelte-spotlight/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/src/lib/index.ts -------------------------------------------------------------------------------- /svelte-spotlight/src/lib/portal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/src/lib/portal.ts -------------------------------------------------------------------------------- /svelte-spotlight/src/lib/trapFocus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/src/lib/trapFocus.ts -------------------------------------------------------------------------------- /svelte-spotlight/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/src/routes/+page.svelte -------------------------------------------------------------------------------- /svelte-spotlight/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/static/favicon.png -------------------------------------------------------------------------------- /svelte-spotlight/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/svelte.config.js -------------------------------------------------------------------------------- /svelte-spotlight/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/tsconfig.json -------------------------------------------------------------------------------- /svelte-spotlight/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beynar/svelte-spotlight/HEAD/svelte-spotlight/vite.config.ts --------------------------------------------------------------------------------