|
| 1 | +import { A11yModule } from '@angular/cdk/a11y'; |
| 2 | +import { DragDropModule } from '@angular/cdk/drag-drop'; |
| 3 | +import { ScrollingModule } from '@angular/cdk/scrolling'; |
| 4 | +import { CdkStepperModule } from '@angular/cdk/stepper'; |
| 5 | +import { CdkTableModule } from '@angular/cdk/table'; |
| 6 | +import { CdkTreeModule } from '@angular/cdk/tree'; |
| 7 | +import { NgModule } from '@angular/core'; |
| 8 | +import { MatAutocompleteModule } from '@angular/material/autocomplete'; |
| 9 | +import { MatBadgeModule } from '@angular/material/badge'; |
| 10 | +import { MatBottomSheetModule } from '@angular/material/bottom-sheet'; |
| 11 | +import { MatButtonModule } from '@angular/material/button'; |
| 12 | +import { MatButtonToggleModule } from '@angular/material/button-toggle'; |
| 13 | +import { MatCardModule } from '@angular/material/card'; |
| 14 | +import { MatCheckboxModule } from '@angular/material/checkbox'; |
| 15 | +import { MatChipsModule } from '@angular/material/chips'; |
| 16 | +import { MatNativeDateModule, MatRippleModule } from '@angular/material/core'; |
| 17 | +import { MatDatepickerModule } from '@angular/material/datepicker'; |
| 18 | +import { MatDialogModule } from '@angular/material/dialog'; |
| 19 | +import { MatDividerModule } from '@angular/material/divider'; |
| 20 | +import { MatExpansionModule } from '@angular/material/expansion'; |
| 21 | +import { MatGridListModule } from '@angular/material/grid-list'; |
| 22 | +import { MatIconModule } from '@angular/material/icon'; |
| 23 | +import { MatInputModule } from '@angular/material/input'; |
| 24 | +import { MatListModule } from '@angular/material/list'; |
| 25 | +import { MatMenuModule } from '@angular/material/menu'; |
| 26 | +import { MatPaginatorModule } from '@angular/material/paginator'; |
| 27 | +import { MatProgressBarModule } from '@angular/material/progress-bar'; |
| 28 | +import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'; |
| 29 | +import { MatRadioModule } from '@angular/material/radio'; |
| 30 | +import { MatSelectModule } from '@angular/material/select'; |
| 31 | +import { MatSidenavModule } from '@angular/material/sidenav'; |
| 32 | +import { MatSlideToggleModule } from '@angular/material/slide-toggle'; |
| 33 | +import { MatSliderModule } from '@angular/material/slider'; |
| 34 | +import { MatSnackBarModule } from '@angular/material/snack-bar'; |
| 35 | +import { MatSortModule } from '@angular/material/sort'; |
| 36 | +import { MatStepperModule } from '@angular/material/stepper'; |
| 37 | +import { MatTableModule } from '@angular/material/table'; |
| 38 | +import { MatTabsModule } from '@angular/material/tabs'; |
| 39 | +import { MatToolbarModule } from '@angular/material/toolbar'; |
| 40 | +import { MatTooltipModule } from '@angular/material/tooltip'; |
| 41 | +import { MatTreeModule } from '@angular/material/tree'; |
| 42 | + |
| 43 | +@NgModule({ |
| 44 | + exports: [ |
| 45 | + A11yModule, |
| 46 | + CdkStepperModule, |
| 47 | + CdkTableModule, |
| 48 | + CdkTreeModule, |
| 49 | + DragDropModule, |
| 50 | + MatAutocompleteModule, |
| 51 | + MatBadgeModule, |
| 52 | + MatBottomSheetModule, |
| 53 | + MatButtonModule, |
| 54 | + MatButtonToggleModule, |
| 55 | + MatCardModule, |
| 56 | + MatCheckboxModule, |
| 57 | + MatChipsModule, |
| 58 | + MatStepperModule, |
| 59 | + MatDatepickerModule, |
| 60 | + MatDialogModule, |
| 61 | + MatDividerModule, |
| 62 | + MatExpansionModule, |
| 63 | + MatGridListModule, |
| 64 | + MatIconModule, |
| 65 | + MatInputModule, |
| 66 | + MatListModule, |
| 67 | + MatMenuModule, |
| 68 | + MatNativeDateModule, |
| 69 | + MatPaginatorModule, |
| 70 | + MatProgressBarModule, |
| 71 | + MatProgressSpinnerModule, |
| 72 | + MatRadioModule, |
| 73 | + MatRippleModule, |
| 74 | + MatSelectModule, |
| 75 | + MatSidenavModule, |
| 76 | + MatSliderModule, |
| 77 | + MatSlideToggleModule, |
| 78 | + MatSnackBarModule, |
| 79 | + MatSortModule, |
| 80 | + MatTableModule, |
| 81 | + MatTabsModule, |
| 82 | + MatToolbarModule, |
| 83 | + MatTooltipModule, |
| 84 | + MatTreeModule, |
| 85 | + ScrollingModule, |
| 86 | + ], |
| 87 | +}) |
| 88 | +export class FsMaterialFullModule {} |
0 commit comments