Skip to content

Commit 5128a1b

Browse files
committed
preparation final section
1 parent d836e66 commit 5128a1b

File tree

5 files changed

+122
-38
lines changed

5 files changed

+122
-38
lines changed

animations/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
"@angular/platform-browser": "^4.0.0",
2121
"@angular/platform-browser-dynamic": "^4.0.0",
2222
"@angular/router": "^4.0.0",
23+
"au-input": "^1.3.0",
24+
"au-mask": "^0.0.1",
25+
"au-modal": "^0.0.1",
26+
"au-tab-panel": "^0.1.1",
2327
"core-js": "^2.4.1",
2428
"rxjs": "^5.1.0",
2529
"zone.js": "^0.8.4"
@@ -35,9 +39,9 @@
3539
"karma": "~1.4.1",
3640
"karma-chrome-launcher": "~2.1.1",
3741
"karma-cli": "~1.0.1",
42+
"karma-coverage-istanbul-reporter": "^0.2.0",
3843
"karma-jasmine": "~1.1.0",
3944
"karma-jasmine-html-reporter": "^0.2.2",
40-
"karma-coverage-istanbul-reporter": "^0.2.0",
4145
"protractor": "~5.1.0",
4246
"ts-node": "~2.0.0",
4347
"tslint": "~4.5.0",
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
<h1>
2-
{{title}}
2+
Payment Modal
33
</h1>
4+

animations/src/app/app.module.ts

Lines changed: 28 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,32 @@
1-
import { BrowserModule } from '@angular/platform-browser';
2-
import { NgModule } from '@angular/core';
3-
import { FormsModule } from '@angular/forms';
4-
import { HttpModule } from '@angular/http';
1+
import {BrowserModule} from '@angular/platform-browser';
2+
import {NgModule} from '@angular/core';
3+
import {FormsModule} from '@angular/forms';
4+
import {HttpModule} from '@angular/http';
5+
6+
import {AppComponent} from './app.component';
7+
import {AuInputModule} from "au-input";
8+
import {AuTabPanelModule} from 'au-tab-panel';
9+
import {AuMaskModule} from "au-mask";
10+
import {AuModalModule} from 'au-modal';
511

6-
import { AppComponent } from './app.component';
712

813
@NgModule({
9-
declarations: [
10-
AppComponent
11-
],
12-
imports: [
13-
BrowserModule,
14-
FormsModule,
15-
HttpModule
16-
],
17-
providers: [],
18-
bootstrap: [AppComponent]
14+
declarations: [
15+
AppComponent
16+
],
17+
imports: [
18+
BrowserModule,
19+
FormsModule,
20+
HttpModule,
21+
AuInputModule,
22+
AuTabPanelModule,
23+
AuMaskModule,
24+
AuModalModule.forRoot()
25+
26+
27+
],
28+
providers: [],
29+
bootstrap: [AppComponent]
1930
})
20-
export class AppModule { }
31+
export class AppModule {
32+
}

animations/src/index.html

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
<!doctype html>
22
<html lang="en">
33
<head>
4-
<meta charset="utf-8">
5-
<title>Animations</title>
6-
<base href="/">
4+
<meta charset="utf-8">
5+
<title>Animations</title>
6+
<base href="/">
7+
8+
<meta name="viewport" content="width=device-width, initial-scale=1">
9+
<link rel="icon" type="image/x-icon" href="favicon.ico">
10+
11+
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
12+
13+
<link rel="stylesheet" href="https://angular-academy.s3.amazonaws.com/bundles/bundle.20170214122720.min.css" >
714

8-
<meta name="viewport" content="width=device-width, initial-scale=1">
9-
<link rel="icon" type="image/x-icon" href="favicon.ico">
1015
</head>
1116
<body>
1217
<app-root>Loading...</app-root>

animations/yarn.lock

Lines changed: 77 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -396,6 +396,63 @@ asynckit@^0.4.0:
396396
version "0.4.0"
397397
resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
398398

399+
au-input@^1.3.0:
400+
version "1.3.0"
401+
resolved "https://registry.yarnpkg.com/au-input/-/au-input-1.3.0.tgz#a0d41273565b995095de8a940208feea3dd864ac"
402+
403+
au-mask@^0.0.1:
404+
version "0.0.1"
405+
resolved "https://registry.yarnpkg.com/au-mask/-/au-mask-0.0.1.tgz#3b9eb0204166595af8cbab6ead0f08387b47d6ad"
406+
dependencies:
407+
"@angular/common" "^4.0.0"
408+
"@angular/compiler" "^4.0.0"
409+
"@angular/core" "^4.0.0"
410+
"@angular/forms" "^4.0.0"
411+
"@angular/http" "^4.0.0"
412+
"@angular/platform-browser" "^4.0.0"
413+
"@angular/platform-browser-dynamic" "^4.0.0"
414+
"@angular/router" "^4.0.0"
415+
core-js "^2.4.1"
416+
lodash.findindex "^4.6.0"
417+
lodash.findlastindex "^4.6.0"
418+
lodash.includes "^4.3.0"
419+
rxjs "^5.1.0"
420+
zone.js "^0.8.4"
421+
422+
au-modal@^0.0.1:
423+
version "0.0.1"
424+
resolved "https://registry.yarnpkg.com/au-modal/-/au-modal-0.0.1.tgz#2eddea4abbf3812994fa5aee6c7885621e3337a6"
425+
dependencies:
426+
"@angular/common" "^4.0.0"
427+
"@angular/compiler" "^4.0.0"
428+
"@angular/core" "^4.0.0"
429+
"@angular/forms" "^4.0.0"
430+
"@angular/http" "^4.0.0"
431+
"@angular/platform-browser" "^4.0.0"
432+
"@angular/platform-browser-dynamic" "^4.0.0"
433+
"@angular/router" "^4.0.0"
434+
au-input "^1.3.0"
435+
au-tab-panel "^0.1.1"
436+
core-js "^2.4.1"
437+
rxjs "^5.1.0"
438+
zone.js "^0.8.4"
439+
440+
au-tab-panel@^0.1.1:
441+
version "0.1.1"
442+
resolved "https://registry.yarnpkg.com/au-tab-panel/-/au-tab-panel-0.1.1.tgz#2bf14e07e85778125add03687280f4b7d55f4271"
443+
dependencies:
444+
"@angular/common" "^4.0.0"
445+
"@angular/compiler" "^4.0.0"
446+
"@angular/core" "^4.0.0"
447+
"@angular/forms" "^4.0.0"
448+
"@angular/http" "^4.0.0"
449+
"@angular/platform-browser" "^4.0.0"
450+
"@angular/platform-browser-dynamic" "^4.0.0"
451+
"@angular/router" "^4.0.0"
452+
core-js "^2.4.1"
453+
rxjs "^5.1.0"
454+
zone.js "^0.8.4"
455+
399456
autoprefixer@^6.3.1, autoprefixer@^6.5.3:
400457
version "6.7.7"
401458
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014"
@@ -1253,12 +1310,18 @@ date-now@^0.1.4:
12531310
version "0.1.4"
12541311
resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
12551312

1256-
debug@*, debug@2, debug@2.6.7, debug@^2.1.3, debug@^2.2.0, debug@^2.6.3:
1313+
debug@*, debug@2.6.7, debug@^2.1.3, debug@^2.2.0:
12571314
version "2.6.7"
12581315
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.7.tgz#92bad1f6d05bbb6bba22cca88bcd0ec894c2861e"
12591316
dependencies:
12601317
ms "2.0.0"
12611318

1319+
debug@2, debug@2.6.8, debug@^2.6.3, debug@^2.6.8:
1320+
version "2.6.8"
1321+
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc"
1322+
dependencies:
1323+
ms "2.0.0"
1324+
12621325
debug@2.2.0, debug@~2.2.0:
12631326
version "2.2.0"
12641327
resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da"
@@ -1271,12 +1334,6 @@ debug@2.3.3:
12711334
dependencies:
12721335
ms "0.7.2"
12731336

1274-
debug@2.6.8, debug@^2.6.8:
1275-
version "2.6.8"
1276-
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc"
1277-
dependencies:
1278-
ms "2.0.0"
1279-
12801337
decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2:
12811338
version "1.2.0"
12821339
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
@@ -2876,6 +2933,18 @@ lodash.clonedeep@^4.3.2, lodash.clonedeep@^4.5.0:
28762933
version "4.5.0"
28772934
resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"
28782935

2936+
lodash.findindex@^4.6.0:
2937+
version "4.6.0"
2938+
resolved "https://registry.yarnpkg.com/lodash.findindex/-/lodash.findindex-4.6.0.tgz#a3245dee61fb9b6e0624b535125624bb69c11106"
2939+
2940+
lodash.findlastindex@^4.6.0:
2941+
version "4.6.0"
2942+
resolved "https://registry.yarnpkg.com/lodash.findlastindex/-/lodash.findlastindex-4.6.0.tgz#b8375ac0f02e9b926375cdf8dc3ea814abf9c6ac"
2943+
2944+
lodash.includes@^4.3.0:
2945+
version "4.3.0"
2946+
resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f"
2947+
28792948
lodash.memoize@^4.1.2:
28802949
version "4.1.2"
28812950
resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
@@ -5317,20 +5386,13 @@ write-file-atomic@^2.0.0:
53175386
imurmurhash "^0.1.4"
53185387
slide "^1.1.5"
53195388

5320-
ws@1.1.1:
5389+
ws@1.1.1, ws@^1.0.1:
53215390
version "1.1.1"
53225391
resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.1.tgz#082ddb6c641e85d4bb451f03d52f06eabdb1f018"
53235392
dependencies:
53245393
options ">=0.0.5"
53255394
ultron "1.0.x"
53265395

5327-
ws@^1.0.1:
5328-
version "1.1.4"
5329-
resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.4.tgz#57f40d036832e5f5055662a397c4de76ed66bf61"
5330-
dependencies:
5331-
options ">=0.0.5"
5332-
ultron "1.0.x"
5333-
53345396
wtf-8@1.0.0:
53355397
version "1.0.0"
53365398
resolved "https://registry.yarnpkg.com/wtf-8/-/wtf-8-1.0.0.tgz#392d8ba2d0f1c34d1ee2d630f15d0efb68e1048a"

0 commit comments

Comments
 (0)