-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from hamzahamidi/aot
Enable AOT R2
- Loading branch information
Showing
98 changed files
with
308 additions
and
332 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
projects/json-schema-form/ng-package.json → ...angular6-json-schema-form/ng-package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...cts/json-schema-form/ng-package.prod.json → ...ar6-json-schema-form/ng-package.prod.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
...hema-form/src/lib/framework-library/bootstrap-3-framework/bootstrap-3-framework.module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { NgModule, ModuleWithProviders } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
|
||
import { WidgetLibraryModule } from '../../widget-library/widget-library.module'; | ||
import { Framework } from '../framework'; | ||
import { Bootstrap3FrameworkComponent } from './bootstrap-3-framework.component'; | ||
import { Bootstrap3Framework } from './bootstrap-3.framework'; | ||
|
||
import { WidgetLibraryService } from '../../widget-library/widget-library.service'; | ||
import { JsonSchemaFormModule } from '../../json-schema-form.module'; | ||
import { JsonSchemaFormService } from '../../json-schema-form.service'; | ||
import { FrameworkLibraryService } from '../framework-library.service'; | ||
|
||
|
||
@NgModule({ | ||
imports: [JsonSchemaFormModule, CommonModule, WidgetLibraryModule], | ||
declarations: [Bootstrap3FrameworkComponent], | ||
exports: [JsonSchemaFormModule, Bootstrap3FrameworkComponent], | ||
providers: [JsonSchemaFormService, FrameworkLibraryService, WidgetLibraryService, | ||
{ provide: Framework, useClass: Bootstrap3Framework, multi: true } | ||
], | ||
entryComponents: [Bootstrap3FrameworkComponent] | ||
}) | ||
export class Bootstrap3FrameworkModule { } |
File renamed without changes.
File renamed without changes.
22 changes: 22 additions & 0 deletions
22
...hema-form/src/lib/framework-library/bootstrap-4-framework/bootstrap-4-framework.module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { NgModule, ModuleWithProviders } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
|
||
import { WidgetLibraryModule } from '../../widget-library/widget-library.module'; | ||
import { Framework } from '../framework'; | ||
import { Bootstrap4FrameworkComponent } from './bootstrap-4-framework.component'; | ||
import { Bootstrap4Framework } from './bootstrap-4.framework'; | ||
import { WidgetLibraryService } from '../../widget-library/widget-library.service'; | ||
import { JsonSchemaFormModule } from '../../json-schema-form.module'; | ||
import { JsonSchemaFormService } from '../../json-schema-form.service'; | ||
import { FrameworkLibraryService } from '../framework-library.service'; | ||
|
||
@NgModule({ | ||
imports: [JsonSchemaFormModule, CommonModule, WidgetLibraryModule], | ||
declarations: [Bootstrap4FrameworkComponent], | ||
exports: [JsonSchemaFormModule, Bootstrap4FrameworkComponent], | ||
providers: [JsonSchemaFormService, FrameworkLibraryService, WidgetLibraryService, | ||
{ provide: Framework, useClass: Bootstrap4Framework, multi: true } | ||
], | ||
entryComponents: [Bootstrap4FrameworkComponent] | ||
}) | ||
export class Bootstrap4FrameworkModule { } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.