Skip to content

Commit 2e8b6c7

Browse files
committed
Fixed documentation and issues
1 parent 162bf4e commit 2e8b6c7

20 files changed

+29
-37
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
![logo](https://jerouw.nl/wp-content/uploads/2017/05/ngfbmd.png "Logo")
99

10-
# Angular 6 | Material Design | Firebase - Starter kit
10+
# Angular 7 Beta | Material Design | Firebase - Starter kit
1111

12-
A full stack starter app containing [Angular 6](https://angular.io), [Material](https://material.io/) and [Firebase](https://firebase.google.com/). See also: [AngularMaterialGo](https://github.com/jeroenouw/AngularMaterialGo)
12+
A full stack starter app containing [Angular 7 Beta](https://angular.io), [Material](https://material.io/) and [Firebase](https://firebase.google.com/). See also: [AngularMaterialGo](https://github.com/jeroenouw/AngularMaterialGo)
1313

1414
## [Live demo](http://ngxmatfire.jerouw.nl)
1515

@@ -36,4 +36,5 @@ A full stack starter app containing [Angular 6](https://angular.io), [Material](
3636
Want to file a bug, contribute some code, or improve documentation? Feel free to place an [issue](https://github.com/jeroenouw/AngularMaterialFirebase/issues).
3737

3838
## License
39+
3940
[![npmlicense](https://img.shields.io/npm/l/ngxmatfire.svg)](https://github.com/jeroenouw/AngularMaterialFirebase/blob/master/LICENSE/)

docs/FEATURES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Features in this project
44

5-
* Angular 6 front-end with Material Design
5+
* Angular 7 Beta front-end with Material Design
66
* Firebase back-end (0Auth authentication and NoSQL database)
77
* Automated documentation (compodoc)
88
* Home page

package-lock.json

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
"name": "ngxmatfire",
33
"version": "1.1.2",
44
"author": "Jeroen Ouwehand",
5-
"description": "Full stack starter app with Angular 6, Material Design and Firebase.",
5+
"description": "Full stack starter app with Angular 7, Material Design and Firebase.",
66
"keywords": [
77
"angular",
8-
"angular 6",
8+
"angular 7",
99
"firebase",
1010
"material",
1111
"nosql",

src/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Component, OnInit } from '@angular/core';
2-
import * as firebase from 'firebase/app';
2+
import * as firebase from 'firebase';
33

44
@Component({
55
selector: 'app-root',

src/app/components/auth/phone-signin/phone-signin.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Component, OnInit } from '@angular/core';
22
import { Router } from '@angular/router';
3-
import * as firebase from 'firebase/app';
3+
import * as firebase from 'firebase';
44

55
import { WindowService, PhoneNumber, AuthService, AlertService } from '../../shared';
66

src/app/components/blocks/card-block/card-block.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { Component } from '@angular/core';
77
})
88
export class CardBlockComponent {
99
titleCard = 'Angular';
10-
numberCard = 6;
10+
numberCard = 7;
1111
subTitleCard = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi nisl ligula.';
1212
contentCard = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi nisl ligula.';
1313
angularImage: string;

src/app/components/blocks/first-block/first-block.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ import { Component } from '@angular/core';
77
})
88
export class FirstBlockComponent {
99
titleOne = 'Starter kit';
10-
contentOne = 'Angular 6 | Material Design | Firebase (0Auth authentication and NoSQL database)';
10+
contentOne = 'Angular 7 | Material Design | Firebase (0Auth authentication and NoSQL database)';
1111

1212
}

src/app/components/blocks/third-block/third-block.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ import { Component } from '@angular/core';
66
styleUrls: ['./third-block.component.scss']
77
})
88
export class ThirdBlockComponent {
9-
titleThree = 'Angular 6';
9+
titleThree = 'Angular 7';
1010
contentThree = 'Angular is a framework for building client applications in HTML and TypeScript that compiles to JavaScript.';
1111

1212
titleFour = 'Material 2';
1313
contentFour = 'Material Design is a unified system that combines theory, resources, and tools for crafting digital experiences.';
1414

15-
titleFive = 'firebase/app';
15+
titleFive = 'Firebase';
1616
contentFive = 'Firebase is built on Google infrastructure and scales automatically, for even the largest apps.';
1717
}

src/app/components/messages/message.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as firebase from 'firebase/app';
1+
import * as firebase from 'firebase';
22
import { Injectable } from '@angular/core';
33
import { Observable } from 'rxjs/observable';
44
import { Subject } from 'rxjs/Subject';

0 commit comments

Comments
 (0)