You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@opengov/components-vendor-search

Package Overview
Dependencies
Maintainers
369
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@opengov/components-vendor-search

OpenGov Component - Vendor Search

beta
latest
Source
npmnpm
Version
37.0.0-beta.1
Version published
Maintainers
369
Created
Source

A vendor search autocomplete component with debounced REST API search and infinite scrolling.

Installation

yarn add @opengov/components-vendor-search

Quick Start

import { useVendorSearch, VendorSearch } from '@opengov/components-vendor-search';

const { searchResolver, getByIdResolver } = useVendorSearch({
  baseUrl: 'https://api.example.com/v1/',
  entityId: 'your-entity-id',
  token: 'your-auth-token'
});

<VendorSearch
  searchResolver={searchResolver}
  getByIdResolver={getByIdResolver}
  onSelect={(vendor) => console.log(vendor)}
  required
/>;

Documentation

See Storybook for interactive examples, props reference, and integration guide.

Development

yarn install    # Install dependencies
yarn build      # Build package
yarn test       # Run tests
yarn lint       # Lint code

FAQs

Package last updated on 03 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts