# v2-iosense-lib

> - Three Different Types of Search 1. Plain Search (which return string search by user) 2. Multiple Search (Which return Search Object with key searchTerms and array of search terms.) 3. Search With Category (Which return Search Object with key se

Latest version **0.0.2** (published 2023-02-08) · 0 weekly downloads

## Install

```sh
npm install v2-iosense-lib
pnpm add v2-iosense-lib
yarn add v2-iosense-lib
bun add v2-iosense-lib
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.2 |
| Published | 2023-02-08 |
| First published | 2023-02-07 |
| Weekly downloads | 0 |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 137 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Gurunadh Pukkalla |
| Maintainers | gurunadh552 |

## Links

- npm: https://www.npmjs.com/package/v2-iosense-lib
- npm.io page: https://npm.io/package/v2-iosense-lib

## Dependencies (1)

- [tslib](https://npm.io/package/tslib.md) ^2.3.0

## Recent versions

- 0.0.2 (latest) — 2023-02-08
- 0.0.1 — 2023-02-07

## README

# V2 Search Library

###### Search UI For Angular Projects Based on Material

### Features

- Three Different Types of Search
  1. Plain Search (which return string search by user)
  2. Multiple Search (Which return Search Object with key searchTerms and array of search terms.)
  3. Search With Category (Which return Search Object with key searchTerms,category and array of search terms along with category.)

## Installation

```bash
 npm install --save v2-iosense-lib

```

## Usage

Import `SearchComponent` into your app's modules:

```typescript
import { SearchComponent } from 'v2-iosense-lib';

@NgModule({
  imports: [
    SearchComponent
  ]
})
```

```html
In Component.html

<search [options]></search>
```

| Property       | Options                                                                                                                             |
| -------------- | ----------------------------------------------------------------------------------------------------------------------------------- |
| placeholder    | It accepts string and used for placeholder for search `Example : placeholder="Search Text"`                                         |
| multiple       | it accepts either true or false. Based on it search type is changed                                                                 |
| hint           | It accepts string and used for hint for search `Example : hint="Search Hint"`                                                       |
| categories     | It accepts array of objects with keys name and value `Example : [categories] ="[{name:'name',value:'1'},{name:'name2',value:'2'}]"` |
| onSearchChange | It is output emitter for getting the result from the Search                                                                         |

---
_Source: https://npm.io/package/v2-iosense-lib · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
