refactor(aio): move SearchResultsComponent into shared module (#19682)
This will allow it to be used by an embedded component. PR Close #19682
This commit is contained in:
parent
c3f07b329f
commit
88c46feb20
|
@ -21,7 +21,7 @@ import { MockSearchService } from 'testing/search.service';
|
||||||
import { NavigationNode } from 'app/navigation/navigation.service';
|
import { NavigationNode } from 'app/navigation/navigation.service';
|
||||||
import { ScrollService } from 'app/shared/scroll.service';
|
import { ScrollService } from 'app/shared/scroll.service';
|
||||||
import { SearchBoxComponent } from 'app/search/search-box/search-box.component';
|
import { SearchBoxComponent } from 'app/search/search-box/search-box.component';
|
||||||
import { SearchResultsComponent } from 'app/search/search-results/search-results.component';
|
import { SearchResultsComponent } from 'app/shared/search-results/search-results.component';
|
||||||
import { SearchService } from 'app/search/search.service';
|
import { SearchService } from 'app/search/search.service';
|
||||||
import { SelectComponent } from 'app/shared/select/select.component';
|
import { SelectComponent } from 'app/shared/select/select.component';
|
||||||
import { TocComponent } from 'app/embedded/toc/toc.component';
|
import { TocComponent } from 'app/embedded/toc/toc.component';
|
||||||
|
|
|
@ -43,7 +43,6 @@ import { NavMenuComponent } from 'app/layout/nav-menu/nav-menu.component';
|
||||||
import { NavItemComponent } from 'app/layout/nav-item/nav-item.component';
|
import { NavItemComponent } from 'app/layout/nav-item/nav-item.component';
|
||||||
import { ScrollService } from 'app/shared/scroll.service';
|
import { ScrollService } from 'app/shared/scroll.service';
|
||||||
import { ScrollSpyService } from 'app/shared/scroll-spy.service';
|
import { ScrollSpyService } from 'app/shared/scroll-spy.service';
|
||||||
import { SearchResultsComponent } from './search/search-results/search-results.component';
|
|
||||||
import { SearchBoxComponent } from './search/search-box/search-box.component';
|
import { SearchBoxComponent } from './search/search-box/search-box.component';
|
||||||
import { TocService } from 'app/shared/toc.service';
|
import { TocService } from 'app/shared/toc.service';
|
||||||
|
|
||||||
|
@ -95,7 +94,6 @@ export const svgIconProviders = [
|
||||||
ModeBannerComponent,
|
ModeBannerComponent,
|
||||||
NavMenuComponent,
|
NavMenuComponent,
|
||||||
NavItemComponent,
|
NavItemComponent,
|
||||||
SearchResultsComponent,
|
|
||||||
SearchBoxComponent,
|
SearchBoxComponent,
|
||||||
TopMenuComponent,
|
TopMenuComponent,
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
import { NgModule } from '@angular/core';
|
import { NgModule } from '@angular/core';
|
||||||
import { CommonModule } from '@angular/common';
|
import { CommonModule } from '@angular/common';
|
||||||
|
import { SearchResultsComponent } from './search-results/search-results.component';
|
||||||
import { SelectComponent } from './select/select.component';
|
import { SelectComponent } from './select/select.component';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
|
@ -7,9 +8,11 @@ import { SelectComponent } from './select/select.component';
|
||||||
CommonModule
|
CommonModule
|
||||||
],
|
],
|
||||||
exports: [
|
exports: [
|
||||||
|
SearchResultsComponent,
|
||||||
SelectComponent
|
SelectComponent
|
||||||
],
|
],
|
||||||
declarations: [
|
declarations: [
|
||||||
|
SearchResultsComponent,
|
||||||
SelectComponent
|
SelectComponent
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue