Skip to content

Commit

Permalink
chore(release): 14.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tomastrajan committed Jul 22, 2022
1 parent 9b31481 commit 17c0f80
Show file tree
Hide file tree
Showing 29 changed files with 175 additions and 211 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

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.

## [14.0.0](https://github.com/angular-extensions/elements/compare/v13.0.0...v14.0.0) (2022-07-22)

### ⚠ BREAKING CHANGES

- **lib:** upgrade to Angular 14

### Features

- **lib:** upgrade to Angular 14 ([36ce07f](https://github.com/angular-extensions/elements/commit/36ce07f8c15aaee62b5bb6d3844ab83c4806c620))

## [13.0.0](https://github.com/angular-extensions/elements/compare/v12.6.0...v13.0.0) (2021-11-21)

### ⚠ BREAKING CHANGES
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@angular-extensions/elements",
"version": "13.0.0",
"version": "14.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve -o",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,12 @@ describe('FooterComponent', () => {
let component: FooterComponent;
let fixture: ComponentFixture<FooterComponent>;

beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
imports: [HttpClientTestingModule, SharedModule],
declarations: [FooterComponent],
}).compileComponents();
})
);
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [HttpClientTestingModule, SharedModule],
declarations: [FooterComponent],
}).compileComponents();
}));

beforeEach(() => {
fixture = TestBed.createComponent(FooterComponent);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,12 @@ describe('NavigationComponent', () => {
let component: NavigationComponent;
let fixture: ComponentFixture<NavigationComponent>;

beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
imports: [RouterTestingModule, SharedModule],
declarations: [NavigationComponent],
}).compileComponents();
})
);
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [RouterTestingModule, SharedModule],
declarations: [NavigationComponent],
}).compileComponents();
}));

beforeEach(() => {
fixture = TestBed.createComponent(NavigationComponent);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,12 @@ describe('ToolbarComponent', () => {
let component: ToolbarComponent;
let fixture: ComponentFixture<ToolbarComponent>;

beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
imports: [HttpClientTestingModule, SharedModule],
declarations: [ToolbarComponent],
}).compileComponents();
})
);
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [HttpClientTestingModule, SharedModule],
declarations: [ToolbarComponent],
}).compileComponents();
}));

beforeEach(() => {
fixture = TestBed.createComponent(ToolbarComponent);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,12 @@ describe('ContributeComponent', () => {
let component: ContributeComponent;
let fixture: ComponentFixture<ContributeComponent>;

beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
imports: [HttpClientTestingModule, SharedModule],
declarations: [ContributeComponent],
}).compileComponents();
})
);
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [HttpClientTestingModule, SharedModule],
declarations: [ContributeComponent],
}).compileComponents();
}));

beforeEach(() => {
fixture = TestBed.createComponent(ContributeComponent);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,12 @@ describe('ApiComponent', () => {
let component: ApiComponent;
let fixture: ComponentFixture<ApiComponent>;

beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
imports: [SharedModule],
declarations: [ApiComponent],
}).compileComponents();
})
);
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [SharedModule],
declarations: [ApiComponent],
}).compileComponents();
}));

beforeEach(() => {
fixture = TestBed.createComponent(ApiComponent);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,13 @@ describe('ChangeDetectionComponent', () => {
let component: ChangeDetectionComponent;
let fixture: ComponentFixture<ChangeDetectionComponent>;

beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
imports: [HighlightModule, SharedModule],
declarations: [ChangeDetectionComponent],
providers: [HIGHLIGHT_JS_PROVIDER],
}).compileComponents();
})
);
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [HighlightModule, SharedModule],
declarations: [ChangeDetectionComponent],
providers: [HIGHLIGHT_JS_PROVIDER],
}).compileComponents();
}));

beforeEach(() => {
fixture = TestBed.createComponent(ChangeDetectionComponent);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,13 @@ describe('ConfigurationComponent', () => {
let component: ConfigurationComponent;
let fixture: ComponentFixture<ConfigurationComponent>;

beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
imports: [HighlightModule, RouterTestingModule, SharedModule],
declarations: [ConfigurationComponent],
providers: [HIGHLIGHT_JS_PROVIDER],
}).compileComponents();
})
);
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [HighlightModule, RouterTestingModule, SharedModule],
declarations: [ConfigurationComponent],
providers: [HIGHLIGHT_JS_PROVIDER],
}).compileComponents();
}));

beforeEach(() => {
fixture = TestBed.createComponent(ConfigurationComponent);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,12 @@ describe('DocsComponent', () => {
let component: DocsComponent;
let fixture: ComponentFixture<DocsComponent>;

beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
imports: [RouterTestingModule],
declarations: [DocsComponent],
}).compileComponents();
})
);
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [RouterTestingModule],
declarations: [DocsComponent],
}).compileComponents();
}));

