a tiny atproto handle typeahead web component
atproto bluesky
43
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update readme

+4
+4
README.md
··· 1 1 # actor-typeahead 2 2 3 + ![NPM Version](https://img.shields.io/npm/v/actor-typeahead) 4 + 3 5 A small web component that progressively enhances an `<input>` element into an autocomplete for ATProto handles! 4 6 5 7 It works with any web stack and any JavaScript framework. ··· 22 24 23 25 If you'd prefer to manually register the custom element, you can use the query string `?tag=none` and call the static method `define`: 24 26 27 + ```html 25 28 <script type="module"> 26 29 import ActorTypeahead from "actor-typeahead.js?tag=none"; 27 30 ActorTypeahead.define("some-other-tag"); 28 31 </script> 32 + ``` 29 33 30 34 If you're using a bundler, you can install it from npm: 31 35