Commit c3f504001c1443bf1dac05087e1704573a09cf7c
1 parent
f8080ffa5a
Exists in
master
Agregado ngx-bootstrap
Showing
3 changed files
with
9 additions
and
1 deletions
Show diff stats
package-lock.json
... | ... | @@ -5980,6 +5980,11 @@ |
5980 | 5980 | "integrity": "sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==", |
5981 | 5981 | "dev": true |
5982 | 5982 | }, |
5983 | + "ngx-bootstrap": { | |
5984 | + "version": "5.1.1", | |
5985 | + "resolved": "https://registry.npmjs.org/ngx-bootstrap/-/ngx-bootstrap-5.1.1.tgz", | |
5986 | + "integrity": "sha512-++6+YHbIWTR/3sHH9C0aelIP25KMKhylWSEet6HonZfVr8quzEUjq6xEzTnDbZpnxlly2j58Gg0O9DWXu0UCxA==" | |
5987 | + }, | |
5983 | 5988 | "nice-try": { |
5984 | 5989 | "version": "1.0.5", |
5985 | 5990 | "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", |
package.json
src/app/app.module.ts
... | ... | @@ -4,6 +4,7 @@ import { NgModule } from '@angular/core'; |
4 | 4 | import { AppRoutingModule } from './app-routing.module'; |
5 | 5 | import { HttpClientModule } from '@angular/common/http'; |
6 | 6 | import { FormsModule, ReactiveFormsModule } from '@angular/forms'; |
7 | +import { TooltipModule } from 'ngx-bootstrap/tooltip'; | |
7 | 8 | //#endregion |
8 | 9 | |
9 | 10 | //#region COMPONENTS |
... | ... | @@ -36,7 +37,8 @@ import { MasterComponent } from './components/master/master.component'; |
36 | 37 | HttpClientModule, |
37 | 38 | FormsModule, |
38 | 39 | ReactiveFormsModule, |
39 | - ReactiveFormsModule.withConfig({ warnOnNgModelWithFormControl: 'never' }) | |
40 | + ReactiveFormsModule.withConfig({ warnOnNgModelWithFormControl: 'never' }), | |
41 | + TooltipModule.forRoot() | |
40 | 42 | ], |
41 | 43 | providers: [], |
42 | 44 | bootstrap: [AppComponent] |