beforeEach(() => {
fixture = TestBed.createComponent(DocsComponent);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,12 @@ describe('FaqComponent', () => {
let component: FaqComponent;
let fixture: ComponentFixture<FaqComponent>;

beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
imports: [NoopAnimationsModule, SharedModule],
declarations: [FaqComponent],
}).compileComponents();
})
);
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [NoopAnimationsModule, SharedModule],
declarations: [FaqComponent],
}).compileComponents();
}));

beforeEach(() => {
fixture = TestBed.createComponent(FaqComponent);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,13 @@ describe('GettingStartedComponent', () => {
let component: GettingStartedComponent;
let fixture: ComponentFixture<GettingStartedComponent>;

beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
imports: [HighlightModule, SharedModule],
declarations: [GettingStartedComponent],
providers: [HIGHLIGHT_JS_PROVIDER],
}).compileComponents();
})
);
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [HighlightModule, SharedModule],
declarations: [GettingStartedComponent],
providers: [HIGHLIGHT_JS_PROVIDER],
}).compileComponents();
}));

beforeEach(() => {
fixture = TestBed.createComponent(GettingStartedComponent);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,13 @@ describe('HowItWorksComponent', () => {
let component: HowItWorksComponent;
let fixture: ComponentFixture<HowItWorksComponent>;

beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
imports: [HighlightModule, RouterTestingModule, SharedModule],
declarations: [HowItWorksComponent],
providers: [HIGHLIGHT_JS_PROVIDER],
}).compileComponents();
})
);
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [HighlightModule, RouterTestingModule, SharedModule],
declarations: [HowItWorksComponent],
providers: [HIGHLIGHT_JS_PROVIDER],
}).compileComponents();
}));

beforeEach(() => {
fixture = TestBed.createComponent(HowItWorksComponent);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,11 @@ describe('UseCasesComponent', () => {
let component: UseCasesComponent;
let fixture: ComponentFixture<UseCasesComponent>;

beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [UseCasesComponent],
}).compileComponents();
})
);
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [UseCasesComponent],
}).compileComponents();
}));

beforeEach(() => {
fixture = TestBed.createComponent(UseCasesComponent);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,14 @@ describe('AdvancedComponent', () => {
let component: AdvancedComponent;
let fixture: ComponentFixture<AdvancedComponent>;

beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [AdvancedComponent],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
imports: [LazyElementsModule, HighlightModule, SharedModule],
providers: [HIGHLIGHT_JS_PROVIDER],
}).compileComponents();
})
);
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [AdvancedComponent],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
imports: [LazyElementsModule, HighlightModule, SharedModule],
providers: [HIGHLIGHT_JS_PROVIDER],
}).compileComponents();
}));

beforeEach(() => {
fixture = TestBed.createComponent(AdvancedComponent);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,14 @@ describe('BasicComponent', () => {
let component: BasicComponent;
let fixture: ComponentFixture<BasicComponent>;

beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [BasicComponent],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
imports: [LazyElementsModule, HighlightModule, SharedModule],
providers: [HIGHLIGHT_JS_PROVIDER],
}).compileComponents();
})
);
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [BasicComponent],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
imports: [LazyElementsModule, HighlightModule, SharedModule],
providers: [HIGHLIGHT_JS_PROVIDER],
}).compileComponents();
}));

beforeEach(() => {
fixture = TestBed.createComponent(BasicComponent);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,14 @@ describe('DynamicComponent', () => {
let component: DynamicComponent;
let fixture: ComponentFixture<DynamicComponent>;

beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [DynamicComponent],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
imports: [LazyElementsModule, HighlightModule, SharedModule],
providers: [HIGHLIGHT_JS_PROVIDER],
}).compileComponents();
})
);
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [DynamicComponent],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
imports: [LazyElementsModule, HighlightModule, SharedModule],
providers: [HIGHLIGHT_JS_PROVIDER],
}).compileComponents();
}));

beforeEach(() => {
fixture = TestBed.createComponent(DynamicComponent);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,12 @@ describe('ExamplesComponent', () => {
let component: ExamplesComponent;
let fixture: ComponentFixture<ExamplesComponent>;

beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
imports: [SharedModule, RouterTestingModule],
declarations: [ExamplesComponent],
}).compileComponents();
})
);
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [SharedModule, RouterTestingModule],
declarations: [ExamplesComponent],
}).compileComponents();
}));

beforeEach(() => {
fixture = TestBed.createComponent(ExamplesComponent);
Expand Down
Loading

0 comments on commit 17c0f80

Please sign in to comment.