Select the types of activity you want to include in your feed.
A Web Component that provides typeahead suggestions for AT Protocol (Bluesky) handles. Uses the public app.bsky.actor.searchActorsTypeahead API directly from the client.
···5252Keyboard navigation: Arrow keys, Page Up/Down, Enter to select, Escape to
5353dismiss.
54545555-## Disabling auto-registration
5555+## Custom tag name
56565757-Pass `?tag=none` in the import URL to prevent auto-registration:
5757+By default, importing the module automatically registers the component as
5858+`<actor-typeahead>`. If you want to use a different tag name, or need to extend
5959+the class before registering, you can disable auto-registration by passing
6060+`?tag=none` in the import URL:
58615962```ts
6063import { ActorTypeahead } from "@tijs/actor-typeahead?tag=none";
6161-customElements.define("my-typeahead", ActorTypeahead);
6464+6565+// Register under a custom name
6666+customElements.define("my-handle-picker", ActorTypeahead);
6267```
6868+6969+You can also pass a custom tag name directly: `?tag=my-handle-picker`.
63706471## License
6572