Skip to content

Commit

Permalink
initial complete
Browse files Browse the repository at this point in the history
  • Loading branch information
pavvank committed Jan 26, 2019
1 parent 5b0e14d commit e424db2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class AppModule { }
##### **Using with user defined component in carousel.**

- If the data to be passed to carousel is from a user defined component then
*TbCarouselLibModule.forRoot({userDefinedComp : UserDefinedComponent})* method
*TbCarouselLibModule.forRoot([{userDefinedComp : UserDefinedComponent}])* method
is to be used to pass the desired component.
- Also *(user defined component)* has to passed to the :
*entryComponents: [UserDefinedComponent]* in **app.module.ts** .
Expand All @@ -72,7 +72,7 @@ import { UserDefinedComponent } from './user.component';
],
imports: [
BrowserModule,
TbCarouselLibModule.forRoot({userDefinedComp : UserDefinedComponent})
TbCarouselLibModule.forRoot([{userDefinedComp : UserDefinedComponent}])
],
providers: [],
bootstrap: [AppComponent],
Expand Down Expand Up @@ -278,15 +278,15 @@ Possible Value: number

---
##### arrowHeight
Possible Value:
Possible Value: string (size in any unit used in CSS).

---
##### arrowColor
Possible Value:
Possible Value: string (any color in any format acceptable in CSS).

---
##### arrowColorChange
Possible Value:
Possible Value: string (any color in any format acceptable in CSS).


---
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e424db2

Please sign in to comment.