diff --git a/README.md b/README.md index c68c31b..3ec5c72 100644 --- a/README.md +++ b/README.md @@ -25,3 +25,7 @@ Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protrac ## Further help To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md). + +## Build Android apk + +Run `cordova run android` \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 9dcf3a4..166c1a0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -498,6 +498,14 @@ } } }, + "@ng-bootstrap/ng-bootstrap": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@ng-bootstrap/ng-bootstrap/-/ng-bootstrap-4.2.0.tgz", + "integrity": "sha512-41Sg9RKgFGfnkWJhzPJIumYbib+GCTZ8N17q3PGfLORqtIN25KUFHGuO8EYOYd+zrDVYe8g4JYZoxQZvxaxm6w==", + "requires": { + "tslib": "^1.9.0" + } + }, "@ngtools/webpack": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-8.0.0.tgz", diff --git a/package.json b/package.json index 5cebd3c..4566df4 100644 --- a/package.json +++ b/package.json @@ -19,6 +19,7 @@ "@angular/platform-browser": "~8.0.0", "@angular/platform-browser-dynamic": "~8.0.0", "@angular/router": "~8.0.0", + "@ng-bootstrap/ng-bootstrap": "^4.2.0", "cordova-android": "^8.0.0", "rxjs": "~6.4.0", "tslib": "^1.9.0", @@ -53,4 +54,4 @@ "android" ] } -} \ No newline at end of file +} diff --git a/src/app/app.component.html b/src/app/app.component.html index 0f3d9d8..79306ec 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -1,21 +1,9 @@ -
+

- Welcome to {{ title }}! + Gestión comprobantes DEBO +

- Angular Logo
-

Here are some links to help you start:

- diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 7949db5..842a41f 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -1,7 +1,7 @@ import { Component } from '@angular/core'; @Component({ - selector: 'app-root', + selector: 'app', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 2c3ba29..d62e443 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -1,18 +1,24 @@ import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; +import {NgbModule} from '@ng-bootstrap/ng-bootstrap'; import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component'; +import { ListaComprobantesComponent } from './lista-comprobantes/lista-comprobantes.component'; +import { AppBotonera } from './botonera/botonera.component'; @NgModule({ declarations: [ - AppComponent + AppComponent, + ListaComprobantesComponent, + AppBotonera ], imports: [ BrowserModule, - AppRoutingModule + AppRoutingModule, + NgbModule ], providers: [], - bootstrap: [AppComponent] + bootstrap: [AppComponent, AppBotonera] }) export class AppModule { } diff --git a/src/index.html b/src/index.html index f73589f..ccb87cd 100644 --- a/src/index.html +++ b/src/index.html @@ -6,10 +6,10 @@ - + - + diff --git a/src/styles.css b/src/styles.css index 90d4ee0..410ca88 100644 --- a/src/styles.css +++ b/src/styles.css @@ -1 +1,4 @@ /* You can add global styles to this file, and also import other style files */ +body { + background-color: #cccccc; +}