Skip to content

Commit 17c0f80

Browse files
committed
chore(release): 14.0.0
1 parent 9b31481 commit 17c0f80

29 files changed

+175
-211
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [14.0.0](https://github.com/angular-extensions/elements/compare/v13.0.0...v14.0.0) (2022-07-22)
6+
7+
### ⚠ BREAKING CHANGES
8+
9+
- **lib:** upgrade to Angular 14
10+
11+
### Features
12+
13+
- **lib:** upgrade to Angular 14 ([36ce07f](https://github.com/angular-extensions/elements/commit/36ce07f8c15aaee62b5bb6d3844ab83c4806c620))
14+
515
## [13.0.0](https://github.com/angular-extensions/elements/compare/v12.6.0...v13.0.0) (2021-11-21)
616

717
### ⚠ BREAKING CHANGES

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular-extensions/elements",
3-
"version": "13.0.0",
3+
"version": "14.0.0",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve -o",

projects/elements-demo/src/app/core/layout/footer/footer.component.spec.ts

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,12 @@ describe('FooterComponent', () => {
99
let component: FooterComponent;
1010
let fixture: ComponentFixture<FooterComponent>;
1111

12-
beforeEach(
13-
waitForAsync(() => {
14-
TestBed.configureTestingModule({
15-
imports: [HttpClientTestingModule, SharedModule],
16-
declarations: [FooterComponent],
17-
}).compileComponents();
18-
})
19-
);
12+
beforeEach(waitForAsync(() => {
13+
TestBed.configureTestingModule({
14+
imports: [HttpClientTestingModule, SharedModule],
15+
declarations: [FooterComponent],
16+
}).compileComponents();
17+
}));
2018

2119
beforeEach(() => {
2220
fixture = TestBed.createComponent(FooterComponent);

projects/elements-demo/src/app/core/layout/navigation/navigation.component.spec.ts

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,12 @@ describe('NavigationComponent', () => {
99
let component: NavigationComponent;
1010
let fixture: ComponentFixture<NavigationComponent>;
1111

12-
beforeEach(
13-
waitForAsync(() => {
14-
TestBed.configureTestingModule({
15-
imports: [RouterTestingModule, SharedModule],
16-
declarations: [NavigationComponent],
17-
}).compileComponents();
18-
})
19-
);
12+
beforeEach(waitForAsync(() => {
13+
TestBed.configureTestingModule({
14+
imports: [RouterTestingModule, SharedModule],
15+
declarations: [NavigationComponent],
16+
}).compileComponents();
17+
}));
2018

2119
beforeEach(() => {
2220
fixture = TestBed.createComponent(NavigationComponent);

projects/elements-demo/src/app/core/layout/toolbar/toolbar.component.spec.ts

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,12 @@ describe('ToolbarComponent', () => {
99
let component: ToolbarComponent;
1010
let fixture: ComponentFixture<ToolbarComponent>;
1111

12-
beforeEach(
13-
waitForAsync(() => {
14-
TestBed.configureTestingModule({
15-
imports: [HttpClientTestingModule, SharedModule],
16-
declarations: [ToolbarComponent],
17-
}).compileComponents();
18-
})
19-
);
12+
beforeEach(waitForAsync(() => {
13+
TestBed.configureTestingModule({
14+
imports: [HttpClientTestingModule, SharedModule],
15+
declarations: [ToolbarComponent],
16+
}).compileComponents();
17+
}));
2018

2119
beforeEach(() => {
2220
fixture = TestBed.createComponent(ToolbarComponent);

projects/elements-demo/src/app/features/contribute/contribute/contribute.component.spec.ts

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,12 @@ describe('ContributeComponent', () => {
99
let component: ContributeComponent;
1010
let fixture: ComponentFixture<ContributeComponent>;
1111

12-
beforeEach(
13-
waitForAsync(() => {
14-
TestBed.configureTestingModule({
15-
imports: [HttpClientTestingModule, SharedModule],
16-
declarations: [ContributeComponent],
17-
}).compileComponents();
18-
})
19-
);
12+
beforeEach(waitForAsync(() => {
13+
TestBed.configureTestingModule({
14+
imports: [HttpClientTestingModule, SharedModule],
15+
declarations: [ContributeComponent],
16+
}).compileComponents();
17+
}));
2018

2119
beforeEach(() => {
2220
fixture = TestBed.createComponent(ContributeComponent);

projects/elements-demo/src/app/features/docs/api/api.component.spec.ts

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,12 @@ describe('ApiComponent', () => {
88
let component: ApiComponent;
99
let fixture: ComponentFixture<ApiComponent>;
1010

11-
beforeEach(
12-
waitForAsync(() => {
13-
TestBed.configureTestingModule({
14-
imports: [SharedModule],
15-
declarations: [ApiComponent],
16-
}).compileComponents();
17-
})
18-
);
11+
beforeEach(waitForAsync(() => {
12+
TestBed.configureTestingModule({
13+
imports: [SharedModule],
14+
declarations: [ApiComponent],
15+
}).compileComponents();
16+
}));
1917

2018
beforeEach(() => {
2119
fixture = TestBed.createComponent(ApiComponent);

projects/elements-demo/src/app/features/docs/change-detection/change-detection.component.spec.ts

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,13 @@ describe('ChangeDetectionComponent', () => {
1010
let component: ChangeDetectionComponent;
1111
let fixture: ComponentFixture<ChangeDetectionComponent>;
1212

13-
beforeEach(
14-
waitForAsync(() => {
15-
TestBed.configureTestingModule({
16-
imports: [HighlightModule, SharedModule],
17-
declarations: [ChangeDetectionComponent],
18-
providers: [HIGHLIGHT_JS_PROVIDER],
19-
}).compileComponents();
20-
})
21-
);
13+
beforeEach(waitForAsync(() => {
14+
TestBed.configureTestingModule({
15+
imports: [HighlightModule, SharedModule],
16+
declarations: [ChangeDetectionComponent],
17+
providers: [HIGHLIGHT_JS_PROVIDER],
18+
}).compileComponents();
19+
}));
2220

2321
beforeEach(() => {
2422
fixture = TestBed.createComponent(ChangeDetectionComponent);

projects/elements-demo/src/app/features/docs/configuration/configuration.component.spec.ts

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,13 @@ describe('ConfigurationComponent', () => {
1111
let component: ConfigurationComponent;
1212
let fixture: ComponentFixture<ConfigurationComponent>;
1313

14-
beforeEach(
15-
waitForAsync(() => {
16-
TestBed.configureTestingModule({
17-
imports: [HighlightModule, RouterTestingModule, SharedModule],
18-
declarations: [ConfigurationComponent],
19-
providers: [HIGHLIGHT_JS_PROVIDER],
20-
}).compileComponents();
21-
})
22-
);
14+
beforeEach(waitForAsync(() => {
15+
TestBed.configureTestingModule({
16+
imports: [HighlightModule, RouterTestingModule, SharedModule],
17+
declarations: [ConfigurationComponent],
18+
providers: [HIGHLIGHT_JS_PROVIDER],
19+
}).compileComponents();
20+
}));
2321

2422
beforeEach(() => {
2523
fixture = TestBed.createComponent(ConfigurationComponent);

0 commit comments

Comments
 (0)