-
Notifications
You must be signed in to change notification settings - Fork 75
Conversation
scote
commented
Nov 6, 2017
- Add lazy load to demo app page
- Add index.ts to folders.
- Add lazy load to demo app page - Add index.ts to folders.
aaa7939
to
e6d4355
Compare
23bda10
to
9cea620
Compare
9cea620
to
e4bd50a
Compare
appveyor.yml
Outdated
@@ -13,13 +13,12 @@ platform: | |||
|
|||
install: | |||
- ps: Install-Product node $env:nodejs_version | |||
- yarn install --frozen-lockfile --no-progress | |||
- yarn install --frozen-locykfile --no-progress |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
--frozen-lockfile (no y)
CodeSnippetModule, | ||
CommonModule, | ||
MaterializeModule, | ||
MzButtonModule, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove unused MzButtonModule
@@ -1,3 +1,5 @@ | |||
@import "../../_route-animation-host"; | |||
|
|||
.tab-content { | |||
padding: 5px; | |||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add line-return at the end of the file
@@ -1,10 +1,14 @@ | |||
import { Component } from '@angular/core'; | |||
|
|||
import { ROUTE_ANIMATION, ROUTE_ANIMATION_HOST } from '../app.routing.animation'; | |||
import { IPropertyRow } from './../shared/properties-table/properties-table.component'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove ./
in front of ./../shared/properties-table/properties-table.component
MzTextAreaModule, | ||
MzTimepickerModule, | ||
MzValidationModule, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove empty line
src/app/checkbox/checkbox.module.ts
Outdated
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
|
||
import { MzCheckboxContainerComponent } from './checkbox-container/checkbox-container.component'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could use the chaining you added with index.ts
to export MzCheckboxContainerComponent
...
import { MzCheckboxContainerComponent } from './checkbox-container';
src/app/textarea/textarea.module.ts
Outdated
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
|
||
import { MzTextareaContainerComponent } from './textarea-container/textarea-container.component'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import { MzTextareaContainerComponent } from './textarea-container';
src/app/textarea/textarea.module.ts
Outdated
import { NgModule } from '@angular/core'; | ||
|
||
import { MzTextareaContainerComponent } from './textarea-container/textarea-container.component'; | ||
import { MzTextareaPrefixDirective } from './textarea-prefix/textarea-prefix.directive'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import { MzTextareaPrefixDirective } from './textarea-prefix/';
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
|
||
import { MzTimepickerContainerComponent } from './timepicker-container/timepicker-container.component'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import { MzTimepickerContainerComponent } from './timepicker-container';
src/app/toast/toast.module.ts
Outdated
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
|
||
import { MzToastService } from './services/toast.service'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import { MzToastService } from './services';
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
|
||
import { MzErrorMessageComponent } from './error-message/error-message.component'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import { MzErrorMessageComponent } from './error-message';
Still for this to be completed ...
|
- Add import for each component in demo pages - Enhanced the example how to import component in readme - Add as alternative MaterializeModule can still be used in readme
README.md
Outdated
], | ||
declarations: [ HomeComponent ], | ||
}) | ||
export class HomeModule { } | ||
``` | ||
|
||
|
||
### Alternative | ||
As an alternative, you can import `MaterializeModule` to make all component availables. This module is **depracated** and it will be removed in a near futur. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
futur future
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I though i did this correction haha sorry
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lol no problem ;) This is starting to looking good ... should be all set for merge.