UNPKG

8.01 kBMarkdownView Raw
1<a href="http://valor-software.com/ngx-bootstrap/#/">
2<div align="center">
3<img class="mx-auto center-block d-block" src="https://valor-software.com/ngx-bootstrap/assets/images/logos/ngx-bootstrap-logo.svg" alt="ngx-bootstrap" width="200" height="200">
4 <h1>ngx-bootstrap</h1>
5</div>
6</a>
7
8<p align="center">
9Best way to quickly integrate <a href="https://getbootstrap.com/">Bootstrap 3</a> or <a href="https://getbootstrap.com/docs/4.0">Bootstrap 4</a> Components with <a href="https://angular.io/">Angular</a>
10</p>
11
12<p align="center">
13<a href="https://badge.fury.io/js/ngx-bootstrap"><img src="https://badge.fury.io/js/ngx-bootstrap.svg" alt="npm version" ></a>
14<a href="https://npmjs.org/ngx-bootstrap"><img src="https://img.shields.io/npm/dm/ngx-bootstrap.svg" alt="npm downloads" ></a>
15<a target="_blank" href="https://opencollective.com/ngx-bootstrap"><img src="https://opencollective.com/ngx-bootstrap/tiers/backer/badge.svg?label=backer&color=brightgreen" /></a>
16
17<br/>
18<a href="https://join.slack.com/t/ngx-home/shared_invite/enQtNTExMTY5MzcwMTM0LWVjZGU2MjI4MTVhMGVlMTc2OWRiMzA0NzBhNDU5YzQ0MDM3MWI5NzJjZTUzNzIxZmNjYmFlMjU2MzE0YmY0NWY">
19<img src="https://cdn.brandfolder.io/5H442O3W/at/pl546j-7le8zk-btwjnu/Slack_RGB.png?width=1200&height=150" alt="slack" ></a>
20
21</p>
22
23## Links
24
25- [Documentation](http://valor-software.com/ngx-bootstrap/)
26- [Release Notes](https://github.com/valor-software/ngx-bootstrap/blob/development/CHANGELOG.md)
27- [Slack Community](https://join.slack.com/t/ngx-home/shared_invite/enQtNTExMTY5MzcwMTM0LWVjZGU2MjI4MTVhMGVlMTc2OWRiMzA0NzBhNDU5YzQ0MDM3MWI5NzJjZTUzNzIxZmNjYmFlMjU2MzE0YmY0NWY)
28
29<!-- [![codecov](https://codecov.io/gh/valor-software/ngx-bootstrap/branch/development/graph/badge.svg)](https://codecov.io/gh/valor-software/ngx-bootstrap) -->
30
31<!-- [![Sauce Test Status](https://saucelabs.com/browser-matrix/valorkin.svg)](https://saucelabs.com/u/valorkin)
32-->
33
34## Table of contents
351. [Getting Started](#getting-started)
362. [Usage & Demo](#usage--demo)
373. [Supporting](#supporting-ngx-bootstrap)
384. [Installation](#installation)
395. [Compatibility](#compatibility)
406. [Troubleshooting](#troubleshooting)
417. [Contributing](#contribution)
428. [Credits](#credits)
439. [License](#license)
44
45## Getting Started
46
47ngx-bootstrap provides Bootstrap components powered by Angular, so you don't need to include original JS components.
48
49Check our [Getting started guide](https://valor-software.com/ngx-bootstrap/#/documentation#getting-started) if it's your first project with Angular Bootstrap.
50
51## Usage & Demo
52
53Bootstrap components for Angular applications, dozens of demos and API documentation could be found here:
54[https://valor-software.com/ngx-bootstrap/](https://valor-software.com/ngx-bootstrap/).
55
56<!-- Server side rendered version of this documentation available <a href="https://ngx-universal.herokuapp.com/">here</a> served with Angular universal and [nest.js](https://nestjs.com/). -->
57
58## Supporting NGX-Bootstrap
59ngx-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.
60If you also would like to show support or simply give back to Open Source community, please consider becoming a backer sponsor of [ngx-bootstrap on OpenCollective](https://opencollective.com/ngx-bootstrap).
61
62All 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 to use these funds.
63
64What's there for you? Proper recognition and exposure of your name/logo/website on our page.
65Our main sponsors will be presented under this section! Be the first!
66
67## Installation
68
69
70##### Angular CLI way
71Use the Angular CLI ng add command for updating your Angular project.
72```bash
73ng add ngx-bootstrap
74```
75
76##### Manual way
77Install `ngx-bootstrap` from `npm`:
78```bash
79npm install ngx-bootstrap --save
80```
81
82Add wanted package to NgModule imports:
83```
84import { TooltipModule } from 'ngx-bootstrap/tooltip';
85
86@NgModule({
87 ...
88 imports: [TooltipModule.forRoot(),...]
89 ...
90})
91```
92
93Add component to your page:
94```
95<button type="button" class="btn btn-primary"
96 tooltip="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">
97 Simple demo
98</button>
99```
100
101You will need to add bootstrap css:
102- `Bootstrap 3`
103```
104<!-- index.html -->
105<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
106```
107
108- `Bootstrap 4`
109```
110<!--- index.html -->
111<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.3/css/bootstrap.min.css" rel="stylesheet">
112```
113
114
115
116### Setting up the bootstrap version manually
117
118As you may know `ngx-bootstrap` support 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.
119
120Sometimes, 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`):
121```
122import { setTheme } from 'ngx-bootstrap/utils';
123
124@Component({...})
125export class AppComponent {
126 constructor() {
127 setTheme('bs3'); // or 'bs4'
128 ...
129 }
130}
131```
132
133### How to build lib for development
134
135First time:
136
137```bash
138git clone https://github.com/valor-software/ngx-bootstrap.git
139cd ngx-bootstrap
140npm ci
141npm run build
142npm start
143```
144
145## Compatibility
146
147The only two dependencies are [Angular](https://angular.io) and [Bootstrap](https://getbootstrap.com) CSS.
148Here is the versions compatibility list:
149
150| ngx-bootstrap | Angular | Bootstrap CSS |
151| ------------- | ------------- | -------------- |
152| 6.0.0 | 9.x.x - 10.x.x | 3.x.x or 4.x.x |
153| 5.6.x | 7.x.x - 9.1.0 | 3.x.x or 4.x.x |
154| 5.0.0 - 5.6.0 | 7.x.x - 8.x.x | 3.x.x or 4.x.x |
155| 4.x.x | 6.x.x - 7.x.x | 3.x.x or 4.x.x |
156| 3.x.x | 6.x.x - 7.x.x | 3.x.x or 4.x.x |
157| 2.x.x | 2.x.x - 4.x.x | 3.x.x or 4.x.x |
158| 1.x.x | 2.x.x | 3.x.x or 4.x.x |
159
160
161## Troubleshooting
162
163So if you are in trouble, here's where you can look for help.
164
165The best place to ask questions is on [StackOverflow (under the `ngx-bootstrap` tag)](https://stackoverflow.com/questions/tagged/ngx-bootstrap)
166You can also join [our Slack channel](https://join.slack.com/t/ngx-home/shared_invite/enQtNTExMTY5MzcwMTM0LWVjZGU2MjI4MTVhMGVlMTc2OWRiMzA0NzBhNDU5YzQ0MDM3MWI5NzJjZTUzNzIxZmNjYmFlMjU2MzE0YmY0NWY) 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](https://github.com/valor-software/ngx-bootstrap/issues?utf8=%E2%9C%93&q=is%3Aissue).
167
168If, **and only if**, none of the above helped, please open a [new issue](https://github.com/valor-software/ngx-bootstrap/issues/new).
169
170## Contribution
171
172All 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!
173
174Please read our [contribution guidelines](https://github.com/valor-software/ngx-bootstrap/blob/development/CONTRIBUTING.md).
175
176### Credits
177Crossbrowser testing sponsored by [Saucelabs](https://saucelabs.com/)
178[<img src="https://avatars2.githubusercontent.com/u/88837?s=200&v=4" alt="Saucelabs" width="31" height="31">](https://saucelabs.com/)
179
180End-to-end testing sponsored by [Cypress](https://www.cypress.io/)
181[<img src="https://raw.githubusercontent.com/cypress-io/cypress-icons/master/src/favicon/favicon.ico" alt="Cypress" width="31" height="31">](https://www.cypress.io/)
182
183### License
184
185[MIT](https://github.com/valor-software/ngx-bootstrap/blob/development/LICENSE)