Gathering detailed insights and metrics for ngx-bootstrap
Gathering detailed insights and metrics for ngx-bootstrap
Gathering detailed insights and metrics for ngx-bootstrap
Gathering detailed insights and metrics for ngx-bootstrap
ngx-bootstrap-switch
[![npm version](https://badge.fury.io/js/ngx-bootstrap-switch.svg)](https://badge.fury.io/js/ngx-bootstrap-switch) [![gzip bundle size](http://img.badgesize.io/https://unpkg.com/ngx-bootstrap-switch@latest/bundles/ngx-bootstrap-switch.umd.min.js?compress
ngx-bootstrap-datetime-popup
Datetime popup component using ngx-bootstrap datePicker, timePicker and bsDropdown
@prathyushaletznav/ngx-bootstrap-datetime-popup
Datetime popup using ngx-bootstrap
ngx-bootstrap-treeview
Ngx Bootstrap Treeview - Simple library to visualize, search and interact with tree data
Fast and reliable Bootstrap widgets in Angular (supports Ivy engine)
npm install ngx-bootstrap
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
5,525 Stars
2,596 Commits
1,686 Forks
204 Watching
49 Branches
328 Contributors
Updated on 27 Nov 2024
TypeScript (90.89%)
HTML (5.74%)
SCSS (1.6%)
JavaScript (1.07%)
CSS (0.52%)
Shell (0.17%)
Dockerfile (0.01%)
Cumulative downloads
Total Downloads
Last day
2.8%
61,614
Compared to previous day
Last week
0.6%
303,865
Compared to previous week
Last month
2.7%
1,302,668
Compared to previous month
Last year
-1.7%
14,933,616
Compared to previous year
1
5
The best way to quickly integrate Bootstrap 5 Bootstrap 4 Components with Angular
Note: ngx-bootstrap for Bootstrap 3 is still available but is no longer maintained or updated.
development
ngx-bootstrap provides Bootstrap components powered by Angular, so you don't need to include original JS components.
Check our Getting started guide if it's your first project with Angular Bootstrap.
Bootstrap components for Angular applications, dozens of demos and API documentation could be found here: https://valor-software.com/ngx-bootstrap/.
ngx-bootstrap is an Open Source (MIT Licensed) project, it's an independent project with ongoing development made possible thanks to the support of our awesome backers. If you also would like to show support or simply give back to Open Source community, please consider becoming a backing sponsor of ngx-bootstrap on OpenCollective.
All donated funds are managed transparently on OpenCollective and will be used solely for compensating work and expenses for contributors. Valor Software employees and contractors are not eligible for use of these funds.
What's in it for you? Proper recognition and exposure of your name/logo/website on our page. Our main sponsors will be presented under this section! Be the first!
You can see the below simple example working on StackBlitz
Use the Angular CLI ng add command for updating your Angular project.
1ng add ngx-bootstrap
Install ngx-bootstrap
from npm
:
1npm install ngx-bootstrap --save
Add wanted package to NgModule imports:
1import { TooltipModule } from 'ngx-bootstrap/tooltip'; 2 3@NgModule({ 4 ... 5 imports: [TooltipModule,...] 6 ... 7})
Add component to your page:
1<button type="button" class="btn btn-primary" 2 tooltip="Vivamus sagittis lacus vel augue laoreet rutrum faucibus."> 3 Simple demo 4</button>
You will need to add bootstrap css:
This can be done with the css file directly in the index.html, or alternatively through a styles import in the
angular.json
file or via styles.scss
import. However the latter two options require additionally installing bootstrap via npm.
Bootstrap 5
1<!--- index.html --> 2<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
Bootstrap 4
1<!--- index.html --> 2<link href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2">
As you may know ngx-bootstrap
supports several bootstrap.css
versions at the same time and has automatic tool
to guess current used version of library, but if this guess fails you can specify version of bootstrap.css
manually.
Sometimes, your project might contain some library that could interfere with the bootstrap framework, or you might
have a customized version of bootstrap. The consequence is that the process of determining bootstrap version might
be failed, which can break the UI. In that case, we can still set the bootstrap version manually in the bootstrapping
component (i.e. AppComponent
):
1import { setTheme } from 'ngx-bootstrap/utils'; 2 3@Component({...}) 4export class AppComponent { 5 constructor() { 6 setTheme('bs5'); // or 'bs4' 7 ... 8 } 9}
First time:
1git clone https://github.com/valor-software/ngx-bootstrap.git 2cd ngx-bootstrap 3npm ci 4npm run build 5npm start
The only two dependencies are Angular and Bootstrap CSS. Here is the version compatibility list:
ngx-bootstrap | Angular | Bootstrap CSS |
---|---|---|
18.x.x | 18.x.x | 5.x.x or 4.x.x |
12.x.x | 17.x.x | 5.x.x or 4.x.x |
11.x.x | 16.x.x | 5.x.x or 4.x.x |
10.x.x | 15.x.x | 5.x.x or 4.x.x |
9.0.0 | 14.x.x | 5.x.x or 4.x.x or 3.x.x |
8.0.0 | 12.x.x - 13.x.x | 5.x.x or 4.x.x or 3.x.x |
7.1.0 | 11.x.x - 12.x.x | 5.x.x or 4.x.x or 3.x.x |
7.0.0 | 11.x.x - 12.x.x | 3.x.x or 4.x.x |
6.0.0 | 9.x.x - 10.x.x | 3.x.x or 4.x.x |
5.6.x | 7.x.x - 9.1.0 | 3.x.x or 4.x.x |
5.0.0 - 5.6.0 | 7.x.x - 8.x.x | 3.x.x or 4.x.x |
4.x.x | 6.x.x - 7.x.x | 3.x.x or 4.x.x |
3.x.x | 6.x.x - 7.x.x | 3.x.x or 4.x.x |
2.x.x | 2.x.x - 4.x.x | 3.x.x or 4.x.x |
1.x.x | 2.x.x | 3.x.x or 4.x.x |
So if you are in trouble, here's where you can look for help.
The best place to ask questions is on StackOverflow (under the ngx-bootstrap
tag)
where there is a strong community of individuals asking and answering questions.
You can also join our Slack channel and link your stackoverflow question there. But try to avoid asking generic help questions directly on Slack since they can easily get lost in the chat. You can also search among the existing GitHub issues.
If none of the above helped, please feel free to open a new issue.
All contributions very welcome! And remember, contribution is not only PRs and code, but any help with docs or helping other developers to solve issues are very appreciated! Thanks in advance!
Please read our contribution guidelines.
Crossbrowser testing sponsored by Saucelabs
At Valor Software our people are not resources, our people are human beings, helping to create a better world through our efforts and knowledge. We are here to assist you with your project. We have a wonderful, ever-growing team that is ready and able. If you're looking for someone to guide you and your team please feel free to reach out to us on our site or at sales@valor-software.com, we would love to chat.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
no binaries found in the repo
Reason
10 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 8
Reason
Found 23/30 approved changesets -- score normalized to 7
Reason
dependency not pinned by hash detected -- score normalized to 1
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
25 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More