A Web Component that provides typeahead suggestions for AT Protocol (Bluesky) handles. Uses the public app.bsky.actor.searchActorsTypeahead API directly from the client.
···44handles. Uses the public `app.bsky.actor.searchActorsTypeahead` API directly
55from the client.
6677+This is a fork of
88+[jakelazaroff.com/actor-typeahead](https://tangled.org/jakelazaroff.com/actor-typeahead),
99+originally created by [Jake Lazaroff](https://jakelazaroff.com). This fork is
1010+published to [JSR](https://jsr.io/@tijs/actor-typeahead) as a Deno-native
1111+package with additional features like configurable tag names and CSS custom
1212+properties.
1313+714## Usage
815916```html
···70777178## License
72797373-MIT
8080+MIT. The original source code by Jake Lazaroff is licensed under
8181+[MPL-2.0](https://mozilla.org/MPL/2.0/).
+9
src/actor-typeahead.ts
···11+/* This Source Code Form is subject to the terms of the Mozilla Public
22+ * License, v. 2.0. If a copy of the MPL was not distributed with this
33+ * file, You can obtain one at https://mozilla.org/MPL/2.0/.
44+ *
55+ * Copyright (c) 2026 Jake Lazaroff
66+ *
77+ * Repository: https://tangled.org/jakelazaroff.com/actor-typeahead
88+ */
99+110const template = document.createElement("template");
211template.innerHTML = `
312 <slot></slot>