-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(angular): rework template to reduce InputChanges (#641)
- Loading branch information
1 parent
7f0c272
commit 87a9446
Showing
8 changed files
with
99,997 additions
and
100,381 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
packages/angular/src/ng-add-setup-project/files/src/app/coveo.components.module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import {NgModule} from '@angular/core'; | ||
import {BrowserModule} from '@angular/platform-browser'; | ||
import {ReactiveFormsModule} from '@angular/forms'; | ||
import {MatButtonModule} from '@angular/material/button'; | ||
import {MatAutocompleteModule} from '@angular/material/autocomplete'; | ||
import {MatInputModule} from '@angular/material/input'; | ||
import {MatFormFieldModule} from '@angular/material/form-field'; | ||
import {MatListModule} from '@angular/material/list'; | ||
import {MatPaginatorModule} from '@angular/material/paginator'; | ||
import {MatSelectModule} from '@angular/material/select'; | ||
import {ErrorComponent} from './error/error.component'; | ||
import {FacetListComponent} from './facet-list/facet-list.component'; | ||
import {FacetComponent} from './facet/facet.component'; | ||
import {PagerComponent} from './pager/pager.component'; | ||
import {QuerySummaryComponent} from './query-summary/query-summary.component'; | ||
import {ResultListComponent} from './result-list/result-list.component'; | ||
import {SearchBoxComponent} from './search-box/search-box.component'; | ||
import {SearchPageComponent} from './search-page/search-page.component'; | ||
import {SortComponent} from './sort/sort.component'; | ||
import {HeroComponent} from './hero/hero.component'; | ||
import {HomeComponent} from './home/home.component'; | ||
import {InitProvider} from './init.service'; | ||
|
||
@NgModule({ | ||
declarations: [ | ||
ErrorComponent, | ||
FacetComponent, | ||
FacetListComponent, | ||
PagerComponent, | ||
QuerySummaryComponent, | ||
ResultListComponent, | ||
SearchBoxComponent, | ||
SearchPageComponent, | ||
SortComponent, | ||
HeroComponent, | ||
HomeComponent, | ||
], | ||
imports: [ | ||
BrowserModule, | ||
MatAutocompleteModule, | ||
MatFormFieldModule, | ||
ReactiveFormsModule, | ||
MatInputModule, | ||
MatListModule, | ||
MatPaginatorModule, | ||
MatSelectModule, | ||
MatButtonModule, | ||
], | ||
providers: [InitProvider], | ||
}) | ||
export class CoveoComponentsModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.