1.0.2 • Published 25 days ago

angular-weblineindia-dropdown v1.0.2

Weekly downloads
3
License
-
Repository
-
Last release
25 days ago

Angular - Dropdown Component

An Angular-based Dropdown component for selecting options from a list.

Table of contents

Browser Support

ChromeFirefoxSafariEdgeIE
83.0 ✔77.0 ✔13.1.1 ✔83.0 ✔11.9 ✔

Demo

npm.io

Getting started

Install the npm package:

npm install angular-weblineindia-dropdown
#OR
yarn add angular-weblineindia-dropdown

Usage

Use the <angular-weblineindia-dropdown> component:

Add in app.module.ts file

import { NgModule } from "@angular/core";
import { AngularWeblineindiaDropdownModule } from 'angular-weblineindia-dropdown';

@NgModule({
  imports: [AngularWeblineindiaDropdownModule],
})
export class AppModule {}

Add in app.component.ts file

  selectedOption: any;

  dropdownOptions: any[] = [
    { id: '1', name: 'Option 1' },
    { id: '2', name: 'Option 2' },
    { id: '3', name: 'Option 3' },
  ];

  onOptionSelect(option: any) {
    console.log('Selected option:', option.target.value);
  }

  onFocusDropdown(event: any) {
    console.log('Dropdown focused', event);
  }

  onBlurDropdown(event: any) {
    console.log('Dropdown blurred', event);
  }
}

Add in app.component.html file

<angular-weblineindia-dropdown
  [placeHolder]="'Please select'"
  [options]="dropdownOptions"
  [dropdownClass]="'custom-dropdown'"
  [dropdownListClass]="'custom-dropdown-list'"
  [disabled]="false"
  [value]="'2'"
  (change)="onOptionSelect($event)"
  (focus)="onFocusDropdown($event)"
  (blur)="onBlurDropdown($event)"
></angular-weblineindia-dropdown>

Add in app.component.css file

::ng-deep .custom-dropdown {
  /* Add your custom styles for the dropdown here */
}

::ng-deep .custom-dropdown-list {
  /* Add your custom styles for the dropdown list here */
}

Available Props

PropTypeDefaultDescription
placeholderStringThe placeholder text for the input field
optionsArrayArray of options for the dropdown
dropdownClassStringCSS class for the dropdown container
dropdownListClassStringCSS class for the dropdown list
disabledBooleanSpecifies if the dropdown is disabled
valuestringSelected option for the dropdown

Methods

NameDescription
focusGets triggered when the dropdown input field receives focus.
blurGets triggered when the dropdown input field loses focus.
changeGets triggered when the selected option(s) in the dropdown change.

Want to Contribute?

  • Created something awesome, made this code better, added some functionality, or whatever (this is the hardest part).
  • Fork it.
  • Create new branch to contribute your changes.
  • Commit all your changes to your branch.
  • Submit a pull request.

Collection of Components

We have built many other components and free resources for software development in various programming languages. Kindly click here to view our Free Resources for Software Development


Changelog

Detailed changes for each release are documented in CHANGELOG.md.

License

MIT

Keywords

angular-weblineindia-dropdown, dropdown, input, angular, angular-component, dropdown-component, dropdown-box, dropdown-box-input

1.0.2

25 days ago

1.0.1

25 days ago

1.0.0

4 years ago