npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

autocomplete-gcba-component

v2.4.2

Published

Componente React de autocompletado de direcciones para GCBA

Readme

autocomplete gcba component

A React component for searching and selecting addresses in Argentina, with support for coordinates and cadastral data.

Features

  • Search for addresses by street name and number
  • Search for street intersections
  • Search by coordinates
  • Reverse geocoding
  • Customizable styling
  • TypeScript support
  • Responsive design
  • Multiple address selection

Installation

```bash npm install autocomplete-gcba-component ```

or

```bash yarn add autocomplete-gcba-component ```

Usage

Basic Usage

```jsx import { AddressSearch, DireccionSuggestion } from 'autocomplete-gcba-component';

function App() { return (

With Custom Styling

```jsx import { AddressSearch } from 'address-search-ar';

function App() { return (

Using the Hook

```jsx import { useAddressSearch } from 'address-search-ar';

function CustomAddressSearch() { const { searchText, suggestions, selectedAddresses, isLoading, error, showSuggestions, handleInputChange, handleSelectSuggestion, handleRemoveAddress, handleInputFocus, handleInputBlur, } = useAddressSearch({ maxSuggestions: 5, debug: true, });

return (

  {/* Render suggestions and selected addresses */}
  {/* ... */}
</div>

); } ```

Props

| Prop | Type | Default | Description | | ------------------------------------- | -------- | ----------------------------------- | ---------------------------------------------------- | | maxSuggestions | number | 10 | Maximum number of suggestions to show | | onAddressSelect | function | - | Callback when an address is selected | | onAddressesChange | function | - | Callback when the list of selected addresses changes | | placeholder | string | "Buscar dirección o coordenadas..." | Input placeholder text | | debug | boolean | false | Enable debug logging | | serverTimeout | number | 5000 | Timeout for API requests in milliseconds | | className | string | "" | Class name for the container | | inputClassName | string | "" | Class name for the input | | suggestionsClassName | string | "" | Class name for the suggestions | | suggestionItemClassName | string | "" | Class name for each suggestion item | | selectedAddressesClassName | string | "" | Class name for the selected addresses container | | loadingClassName | string | "" | Class name for the loading indicator | | suggestionsContainerClassName | string | "" | Class name for the suggestions container | | selectedAddressesContainerClassName | string | "" | Class name for the selected addresses container | | selectedAddressItemClassName | string | "" | Class name for each selected address item | | removeButtonClassName | string | "" | Class name for the remove button | | errorClassName | string | "" | Class name for error messages | | iconClassName | string | "" | Class name for icons | | titleClassName | string | "" | Class name for titles | | subtitleClassName | string | "" | Class name for subtitles | | coordsClassName | string | "" | Class name for coordinate text | | smpClassName | string | "" | Class name for SMP (cadastral) text |

API

AddressSearch Component

The main component for searching and selecting addresses.

useAddressSearch Hook

A hook that provides the core functionality for address searching.

ApiNormalizer

A class that handles API requests to the USIG and Catastro web services.

LocalNormalizer

A class that provides offline address normalization using a mock database.

License

MIT