2023-02-22 12:12:38 +01:00
|
|
|
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 { MatCheckboxModule } from '@angular/material/checkbox';
|
|
|
|
|
//import { MatChipsModule } from '@angular/material/chips';
|
|
|
|
|
//import { MatStepperModule } from '@angular/material/stepper';
|
|
|
|
|
//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 { MatPaginatorModule } from '@angular/material/paginator';
|
|
|
|
|
//import { MatProgressBarModule } from '@angular/material/progress-bar';
|
|
|
|
|
//import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
|
|
|
|
//import { MatRadioModule } from '@angular/material/radio';
|
|
|
|
|
//import { MatRippleModule } from '@angular/material/core';
|
|
|
|
|
import { MatSelectModule } from '@angular/material/select';
|
|
|
|
|
import { MatSidenavModule } from '@angular/material/sidenav';
|
|
|
|
|
//import { MatSliderModule } from '@angular/material/slider';
|
|
|
|
|
//import { MatSlideToggleModule } from '@angular/material/slide-toggle';
|
|
|
|
|
import { MatSortModule } from '@angular/material/sort';
|
|
|
|
|
import { MatTableModule } from '@angular/material/table';
|
|
|
|
|
//import { MatTabsModule } from '@angular/material/tabs';
|
|
|
|
|
import { MatToolbarModule } from '@angular/material/toolbar';
|
|
|
|
|
//import { MatTooltipModule } from '@angular/material/tooltip';
|
|
|
|
|
//import {CdkTableModule} from '@angular/cdk/table';
|
|
|
|
|
//import {MatBadgeModule} from '@angular/material/badge';
|
|
|
|
|
import {MatBottomSheetModule} from '@angular/material/bottom-sheet';
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
exports: [
|
|
|
|
|
// CdkTableModule,
|
|
|
|
|
// MatAutocompleteModule,
|
|
|
|
|
MatButtonModule,
|
|
|
|
|
// MatButtonToggleModule,
|
|
|
|
|
MatCardModule,
|
|
|
|
|
// MatCheckboxModule,
|
|
|
|
|
// MatChipsModule,
|
|
|
|
|
// MatStepperModule,
|
|
|
|
|
// MatDatepickerModule,
|
|
|
|
|
// MatDialogModule,
|
|
|
|
|
// MatExpansionModule,
|
|
|
|
|
MatGridListModule,
|
|
|
|
|
MatIconModule,
|
|
|
|
|
MatInputModule,
|
|
|
|
|
MatListModule,
|
|
|
|
|
MatMenuModule,
|
|
|
|
|
MatPaginatorModule,
|
|
|
|
|
// MatProgressBarModule,
|
|
|
|
|
// MatProgressSpinnerModule,
|
|
|
|
|
// MatRadioModule,
|
|
|
|
|
// MatRippleModule,
|
|
|
|
|
MatSelectModule,
|
|
|
|
|
// MatSidenavModule,
|
|
|
|
|
// MatSliderModule,
|
|
|
|
|
// MatSlideToggleModule,
|
|
|
|
|
MatSortModule,
|
|
|
|
|
MatTableModule,
|
|
|
|
|
// MatTabsModule,
|
|
|
|
|
MatToolbarModule,
|
|
|
|
|
// MatTooltipModule,
|
|
|
|
|
MatSidenavModule,
|
|
|
|
|
// MatBadgeModule,
|
|
|
|
|
MatBottomSheetModule
|
|
|
|
|
],
|
|
|
|
|
providers: []
|
|
|
|
|
})
|
2022-11-29 19:21:24 +01:00
|
|
|
export class MaterialModule {}
|