Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(): deprecate forRoot() from covalent. (closes #306) #389

Merged
merged 26 commits into from
Mar 9, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
95113c0
chore(): deprecate forRoot() in markdown module
Feb 28, 2017
7792315
chore(): deprecate forRoot() in highlight module
Feb 28, 2017
b0363bf
chore(): deprecate forRoot in dynamic forms module
Feb 28, 2017
d5e3b2a
chore(): deprecate forRoot in chips module
Feb 28, 2017
cec16ad
chore(): deprecate forRoot in common module
Feb 28, 2017
9c3195a
chore(): deprecate forRoot() in data table module
Feb 28, 2017
6a4c11a
chore(): deprecate forRoot in dialog module
Feb 28, 2017
d5d4f6c
chore(): deprecate forRoot in expansion panel module
Feb 28, 2017
3eeb0b6
chore(): deprecate forRoot in file module
Feb 28, 2017
f53c701
chore(): deprecate forRoot in json-formatter
Feb 28, 2017
e5e0521
chore(): deprecate forRoot in menu module
Feb 28, 2017
defb776
chore(): deprecate forRoot in notifications module
Feb 28, 2017
4eba86a
chore(): deprecate forRoot in paging module
Feb 28, 2017
8b2a1bd
chore(): deprecate forRoot in search module
Feb 28, 2017
0f74eee
chore(): deprecate forRoot in steps module
Feb 28, 2017
e62f6a0
chore(): deprecate forRoot in layout module
Feb 28, 2017
672d0be
chore(): deprecate forRoot in loading module
Feb 28, 2017
78eb9bf
chore(): deprecate forRoot in media module
Feb 28, 2017
f280950
chore(): deprecate forRoot in core module
Feb 28, 2017
ef0a946
chore(): update docs and remove all forRoot() usage
Feb 28, 2017
7d6f821
Merge branch 'develop' of https://github.com/Teradata/covalent into f…
richavyas Mar 2, 2017
208681a
Merge branch 'develop' into feature/forRoot-removal
emoralesb05 Mar 3, 2017
9cd100c
Merge branch 'develop' of https://github.com/Teradata/covalent into f…
richavyas Mar 3, 2017
86b4a8c
Merge branch 'feature/forRoot-removal' of https://github.com/Teradata…
richavyas Mar 3, 2017
0cb2343
Merge branch 'develop' into feature/forRoot-removal
emoralesb05 Mar 9, 2017
63f81a7
merge develop
Mar 9, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/GETTING_STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ import { CovalentDynamicFormsModule } from '@covalent/dynamic-forms';
// other imports
@NgModule({
imports: [
CovalentCoreModule.forRoot(),
CovalentCoreModule,
// (optional) Additional Covalent Modules imports
CovalentHttpModule.forRoot(),
CovalentHighlightModule.forRoot(),
CovalentMarkdownModule.forRoot(),
CovalentDynamicFormsModule.forRoot(),
CovalentHighlightModule,
CovalentMarkdownModule,
CovalentDynamicFormsModule,
],
...
})
Expand Down
8 changes: 4 additions & 4 deletions src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ import { getSelectedLanguage, createTranslateLoader } from './utilities/translat
BrowserModule,
HttpModule,
JsonpModule,
CovalentCoreModule.forRoot(),
CovalentCoreModule,
CovalentHttpModule.forRoot(),
CovalentHighlightModule.forRoot(),
CovalentMarkdownModule.forRoot(),
CovalentDynamicFormsModule.forRoot(),
CovalentHighlightModule,
CovalentMarkdownModule,
CovalentDynamicFormsModule,
TranslateModule.forRoot({
loader: {
provide: TranslateLoader,
Expand Down
Loading