Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/vojvodicn23/ngx-universal-dropdown
- Owner: vojvodicn23
- License: mit
- Created: 2023-12-11T10:35:00.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-09-17T13:21:25.000Z (about 2 months ago)
- Last Synced: 2024-10-29T01:19:51.925Z (17 days ago)
- Topics: angular, angular-dropdown
- Language: TypeScript
- Homepage:
- Size: 177 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```