Project

General

Profile

« Previous | Next » 

Revision 60209

[Usage Counts | Trunk]: Add search-input on analytics

View differences:

analytics.module.ts
1
import {NgModule} from "@angular/core";
2
import {CommonModule} from "@angular/common";
3
import {RouterModule} from "@angular/router";
1
import {NgModule} from '@angular/core';
2
import {CommonModule} from '@angular/common';
3
import {RouterModule} from '@angular/router';
4 4

  
5
import {AnalyticsComponent} from "./analytics.component";
5
import {AnalyticsComponent} from './analytics.component';
6 6
import {MatAutocompleteModule} from '@angular/material/autocomplete';
7 7
import {ReactiveFormsModule} from '@angular/forms';
8 8
import {MatFormFieldModule} from '@angular/material/form-field';
......
10 10
import {Schema2jsonldModule} from '../openaireLibrary/sharedComponents/schema2jsonld/schema2jsonld.module';
11 11
import {IconsModule} from '../openaireLibrary/utils/icons/icons.module';
12 12
import {IconsService} from '../openaireLibrary/utils/icons/icons.service';
13
import {arrow_down, arrow_right} from '../openaireLibrary/utils/icons/icons';
13
import {arrow_down} from '../openaireLibrary/utils/icons/icons';
14 14
import {LoadingModule} from '../openaireLibrary/utils/loading/loading.module';
15
import {SearchInputModule} from '../openaireLibrary/sharedComponents/search-input/search-input.module';
15 16

  
16 17
@NgModule({
17 18
  imports: [
18 19
    CommonModule,
19
    MatAutocompleteModule,
20 20
    ReactiveFormsModule,
21
    MatFormFieldModule,
22
    MatInputModule,
23 21
    RouterModule.forChild([{
24 22
      path: '', component: AnalyticsComponent
25 23
    }]),
26 24
    Schema2jsonldModule,
27 25
    IconsModule,
28
    LoadingModule
26
    LoadingModule,
27
    SearchInputModule
29 28
  ],
30 29
  declarations: [AnalyticsComponent],
31 30
  exports: [AnalyticsComponent]

Also available in: Unified diff