Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ron2015schmitt authored Feb 3, 2022
1 parent d33a9d7 commit 8a65252
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ A more extensive demonstration of usage can be found at repo https://github.com/

# Documentation

## MatTuiCalendar
## ngx-mat-tui-calendar


Selector: `ngx-mat-tui-calendar`
Expand All @@ -108,6 +108,26 @@ Selector: `ngx-mat-tui-calendar`
| @Output()
userDeletedSchedule: EventEmitter<ISchedule> | Event emitter that emits when the user deletes a "schedule" (ie calendar task). |

### Options

```typescript
export interface CalendarOptions {
ioptions: IOptions, // IOptions is defined in the tui-calendar package
darkMode: boolean, // not yet implemented. default is false
themeClass?: string,
buttons: { // this sets visibility of buttons. default is true
previous?: boolean,
next?: boolean,
today?: boolean,
longPrevious?: boolean,
longNext?: boolean,
month?: boolean,
week?: boolean,
day?: boolean,
};
}
```


# Development

Expand Down

0 comments on commit 8a65252

Please sign in to comment.