Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ngx-bootstrap

Package Overview
Dependencies
Maintainers
3
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-bootstrap

Angular Bootstrap

  • 18.1.3
  • next
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
299K
decreased by-2.45%
Maintainers
3
Weekly downloads
 
Created

What is ngx-bootstrap?

ngx-bootstrap is a popular Angular library that provides Bootstrap components powered by Angular. It allows developers to use Bootstrap's UI components in their Angular applications with ease, offering a wide range of features and customization options.

What are ngx-bootstrap's main functionalities?

Alerts

The Alerts component allows you to display different types of alert messages such as success, info, warning, and danger. This is useful for providing feedback to users.

<alert type="success">Success Alert</alert>

Modals

The Modals component allows you to create and manage modal dialogs. This is useful for displaying additional information or forms without navigating away from the current page.

<button type="button" class="btn btn-primary" (click)="openModal()">Open Modal</button>
<ng-template #template>
  <div class="modal-body">
    <p>Modal content goes here.</p>
  </div>
</ng-template>

Datepicker

The Datepicker component provides a user-friendly way to select dates. It supports various configurations and customizations to fit different use cases.

<input type="text" class="form-control" bsDatepicker>

Tabs

The Tabs component allows you to create tabbed interfaces. This is useful for organizing content into separate sections that can be easily navigated by users.

<tabset>
  <tab heading="Tab 1">Content of Tab 1</tab>
  <tab heading="Tab 2">Content of Tab 2</tab>
</tabset>

Tooltips

The Tooltips component provides a way to display additional information when users hover over or focus on an element. This is useful for providing contextual help or explanations.

<button type="button" class="btn btn-secondary" tooltip="Tooltip text">Hover me</button>

Other packages similar to ngx-bootstrap

Keywords

FAQs

Package last updated on 28 Oct 2024

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc