2020-04-28 21:09:35 +09:00
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { MatAutocompleteModule } from '@angular/material/autocomplete';
|
|
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
|
|
import { MatButtonToggleModule } from '@angular/material/button-toggle';
|
|
|
|
import { MatCardModule } from '@angular/material/card';
|
|
|
|
import { MatChipsModule } from '@angular/material/chips';
|
|
|
|
import { MatDatepickerModule } from '@angular/material/datepicker';
|
|
|
|
import { MatDialogModule } from '@angular/material/dialog';
|
|
|
|
import { MatExpansionModule } from '@angular/material/expansion';
|
|
|
|
import { MatGridListModule } from '@angular/material/grid-list';
|
|
|
|
import { MatIconModule } from '@angular/material/icon';
|
|
|
|
import { MatInputModule } from '@angular/material/input';
|
|
|
|
import { MatListModule } from '@angular/material/list';
|
|
|
|
import { MatMenuModule } from '@angular/material/menu';
|
|
|
|
import { MatProgressBarModule } from '@angular/material/progress-bar';
|
|
|
|
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
|
|
|
import { MatRadioModule } from '@angular/material/radio';
|
|
|
|
import { MatSelectModule } from '@angular/material/select';
|
|
|
|
import { MatSidenavModule } from '@angular/material/sidenav';
|
|
|
|
import { MatSlideToggleModule } from '@angular/material/slide-toggle';
|
|
|
|
import { MatSliderModule } from '@angular/material/slider';
|
|
|
|
import { MatSnackBarModule } from '@angular/material/snack-bar';
|
|
|
|
import { MatStepperModule } from '@angular/material/stepper';
|
|
|
|
import { MatTabsModule } from '@angular/material/tabs';
|
|
|
|
import { MatTooltipModule } from '@angular/material/tooltip';
|
|
|
|
import { MatPaginatorModule } from '@angular/material/paginator';
|
|
|
|
import { MatSortModule } from '@angular/material/sort';
|
|
|
|
import { MatFormFieldModule } from '@angular/material/form-field';
|
|
|
|
import { MatCheckboxModule } from '@angular/material/checkbox';
|
|
|
|
import { MatToolbarModule } from '@angular/material/toolbar';
|
|
|
|
import { MatTableModule } from '@angular/material/table';
|
|
|
|
import { MatTreeModule } from '@angular/material/tree';
|
|
|
|
import { MatBadgeModule } from '@angular/material/badge';
|
|
|
|
|
|
|
|
const MODULE = [
|
|
|
|
MatAutocompleteModule,
|
|
|
|
MatButtonModule,
|
|
|
|
MatButtonToggleModule,
|
|
|
|
MatBadgeModule,
|
|
|
|
MatCardModule,
|
|
|
|
MatChipsModule,
|
|
|
|
MatDatepickerModule,
|
|
|
|
MatDialogModule,
|
|
|
|
MatExpansionModule,
|
|
|
|
MatGridListModule,
|
|
|
|
MatIconModule,
|
|
|
|
MatInputModule,
|
|
|
|
MatListModule,
|
|
|
|
MatMenuModule,
|
|
|
|
MatProgressBarModule,
|
|
|
|
MatProgressSpinnerModule,
|
|
|
|
MatRadioModule,
|
|
|
|
MatCheckboxModule,
|
|
|
|
MatSelectModule,
|
|
|
|
MatSidenavModule,
|
|
|
|
MatSlideToggleModule,
|
|
|
|
MatSliderModule,
|
|
|
|
MatSnackBarModule,
|
|
|
|
MatStepperModule,
|
|
|
|
MatTabsModule,
|
|
|
|
MatTooltipModule,
|
|
|
|
MatPaginatorModule,
|
|
|
|
MatSortModule,
|
|
|
|
MatToolbarModule,
|
|
|
|
MatTableModule,
|
|
|
|
MatFormFieldModule,
|
2020-05-08 15:31:07 +09:00
|
|
|
MatTreeModule,
|
|
|
|
MatStepperModule
|
2020-04-28 21:09:35 +09:00
|
|
|
];
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [...MODULE],
|
|
|
|
exports: [...MODULE]
|
|
|
|
})
|
|
|
|
export class MaterialModule {}
|