@angular/material/dialog#MatDialogModule TypeScript Examples
The following examples show how to use
@angular/material/dialog#MatDialogModule.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: app.module.ts From bdc-walkthrough with MIT License | 6 votes |
@NgModule({
declarations: [
AppComponent,
Example1Component,
Example2Component,
Example3Component,
Example4Component,
Example5Component,
Example6Component,
Example7Component
],
imports: [
BrowserModule,
BrowserAnimationsModule,
FormsModule,
AppRoutingModule,
MatIconModule,
MatButtonModule,
MatCheckboxModule,
MatFormFieldModule,
MatInputModule,
MatDialogModule,
BdcWalkModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Example #2
Source File: app.module.ts From league-profile-tool with MIT License | 6 votes |
@NgModule({
declarations: [AppComponent, HomeComponent, StatusComponent, DialogComponent, ChibiComponent, BackgroundComponent, ChampionsPipe, ChatrankComponent, ChampionPurchaseDateComponent, CustomapiComponent, FaqComponent, CustomiconComponent, IconsPipe, PracticetoolComponent],
imports: [
BrowserModule,
FormsModule,
CoreModule,
AppRoutingModule,
MatTabsModule,
BrowserAnimationsModule,
MatCardModule,
MatButtonModule,
MatInputModule,
MatDialogModule,
MatSelectModule,
MatSortModule,
HttpClientModule,
],
providers: [ElectronService],
bootstrap: [AppComponent]
})
export class AppModule {
}
Example #3
Source File: app.module.ts From ng-spotify-importer with GNU General Public License v3.0 | 6 votes |
@NgModule({
imports: [
BrowserModule,
RouterModule.forRoot([], { relativeLinkResolution: 'legacy' }),
FormsModule,
BrowserAnimationsModule,
MatDialogModule,
HttpClientModule,
],
declarations: [
AppComponent,
SpotifyAuthComponent,
PlaylistEditorComponent,
FileReaderComponent,
NotificationComponent,
SongDetailsComponent,
CleanupUnknownSongsHelpComponent
],
providers: [
{ provide: 'SpotifyWebApiJs', useClass: SpotifyWebApi }
],
bootstrap: [AppComponent]
})
export class AppModule {
}
Example #4
Source File: app-material.module.ts From barista with Apache License 2.0 | 6 votes |
expose = [ BrowserAnimationsModule, MatButtonModule, MatButtonToggleModule, MatCardModule, MatDialogModule, MatGridListModule, MatIconModule, MatListModule, MatMenuModule, MatSidenavModule, MatSnackBarModule, MatTabsModule, MatToolbarModule, MatButtonModule, MatCardModule, MatGridListModule, MatIconModule, MatMenuModule, MatTreeModule, MatFormFieldModule, MatInputModule, MatSelectModule, MatOptionModule, MatProgressSpinnerModule, MatExpansionModule, MatTooltipModule, ]
Example #5
Source File: app.module.ts From Angular-Cookbook with MIT License | 6 votes |
@NgModule({
declarations: [
AppComponent,
DiceComponent,
ValueGuesserComponent,
GameComponent,
LeaderBoardComponent,
GameStepperComponent,
InstallablePromptComponent,
],
imports: [
BrowserModule,
AppRoutingModule,
ReactiveFormsModule,
CdkStepperModule,
ServiceWorkerModule.register('ngsw-worker.js', {
enabled: environment.production,
// Register the ServiceWorker as soon as the app is stable
// or after 30 seconds (whichever comes first).
registrationStrategy: 'registerWhenStable:30000',
}),
BrowserAnimationsModule,
MatDialogModule,
MatButtonModule,
],
providers: [],
bootstrap: [AppComponent],
})
export class AppModule {}
Example #6
Source File: material.module.ts From App with MIT License | 6 votes |
modules = [ MatToolbarModule, MatRippleModule, MatIconModule, MatTooltipModule, MatButtonModule, MatDividerModule, MatFormFieldModule, MatInputModule, MatCheckboxModule, MatProgressSpinnerModule, MatProgressBarModule, MatPaginatorModule, MatDialogModule, MatMenuModule, MatRadioModule, MatDatepickerModule, MatNativeDateModule, MatExpansionModule, MatSelectModule, MatBadgeModule, MatChipsModule ]
Example #7
Source File: credits-dialog.module.ts From colo-calc with Do What The F*ck You Want To Public License | 6 votes |
@NgModule({
imports: [
CommonModule,
MatDialogModule,
FormsModule,
ReactiveFormsModule,
MatInputModule,
PipesModule,
],
declarations: [CreditsDialogComponent],
exports: [CreditsDialogComponent],
providers: [CreditsDialogComponent],
})
export class CreditsDialogModule { }
Example #8
Source File: alert-list.module.ts From VIR with MIT License | 6 votes |
@NgModule({
declarations: [AlertListComponent],
imports: [
CommonModule,
MatTreeModule,
MatIconModule,
MatButtonModule,
MatDialogModule,
ItemDetailsModule,
ItemModule,
MatTooltipModule,
MatInputModule,
MatSlideToggleModule,
MatDividerModule,
FormsModule,
DragDropModule,
ScrollingModule,
MatButtonToggleModule,
QuotaRuleModule,
QuotaRuleDetailsModule,
MatMenuModule,
],
exports: [
AlertListComponent,
],
})
export class AlertListModule {
}
Example #9
Source File: app.module.ts From travel-list with MIT License | 6 votes |
@NgModule({
declarations: [
AppComponent,
TravelListComponent,
TravelTabsComponent,
NewComponent,
],
imports: [
BrowserModule,
AppRoutingModule,
BrowserAnimationsModule,
HttpClientModule,
LayoutModule,
MatToolbarModule,
MatButtonModule,
MatSidenavModule,
MatIconModule,
MatListModule,
MatCardModule,
MatTabsModule,
MatDialogModule,
MatFormFieldModule,
MatInputModule,
FormsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {
}
Example #10
Source File: export.component.spec.ts From svg-path-editor with Apache License 2.0 | 6 votes |
describe('ExportComponent', () => {
let component: ExportComponent;
let fixture: ComponentFixture<ExportComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [ MatDialogModule, MatIconModule ],
declarations: [ ExportComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(ExportComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
Example #11
Source File: image-viewer.module.ts From nghacks with MIT License | 6 votes |
@NgModule({
declarations: [
ImageViewerComponent,
ImageViewerDirective
],
imports: [
CommonModule,
MatDialogModule,
MatProgressSpinnerModule,
MatButtonModule,
MatIconModule
],
exports: [
ImageViewerDirective
]
})
export class ImageViewerModule { }
Example #12
Source File: material.module.ts From router with MIT License | 6 votes |
@NgModule({
imports: [
MatInputModule,
MatCardModule,
MatButtonModule,
MatSidenavModule,
MatListModule,
MatIconModule,
MatToolbarModule,
MatProgressSpinnerModule,
MatDialogModule,
],
exports: [
MatInputModule,
MatCardModule,
MatButtonModule,
MatSidenavModule,
MatListModule,
MatIconModule,
MatToolbarModule,
MatProgressSpinnerModule,
MatDialogModule,
],
})
export class MaterialModule {}
Example #13
Source File: form-builder.module.ts From ASW-Form-Builder with MIT License | 6 votes |
@NgModule({
declarations: [
AswFormBuilder
],
imports: [
CommonModule,
FormsModule,
HttpClientModule,
ReactiveFormsModule,
MatDialogModule,
DragDropModule,
ClipboardModule,
MatIconModule,
AswAutocompleteModule,
AswButtonModule,
AswCheckboxModule,
AswDatepickerModule,
AswDividerModule,
AswDrawingModule,
AswGpsModule,
AswHeaderModule,
AswImageModule,
AswMultiSelectModule,
AswParagraphModule,
AswSelectModule,
AswSignatureModule,
AswSlideToggleModule,
AswTextareaModule,
AswTextboxModule,
AswRadioButtonModule,
AswJsonPreviewDialogModule
],
exports: [AswFormBuilder]
})
export class AswFormBuilderModule { }
Example #14
Source File: auth.module.ts From budget-angular with GNU General Public License v3.0 | 6 votes |
@NgModule({
declarations: [
LoginComponent,
SignupComponent,
ConfirmComponent,
ForRolesDirective,
PasswordComponent,
RecoverComponent,
OAuthComponent,
OtpComponent,
],
exports: [ForRolesDirective],
imports: [
CommonModule,
RouterModule,
AuthRoutingModule,
FormsModule,
ReactiveFormsModule,
MatButtonModule,
MatFormFieldModule,
MatInputModule,
MatDialogModule,
],
providers: [
{
provide: HTTP_INTERCEPTORS,
useClass: AuthInterceptor,
multi: true,
},
authStrategyProvider,
],
})
export class AuthModule {}
Example #15
Source File: app.module.ts From RoboScan with GNU General Public License v3.0 | 6 votes |
@NgModule({
declarations: [
AppComponent,
AlertDialogComponent,
DockerDialogComponent,
SambaDialogComponent,
RsyncDialogComponent,
CaptureOneDialogComponent
],
imports: [
HttpClientModule,
BrowserModule,
BrowserAnimationsModule,
FormsModule,
ReactiveFormsModule,
MatToolbarModule,
MatStepperModule,
MatButtonModule,
MatIconModule,
MatFormFieldModule,
MatDialogModule,
MatMenuModule,
MatDividerModule,
MatAutocompleteModule,
MatInputModule,
MatSelectModule,
MatButtonToggleModule,
MatExpansionModule,
MatSlideToggleModule,
SocketIoModule.forRoot(config),
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Example #16
Source File: material.module.ts From bitcoin-s-ts with MIT License | 6 votes |
materialModules = [
MatBottomSheetModule,
MatButtonModule,
MatCheckboxModule,
MatDatepickerModule,
MatDialogModule, // For focus
MatFormFieldModule,
MatIconModule,
MatInputModule,
MatMenuModule,
MatNativeDateModule,
MatOptionModule,
MatProgressSpinnerModule,
MatSelectModule,
MatSidenavModule,
MatSlideToggleModule,
MatSnackBarModule,
MatSortModule,
MatProgressSpinnerModule,
MatRadioModule,
MatTableModule,
MatTooltipModule,
]
Example #17
Source File: app.module.ts From careydevelopmentcrm with MIT License | 6 votes |
@NgModule({
declarations: [
AppComponent,
MenuListItemComponent,
FeaturesComponent,
ConfirmationDialogComponent
],
imports: [
BrowserModule,
FlexLayoutModule,
HttpClientModule,
AppRoutingModule,
BrowserAnimationsModule,
MatToolbarModule,
MatSidenavModule,
MatListModule,
MatIconModule,
MatDialogModule,
MatButtonModule,
MatNativeDateModule,
BreadcrumbModule,
UserModule.forRoot({ baseUrl: environment.baseUserServiceUrl }),
AuthModule.forRoot({ baseUrl: environment.baseUserServiceUrl }),
GeoModule.forRoot({ baseUrl: environment.baseGeoServiceUrl }),
ValidationModule.forRoot({ fieldSummaries : allFieldSummaries })
],
providers: [
{ provide: HTTP_INTERCEPTORS, useClass: JwtInterceptor, multi: true },
{ provide: HTTP_INTERCEPTORS, useClass: HttpErrorInterceptor, multi: true }
],
bootstrap: [AppComponent]
})
export class AppModule { }
Example #18
Source File: json-schema-form.module.ts From json-schema-form with Apache License 2.0 | 6 votes |
@NgModule({
declarations: [JsonSchemaFormComponent, EditElementDialogComponent, WidgetDirective],
imports: [
MatCardModule,
FlexLayoutModule,
MatIconModule,
MatTooltipModule,
MatTableModule,
MatTabsModule,
MatFormFieldModule,
MatSelectModule,
MatDatepickerModule,
MatCheckboxModule,
MatAutocompleteModule,
HttpClientModule,
CommonModule,
MatInputModule,
MatNativeDateModule,
MatButtonModule,
MatExpansionModule,
MatMenuModule,
ReactiveFormsModule,
MatDialogModule,
MatChipsModule,
DragDropModule
],
exports: [JsonSchemaFormComponent],
providers: [
// turn off tooltip gestures on mobile: https://github.com/angular/components/issues/4892
{ provide: MAT_TOOLTIP_DEFAULT_OPTIONS, useValue: { touchGestures: 'off' } },
{ provide: EDIT_DIALOG_TOKEN, useValue: EditElementDialogComponent }
]
})
export class JsonSchemaFormModule { }
Example #19
Source File: material.module.ts From mysql_node_angular with MIT License | 6 votes |
myModules = [ MatToolbarModule, MatSidenavModule, MatButtonModule, MatMenuModule, MatListModule, MatIconModule, MatInputModule, MatCardModule, MatTableModule, MatSortModule, MatDialogModule, MatOptionModule, MatSelectModule, ]
Example #20
Source File: color-picker.module.ts From angular-material-components with MIT License | 6 votes |
@NgModule({
declarations: [
NgxMatColorPaletteComponent,
NgxMatColorCanvasComponent,
NgxMatColorCollectionComponent,
NgxMatColorSliderComponent,
NumericColorInputDirective,
NgxMatColorPickerContentComponent,
NgxMatColorPickerComponent,
NgxMatColorToggleComponent,
NgxMatColorPickerInput
],
imports: [
CommonModule,
MatInputModule,
MatButtonModule,
MatCardModule,
MatRadioModule,
FormsModule,
ReactiveFormsModule,
MatDialogModule,
PortalModule,
MatIconModule
],
exports: [
NgxMatColorToggleComponent,
NgxMatColorPickerInput,
NgxMatColorPickerComponent
],
entryComponents: [
NgxMatColorPickerContentComponent
],
providers: [
ColorAdapter,
NGX_MAT_COLOR_PICKER_SCROLL_STRATEGY_FACTORY_PROVIDER
]
})
export class NgxMatColorPickerModule { }
Example #21
Source File: layout.module.ts From open-source with MIT License | 6 votes |
@NgModule({
imports: [
CommonModule,
FlexLayoutModule,
RouterModule,
MatButtonModule,
MatDialogModule,
MatIconModule,
MatTooltipModule,
],
declarations: [
HeaderComponent,
FooterComponent,
LayoutWrapperComponent,
SectionBadgesComponent,
SectionActionsComponent,
PromptDialog,
],
exports: [
LayoutWrapperComponent,
SectionBadgesComponent,
SectionActionsComponent,
PromptDialog,
],
schemas: [NO_ERRORS_SCHEMA],
})
export class LayoutModule {}
Example #22
Source File: material.module.ts From capture-lite with GNU General Public License v3.0 | 6 votes |
modules = [ MatCheckboxModule, MatButtonModule, MatInputModule, MatAutocompleteModule, MatDatepickerModule, MatFormFieldModule, MatRadioModule, MatSelectModule, MatSliderModule, MatSlideToggleModule, MatMenuModule, MatSidenavModule, MatToolbarModule, MatListModule, MatGridListModule, MatCardModule, MatStepperModule, MatTabsModule, MatExpansionModule, MatButtonToggleModule, MatChipsModule, MatIconModule, MatProgressSpinnerModule, MatProgressBarModule, MatDialogModule, MatTooltipModule, MatSnackBarModule, MatTableModule, MatSortModule, MatPaginatorModule, MatBadgeModule, MatBottomSheetModule, ]
Example #23
Source File: youpez.module.ts From youpez-admin with MIT License | 6 votes |
MainModules = [ RouterModule, FlexLayoutModule, ResizableModule, BemModule, NgbDropdownModule, NgbTooltipModule, DragDropModule, A11yModule, ReactiveFormsModule, MatDialogModule, ]
Example #24
Source File: custom-material.module.ts From ledge with Mozilla Public License 2.0 | 6 votes |
modules = [ MatToolbarModule, MatButtonModule, MatMenuModule, MatProgressSpinnerModule, MatSliderModule, MatSidenavModule, MatIconModule, MatDialogModule, MatCardModule, MatInputModule, MatTooltipModule, MatTabsModule, MatSelectModule, MatFormFieldModule, ScrollingModule, ]
Example #25
Source File: app.module.ts From Covinex with MIT License | 6 votes |
@NgModule({
declarations: [
AppComponent,
NavbarComponent,
HomeComponent,
AnalysisComponent,
CenterComponent,
TrackerComponent,
SigninComponent,
ContactComponent,
FooterComponent,
GlobeTrackComponent,
InfocardsComponent,
SignupComponent,
RegisterComponent,
ResultComponent,
AssessmentComponent,
ResourcesComponent
],
imports: [
BrowserModule,
AppRoutingModule,
HttpClientModule,
GoogleChartsModule,
ReactiveFormsModule,
BrowserAnimationsModule,
MatFormFieldModule,
MatDialogModule,
MatBadgeModule,
MatInputModule,
FormsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Example #26
Source File: api-key.module.ts From radiopanel with GNU General Public License v3.0 | 6 votes |
@NgModule({
declarations: [
Pages
],
imports: [
CommonModule,
NgxChartsModule,
ApiKeyRoutingModule,
RouterModule,
UiModule,
ReactiveFormsModule,
ToastrModule,
MatDialogModule,
MomentModule,
],
providers: [
Queries,
Stores,
StoreServices
],
})
export class ApiKeyModule { }
Example #27
Source File: angular-material.module.ts From detection-app with MIT License | 6 votes |
materialModules = [ MatToolbarModule, MatButtonModule, MatIconModule, MatDialogModule, MatSnackBarModule, MatProgressSpinnerModule, MatMenuModule, MatTooltipModule, MatSidenavModule, MatListModule, MatFormFieldModule, MatCheckboxModule, BrowserAnimationsModule ]
Example #28
Source File: capture_profile_dialog_module.ts From profiler with Apache License 2.0 | 6 votes |
/** A capture profile dialog module. */
@NgModule({
declarations: [CaptureProfileDialog],
imports: [
BrowserModule,
CommonModule,
FormsModule,
MatButtonModule,
MatDialogModule,
MatExpansionModule,
MatFormFieldModule,
MatInputModule,
MatRadioModule,
MatSelectModule,
MatTooltipModule,
],
exports: [CaptureProfileDialog]
})
export class CaptureProfileDialogModule {
}
Example #29
Source File: app.module.ts From angular-dark-mode with MIT License | 6 votes |
@NgModule({
declarations: [
AppComponent,
SampleDialogComponent
],
imports: [
BrowserModule,
BrowserAnimationsModule,
MatToolbarModule,
MatSlideToggleModule,
ReactiveFormsModule,
MatButtonModule,
MatCardModule,
MatIconModule,
MatDialogModule,
FlexLayoutModule,
MatFormFieldModule,
MatInputModule,
MatCheckboxModule,
MatExpansionModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }