Skip to content

Commit 180ab35

Browse files
committed
build: upgrade to angular 14
BREAKING CHANGE: angular 14 or higher is now required to use this package
1 parent 292d99f commit 180ab35

File tree

10 files changed

+4814
-5732
lines changed

10 files changed

+4814
-5732
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ https://mattlewis92.github.io/angular-resizable-element/
2020

2121
## About
2222

23-
An angular 13.0+ directive that allows an element to be dragged and resized
23+
An angular 14.0+ directive that allows an element to be dragged and resized
2424

2525
## Installation
2626

angular.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,5 @@
138138
}
139139
}
140140
}
141-
},
142-
"defaultProject": "demo"
141+
}
143142
}

package-lock.json

+4,776-5,685
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+25-26
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-resizable-element",
33
"version": "5.0.0",
4-
"description": "An angular 13.0+ directive that allows an element to be dragged and resized",
4+
"description": "An angular 14.0+ directive that allows an element to be dragged and resized",
55
"scripts": {
66
"start": "concurrently --raw \"ng serve --open\" \"npm run test:watch\"",
77
"build:demo": "ng build --configuration production",
@@ -38,48 +38,47 @@
3838
},
3939
"homepage": "https://github.com/mattlewis92/angular-resizable-element#readme",
4040
"devDependencies": {
41-
"@angular-devkit/build-angular": "~13.3.9",
42-
"@angular-eslint/builder": "13.5.0",
43-
"@angular-eslint/eslint-plugin": "13.5.0",
44-
"@angular-eslint/eslint-plugin-template": "13.5.0",
45-
"@angular-eslint/schematics": "13.5.0",
46-
"@angular-eslint/template-parser": "13.5.0",
47-
"@angular/animations": "~13.3.11",
48-
"@angular/cli": "~13.3.9",
49-
"@angular/common": "~13.3.11",
50-
"@angular/compiler": "~13.3.11",
51-
"@angular/compiler-cli": "~13.3.11",
52-
"@angular/core": "~13.3.11",
53-
"@angular/forms": "~13.3.11",
54-
"@angular/platform-browser": "~13.3.11",
55-
"@angular/platform-browser-dynamic": "~13.3.11",
56-
"@angular/router": "~13.3.11",
41+
"@angular-devkit/build-angular": "^14.1.0",
42+
"@angular-eslint/builder": "14.0.2",
43+
"@angular-eslint/eslint-plugin": "14.0.2",
44+
"@angular-eslint/eslint-plugin-template": "14.0.2",
45+
"@angular-eslint/schematics": "14.0.2",
46+
"@angular-eslint/template-parser": "14.0.2",
47+
"@angular/animations": "^14.1.0",
48+
"@angular/cli": "^14.1.0",
49+
"@angular/common": "^14.1.0",
50+
"@angular/compiler": "^14.1.0",
51+
"@angular/compiler-cli": "^14.1.0",
52+
"@angular/core": "^14.1.0",
53+
"@angular/forms": "^14.1.0",
54+
"@angular/platform-browser": "^14.1.0",
55+
"@angular/platform-browser-dynamic": "^14.1.0",
56+
"@angular/router": "^14.1.0",
5757
"@compodoc/compodoc": "^1.1.19",
5858
"@types/chai": "^4.3.1",
59-
"@types/mocha": "^7.0.2",
59+
"@types/mocha": "^9.1.1",
6060
"@types/node": "^16.11.47",
6161
"@types/sinon": "^10.0.13",
6262
"@types/sinon-chai": "^3.2.8",
63-
"@typescript-eslint/eslint-plugin": "5.3.0",
64-
"@typescript-eslint/parser": "5.3.0",
63+
"@typescript-eslint/eslint-plugin": "^5.29.0",
64+
"@typescript-eslint/parser": "^5.29.0",
6565
"angular-cli-ghpages": "^1.0.3",
6666
"chai": "^4.3.6",
6767
"codecov": "^3.8.3",
6868
"commitizen": "^4.2.5",
6969
"concurrently": "^6.5.1",
7070
"copyfiles": "^2.4.1",
7171
"cz-conventional-changelog": "^3.3.0",
72-
"eslint": "^8.2.0",
72+
"eslint": "^8.18.0",
7373
"husky": "^7.0.4",
7474
"karma": "^6.3.20",
7575
"karma-chrome-launcher": "^3.1.1",
76-
"karma-coverage": "~2.0.3",
76+
"karma-coverage": "^2.2.0",
7777
"karma-mocha": "^2.0.1",
78-
"mocha": "^7.2.0",
79-
"ng-packagr": "^13.3.1",
78+
"mocha": "^10.0.0",
79+
"ng-packagr": "^14.1.0",
8080
"prettier": "^2.7.1",
8181
"pretty-quick": "^3.1.3",
82-
"process": "^0.11.10",
8382
"rxjs": "^7.5.6",
8483
"sinon": "^14.0.0",
8584
"sinon-chai": "^3.7.0",
@@ -91,7 +90,7 @@
9190
"zone.js": "^0.11.7"
9291
},
9392
"peerDependencies": {
94-
"@angular/core": ">=13.0.0"
93+
"@angular/core": ">=14.0.0"
9594
},
9695
"config": {
9796
"commitizen": {

projects/angular-resizable-element/src/test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import 'zone.js';
44
import 'zone.js/testing';
55
import 'zone.js/plugins/mocha-patch';
6-
import './test/polyfills';
76
import { getTestBed } from '@angular/core/testing';
87
import {
98
BrowserDynamicTestingModule,

projects/angular-resizable-element/src/test/polyfills.ts

-3
This file was deleted.

projects/angular-resizable-element/src/test/resizable.spec.ts

+7-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Component, DebugElement, ElementRef, ViewChild } from '@angular/core';
1+
import { Component, ElementRef, ViewChild } from '@angular/core';
22
import {
33
MOUSE_MOVE_THROTTLE_MS,
44
ResizableDirective,
@@ -9,8 +9,6 @@ import { ComponentFixture, TestBed } from '@angular/core/testing';
99
import { expect } from 'chai';
1010
import * as sinon from 'sinon';
1111

12-
const delay = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));
13-
1412
describe('resizable directive', () => {
1513
@Component({
1614
styles: [
@@ -77,18 +75,21 @@ describe('resizable directive', () => {
7775
mwlResizeHandle
7876
[resizeEdges]="{ top: true }"
7977
></div>
78+
8079
<div
8180
*ngIf="resizeEdges.left"
8281
class="resize-handle-left"
8382
mwlResizeHandle
8483
[resizeEdges]="{ left: true }"
8584
></div>
85+
8686
<div
8787
*ngIf="resizeEdges.right"
8888
class="resize-handle-right"
8989
mwlResizeHandle
9090
[resizeEdges]="{ right: true }"
9191
></div>
92+
9293
<div
9394
*ngIf="resizeEdges.bottom"
9495
class="resize-handle-bottom"
@@ -830,7 +831,7 @@ describe('resizable directive', () => {
830831
);
831832
});
832833

833-
it('should only allow resizing of the element along the left side', async () => {
834+
it('should only allow resizing of the element along the left side', () => {
834835
const fixture: ComponentFixture<TestComponent> = createComponent();
835836
const handle = fixture.nativeElement.querySelector('.resize-handle-left');
836837
fixture.componentInstance.resizeEdges = { left: true };
@@ -839,7 +840,6 @@ describe('resizable directive', () => {
839840
clientX: 100,
840841
clientY: 200,
841842
});
842-
await delay(MOUSE_MOVE_THROTTLE_MS);
843843
triggerDomEvent('mousedown', handle, {
844844
clientX: 100,
845845
clientY: 200,
@@ -1113,7 +1113,7 @@ describe('resizable directive', () => {
11131113
expect(onComplete).to.have.been.calledOnce;
11141114
});
11151115

1116-
it('should set the resize active class', async () => {
1116+
it('should set the resize active class', () => {
11171117
const fixture: ComponentFixture<TestComponent> = createComponent();
11181118
fixture.detectChanges();
11191119
const elm: HTMLElement =
@@ -1124,7 +1124,6 @@ describe('resizable directive', () => {
11241124
clientY: 210,
11251125
});
11261126
expect(elm.classList.contains('resize-active')).to.be.false;
1127-
await delay(MOUSE_MOVE_THROTTLE_MS);
11281127
triggerDomEvent('mousedown', handle, {
11291128
clientX: 100,
11301129
clientY: 210,
@@ -1133,7 +1132,6 @@ describe('resizable directive', () => {
11331132
clientX: 101,
11341133
clientY: 210,
11351134
});
1136-
await delay(MOUSE_MOVE_THROTTLE_MS);
11371135
expect(elm.classList.contains('resize-active')).to.be.true;
11381136
triggerDomEvent('mouseup', handle, {
11391137
clientX: 101,
@@ -1427,7 +1425,7 @@ describe('resizable directive', () => {
14271425
});
14281426
});
14291427

1430-
it('should set the resize cursor on the body when resizing', async () => {
1428+
it('should set the resize cursor on the body when resizing', () => {
14311429
const fixture: ComponentFixture<TestComponent> = createComponent();
14321430
const elm: HTMLElement =
14331431
fixture.componentInstance.resizable.elm.nativeElement;
@@ -1440,7 +1438,6 @@ describe('resizable directive', () => {
14401438
clientX: 101,
14411439
clientY: 200,
14421440
});
1443-
await delay(MOUSE_MOVE_THROTTLE_MS);
14441441
expect(document.body.style.cursor).to.equal('col-resize');
14451442
triggerDomEvent('mouseup', handle, {
14461443
clientX: 101,

projects/angular-resizable-element/tsconfig.lib.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"extends": "../../tsconfig.json",
44
"compilerOptions": {
55
"outDir": "../../out-tsc/lib",
6-
"target": "es2015",
6+
"target": "es2020",
77
"declaration": true,
88
"declarationMap": true,
99
"inlineSources": true,

projects/demo/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
min-height: 100vh;
1414
}
1515
</style>
16-
<title>angular 13.0+ resizable element</title>
16+
<title>angular 14.0+ resizable element</title>
1717
</head>
1818
<body>
1919
<a
@@ -31,7 +31,7 @@
3131
<nav class="navbar navbar-default" role="navigation">
3232
<div class="container-fluid">
3333
<div class="navbar-header">
34-
<a class="navbar-brand" href="#">angular 13.0+ resizable element</a>
34+
<a class="navbar-brand" href="#">angular 14.0+ resizable element</a>
3535
</div>
3636
<ul class="nav navbar-nav hidden-xs">
3737
<li><a href="#demo">Demo</a></li>

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"experimentalDecorators": true,
2121
"moduleResolution": "node",
2222
"importHelpers": true,
23-
"target": "es2015",
23+
"target": "es2020",
2424
"module": "es2020",
2525
"lib": [
2626
"es2018",

0 commit comments

Comments
 (0)