@angular/forms#FormsModule TypeScript Examples
The following examples show how to use
@angular/forms#FormsModule.
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: dashboard.module.ts From one-platform with MIT License | 6 votes |
@NgModule({
declarations: [
HomeComponent,
PropertyCardComponent,
AnalysisComponent,
TimelineScoreFormaterPipe,
],
providers: [TitleCasePipe],
imports: [
CommonModule,
DashboardRoutingModule,
GraphQLModule,
FormsModule,
HttpClientModule,
SharedModule,
NgxChartsModule,
],
})
export class DashboardModule {}
Example #2
Source File: app.module.ts From 1hop with MIT License | 6 votes |
@NgModule({
declarations: [
AppComponent,
MigrationComponent,
BaseComponent,
NoContentComponent,
ImportComponent,
ManageComponent,
MigrateComponent
],
imports: [
BrowserAnimationsModule,
AppRoutingModule,
NgbAlertModule,
NgbDropdownModule,
FontAwesomeModule,
NgbDropdownModule,
FormsModule,
NgbModule,
HttpClientModule,
LoadingSpinnerModule,
ModalModule.forRoot(),
NgbToastModule,
ServiceWorkerModule.register('ngsw-worker.js', {
enabled: navigator.userAgent.toLowerCase().indexOf('android') === -1 &&
'serviceWorker' in navigator && environment.production
}),
FontAwesomeModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {
}
Example #3
Source File: app.module.ts From 1x.ag with MIT License | 6 votes |
@NgModule({
declarations: [
AppComponent,
BaseComponent,
NoContentComponent,
HowItWorksComponent
],
imports: [
BrowserAnimationsModule,
AppRoutingModule,
FormsModule,
NgbModule,
HttpClientModule,
LoadingSpinnerModule,
ModalModule.forRoot(),
DeviceDetectorModule.forRoot(),
NgbToastModule,
ServiceWorkerModule.register('ngsw-worker.js', {
enabled: navigator.userAgent.toLowerCase().indexOf('android') === -1 &&
'serviceWorker' in navigator && environment.production
}),
FontAwesomeModule,
AngularPageVisibilityModule
],
providers: [
{provide: LocationStrategy, useClass: HashLocationStrategy}
],
bootstrap: [AppComponent]
})
export class AppModule {
}
Example #4
Source File: app.module.ts From gnosis.1inch.exchange with MIT License | 6 votes |
@NgModule({
declarations: [
AppComponent,
SlippageSettingsComponent,
GasSettingsComponent
],
imports: [
BrowserModule,
AppRoutingModule,
HttpClientModule,
BrowserAnimationsModule,
MatButtonModule,
MatSelectModule,
FormsModule,
ReactiveFormsModule,
MatInputModule,
MatFormFieldModule,
MatTooltipModule,
MatIconModule,
MatRadioModule,
NgxWebstorageModule.forRoot(),
MatAutocompleteModule,
NgxMatSelectSearchModule,
MatExpansionModule,
FontAwesomeModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {
}
Example #5
Source File: home.module.ts From Uber-ServeMe-System with MIT License | 6 votes |
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
HomePageRoutingModule
],
declarations: [HomePage]
})
export class HomePageModule {}
Example #6
Source File: app.module.ts From Angular-Computer-Vision-Azure-Cognitive-Services with MIT License | 6 votes |
@NgModule({
declarations: [
AppComponent,
OcrComponent,
NavMenuComponent,
HomeComponent
],
imports: [
BrowserModule,
HttpClientModule,
FormsModule,
RouterModule.forRoot([
{ path: '', component: HomeComponent, pathMatch: 'full' },
{ path: 'computer-vision-ocr', component: OcrComponent },
], { relativeLinkResolution: 'legacy' })
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Example #7
Source File: app.module.ts From transformers-for-lawyers with Apache License 2.0 | 6 votes |
@NgModule({
imports: [
BrowserModule,
BrowserAnimationsModule,
DataViewModule,
PanelModule,
MatGridListModule,
ScrollPanelModule,
DialogModule,
DropdownModule,
InputTextModule,
ButtonModule,
HttpClientModule,
FormsModule,
MatCardModule,
MatNativeDateModule,
TabViewModule,
TabMenuModule,
AccordionModule,
BreadcrumbModule,
CardModule,
AppRoutingModule,
ProgressBarModule
],
declarations: [AppComponent, DocumentViewerComponent,
SearchComponent, ReaderComponent,
TaberComponent, SafeHtmlPipe, MenuComponent, FaqComponent, HomeComponent, AboutComponent, ProgressBarComponent],
bootstrap: [AppComponent],
providers: [DocumentViewService, DocumentViewerComponent]
})
export class AppModule { }
Example #8
Source File: app.module.ts From angular-custom-material-paginator with MIT License | 6 votes |
@NgModule({
declarations: [
AppComponent,
PaginatorDirective,
],
imports: [
BrowserModule,
FormsModule,
AppRoutingModule,
MatFormFieldModule,
MatPaginatorModule,
BrowserAnimationsModule,
HttpClientModule,
MatTableModule
],
providers: [],
bootstrap: [AppComponent],
exports: [PaginatorDirective]
})
export class AppModule { }
Example #9
Source File: app.component.spec.ts From homebridge-nest-cam with GNU General Public License v3.0 | 6 votes |
describe('AppComponent', () => {
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [AppComponent, LoginComponent, ProgressBarComponent],
imports: [FormsModule, ReactiveFormsModule],
}).compileComponents();
});
it('should create the app', () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app).toBeTruthy();
});
it(`should have as title 'homebridge-ui'`, () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app.title).toEqual('homebridge-ui');
});
});
Example #10
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 #11
Source File: app.module.ts From TypeFast with MIT License | 6 votes |
@NgModule({
declarations: [
AppComponent,
TyperComponent,
TimePipe,
PreferencesComponent,
PopperDirective,
IncorrectWordComponent,
AboutComponent,
],
imports: [
BrowserModule,
FormsModule,
HttpClientModule,
MarkdownModule.forRoot({ loader: HttpClient }),
],
providers: [WordService, PreferencesService, ThemeService, LanguageService],
bootstrap: [AppComponent],
})
export class AppModule {
constructor(private themeService: ThemeService) {}
}
Example #12
Source File: app.module.ts From frontend-framework-showdown-2020 with MIT License | 6 votes |
@NgModule({
declarations: [
AppComponent,
ImageSearchComponent
],
imports: [
BrowserModule,
FormsModule,
HttpClientModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Example #13
Source File: tokens-select.module.ts From rubic-app with GNU General Public License v3.0 | 6 votes |
@NgModule({
declarations: [
TokensSelectComponent,
BlockchainsAsideComponent,
TokensSearchBarComponent,
TokensListComponent,
TokensListElementComponent,
CustomTokenComponent,
CustomTokenWarningModalComponent
],
imports: [
CommonModule,
SharedModule,
TuiScrollbarModule,
TuiInputModule,
FormsModule,
TuiTextfieldControllerModule,
TuiSvgModule,
TuiButtonModule,
ScrollingModule,
TuiHintModule,
TuiManualHintModule,
TuiLoaderModule,
InlineSVGModule
],
providers: [TokensSelectService],
entryComponents: [TokensSelectComponent, CustomTokenWarningModalComponent]
})
export class TokensSelectModule {}
Example #14
Source File: shared.module.ts From Angular-ActionStreams with MIT License | 6 votes |
@NgModule({
imports: [
CommonModule
],
declarations: [
StarComponent
],
exports: [
StarComponent,
CommonModule,
FormsModule
]
})
export class SharedModule { }
Example #15
Source File: dynamic-forms.module.ts From ng-devui-admin with MIT License | 6 votes |
@NgModule({
declarations: [
DynamicFormsComponent,
RadioWidget,
TextAreaWidget,
TextInputWidget,
CheckboxWidget,
SelectWidget,
TagsInputWidget,
ToggleWidget
],
imports: [
CommonModule,
FormsModule,
ReactiveFormsModule,
FormModule,
RadioModule,
SelectModule,
TextareaModule,
ButtonModule,
TextInputModule,
CheckBoxModule,
ToggleModule,
TagsInputModule
],
exports: [
DynamicFormsComponent,
RadioWidget,
TextAreaWidget,
TextInputWidget,
CheckboxWidget,
SelectWidget,
TagsInputWidget,
ToggleWidget
]
})
export class DynamicFormsModule {
}
Example #16
Source File: layout.module.ts From angular-electron-admin with Apache License 2.0 | 6 votes |
@NgModule({
declarations: [
LayoutComponent,
HeaderComponent,
NavigationComponent,
NavigationTriggerComponent
],
imports: [
LayoutRouting,
FormsModule,
BsDropdownModule.forRoot(),
ButtonsModule,
CommonModule,
PerfectScrollbarModule
],
providers: [
{
provide: PERFECT_SCROLLBAR_CONFIG,
useValue: DEFAULT_PERFECT_SCROLLBAR_CONFIG
},
NavigationService,
ThemeService
]
})
// @ts-ignore
export class LayoutModule {
}
Example #17
Source File: common-share.module.ts From dbm with Apache License 2.0 | 6 votes |
@NgModule({
imports: [
NgZorroAntdModule,
TranslateModule,
CodemirrorModule,
FormsModule,
CommonModule,
ServiceModule,
ChartModule,
TableModule,
MomentModule,
ReactiveFormsModule,
EllipsisModule
],
declarations: [
DdlQueryComponent,
BasicTableComponent,
LineChartsComponent,
EmptyAntdComponent,
DrividerAntdComponent,
CreateSnippetComponent
],
providers: [
ClipboardComService
],
exports: [
DdlQueryComponent,
BasicTableComponent,
LineChartsComponent,
EmptyAntdComponent,
DrividerAntdComponent,
CreateSnippetComponent
]
})
export class CommonShareModule {
}
Example #18
Source File: dashboard.module.ts From RcloneNg with MIT License | 6 votes |
@NgModule({
declarations: [DashboardComponent],
imports: [
CommonModule,
ResponsiveModule,
DashboardRoutingModule,
NbCardModule,
NbButtonModule,
NbIconModule,
ChartsModule,
NbListModule,
RngModule,
NbTabsetModule,
NbInputModule,
FormsModule,
],
})
export class DashboardModule {}
Example #19
Source File: app.module.ts From Bridge with GNU General Public License v3.0 | 6 votes |
@NgModule({
declarations: [
AppComponent,
ToolbarComponent,
BrowseComponent,
SearchBarComponent,
StatusBarComponent,
ResultTableComponent,
ChartSidebarComponent,
ResultTableRowComponent,
DownloadsModalComponent,
ProgressBarDirective,
CheckboxDirective,
SettingsComponent
],
imports: [
BrowserModule,
AppRoutingModule,
FormsModule
],
bootstrap: [AppComponent]
})
export class AppModule { }
Example #20
Source File: company-stocks.component.spec.ts From ng-conf-2020-workshop with MIT License | 6 votes |
describe('CompanyStocksComponent', () => {
let component: CompanyStocksComponent;
let fixture: ComponentFixture<CompanyStocksComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [CompanyStocksComponent],
imports: [FormsModule, IgxCategoryChartModule]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CompanyStocksComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
Example #21
Source File: app.module.ts From ngx-splide with MIT License | 6 votes |
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
FormsModule,
NgxSplideModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Example #22
Source File: app.module.ts From ngx-colors with MIT License | 6 votes |
@NgModule({
declarations: [
AppComponent,
CustomTriggerExampleComponent,
DocumentViewerComponent,
HideElementsExampleComponent,
CustomPaletteExampleComponent,
ChangeAcceptLabelExampleComponent
],
imports: [
HighlightModule,
BrowserModule,
ReactiveFormsModule,
BrowserAnimationsModule,
AppRoutingModule,
NgxColorsModule,
MatTabsModule,
FormsModule,
HttpClientModule,
MatInputModule,
MatSlideToggleModule,
MatButtonModule
],
providers: [
{
provide: HIGHLIGHT_OPTIONS,
useValue: {
languages: getHighlightLanguages()
}
}
],
bootstrap: [AppComponent]
})
export class AppModule { }
Example #23
Source File: app.module.ts From Collab-Blog with GNU General Public License v3.0 | 6 votes |
@NgModule({
declarations: [
AppComponent,
BlogListComponent,
AddBlogComponent,
NavbarComponent,
WelcomePageComponent,
ViewBlogComponent,
UpdateBlogComponent,
],
imports: [
BrowserModule,
AppRoutingModule,
HttpClientModule,
ReactiveFormsModule,
MatButtonModule,
MatCardModule,
MatInputModule,
MatListModule,
MatToolbarModule,
MatSliderModule,
MatMenuModule,
MatFormFieldModule,
BrowserAnimationsModule,
FormsModule,
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Example #24
Source File: app.module.ts From master-frontend-lemoncode with MIT License | 6 votes |
@NgModule({
declarations: [
AppComponent,
MenuComponent,
UserListComponent,
HighlightDirective
],
imports: [
BrowserModule,
AppRoutingModule,
FormsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Example #25
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 {
}