Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 084d875

Browse files
author
Sam Graber
authored
Merge pull request #383 from SamGraber/angular_2.4
Angular 2.4
2 parents 17443c0 + 0b4b380 commit 084d875

File tree

2 files changed

+17
-15
lines changed

2 files changed

+17
-15
lines changed

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typescript-angular-components",
3-
"version": "4.0.0",
3+
"version": "4.1.0",
44
"description": "Reusable responsive angular components",
55
"author": "Renovo Development Team",
66
"keywords": [
@@ -75,15 +75,15 @@
7575
"typescript": "~2.0.3"
7676
},
7777
"dependencies": {
78-
"@angular/common": "~2.3.0",
79-
"@angular/compiler": "~2.3.0",
80-
"@angular/core": "~2.3.0",
81-
"@angular/forms": "~2.3.0",
82-
"@angular/http": "~2.3.0",
83-
"@angular/platform-browser": "~2.3.0",
84-
"@angular/platform-browser-dynamic": "~2.3.0",
85-
"@angular/router": "~3.3.0",
86-
"@angular/upgrade": "~2.3.0",
78+
"@angular/common": "~2.4.0",
79+
"@angular/compiler": "~2.4.0",
80+
"@angular/core": "~2.4.0",
81+
"@angular/forms": "~2.4.0",
82+
"@angular/http": "~2.4.0",
83+
"@angular/platform-browser": "~2.4.0",
84+
"@angular/platform-browser-dynamic": "~2.4.0",
85+
"@angular/router": "~3.4.0",
86+
"@angular/upgrade": "~2.4.0",
8787
"@types/angular": "1.5.16",
8888
"@types/angular-ui-bootstrap": "~0.13.35",
8989
"@types/bootstrap": "~3.3.32",
@@ -108,11 +108,11 @@
108108
"moment": "~2.14.1",
109109
"moment-timezone": "^0.5.3",
110110
"ng-wig": "~2.3.4",
111-
"rl-async-testing": "~1.5.0",
112-
"rl-http": "~1.4.0",
113-
"rxjs": "5.0.0-beta.12",
111+
"rl-async-testing": "~1.6.0",
112+
"rl-http": "~1.5.0",
113+
"rxjs": "~5.0.0",
114114
"systemjs": "^0.19.28",
115-
"typescript-angular-utilities": "~4.0.0",
115+
"typescript-angular-utilities": "~4.1.0",
116116
"ui-select": "~0.14.7",
117117
"zone.js": "~0.6.25"
118118
},

source/components/inputs/signature/signature.tests.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,10 @@ describe('SignatureComponent', () => {
9393
let canvas: ICanvasMock;
9494

9595
beforeEach(() => {
96-
canvas = {
96+
canvas = <any>{
9797
jSignature: sinon.spy(),
98+
addEventListener: () => null,
99+
removeEventListener: () => null,
98100
};
99101
(signature as any)._canvas = canvas;
100102
signature.rendering = true;

0 commit comments

Comments
 (0)