Commit c3f504001c1443bf1dac05087e1704573a09cf7c

Authored by Marcelo Puebla
1 parent f8080ffa5a
Exists in master and in 1 other branch validar_pve

Agregado ngx-bootstrap

... ... @@ -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",
... ... @@ -22,6 +22,7 @@
22 22 "bootstrap": "^4.3.1",
23 23 "font-awesome": "^4.7.0",
24 24 "jquery": "^1.12.4",
  25 + "ngx-bootstrap": "^5.1.1",
25 26 "popper.js": "^1.15.0",
26 27 "rxjs": "~6.4.0",
27 28 "tslib": "^1.9.0",
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]