Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vojvodicn23/ngx-universal-dropdown

Universal dropdown component for Angular
https://github.com/vojvodicn23/ngx-universal-dropdown

angular angular-dropdown

Last synced: 5 days ago
JSON representation

Universal dropdown component for Angular

Awesome Lists containing this project

README

        

# Angular Universal Dropdown

Suported Angular versions: 16 and 17.

## Usage
Add the package as a dependency to your project using:

```
npm install ngx-universal-dropdown
# or
pnpm install ngx-universal-dropdown
# or
yarn add ngx-universal-dropdown
```

Add module to you app.module imports:

```typescript
import { NgxUniversalDropdownModule } from 'ngx-universal-dropdown';
...
@NgModule({
imports: [ NgxUniversalDropdownModule ],
...
})
```

Add dropdown component to your template:

```typescript

Dropdown

```