Socket
Socket
Sign inDemoInstall

angular-weblineindia-dropdown

Package Overview
Dependencies
5
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    angular-weblineindia-dropdown

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


Version published
Weekly downloads
14
decreased by-65%
Maintainers
1
Install size
117 kB
Created
Weekly downloads
 

Readme

Source

Angular - Dropdown Component

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

Table of contents

  • Browser Support
  • Demo
  • Getting started
  • Usage
  • Available Props
  • Methods
  • Want to Contribute?
  • Collection of Components
  • Changelog
  • License
  • Keywords

Browser Support

ChromeFirefoxSafariEdgeIE
83.0 ✔77.0 ✔13.1.1 ✔83.0 ✔11.9 ✔

Demo

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

FAQs

Last updated on 15 Apr 2024

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc