Skip to content
This repository was archived by the owner on Mar 4, 2023. It is now read-only.

Commit c9a6da4

Browse files
author
eksrvb
committed
more docs
1 parent 0784ef3 commit c9a6da4

File tree

7 files changed

+12
-10
lines changed

7 files changed

+12
-10
lines changed

docs/api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ All options are shown here:
7272
default placeholderDay = false
7373
default year = current year
7474
default month = current month
75-
default monthsBefore = 1
76-
default monthsAfter = 1
75+
default monthsBefore = 0
76+
default monthsAfter = 0
7777
-->
7878
```
7979

docs/index.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,17 @@ If you need an example for your pipeline you can find it in the sidebar under th
3737
> Please use every version above 3.0.0
3838
> All available version are listed at [npmjs](https://www.npmjs.com/package/material-calendar)
3939
40-
## Usage and configuration
41-
42-
go to the [configuration](https://eksrvb.github.io/material-calendar/docs/configuration) section to learn more
4340

4441
## A couple of impressions
4542

4643
### One single panel without displaying calendar week
47-
![example-picture](https://github.com/eksrvb/material-calendar/raw/main/docs/monthly-onem-cdata.png)
44+
![example-picture](https://github.com/eksrvb/material-calendar/raw/bugfix/unification-github-gitlab/docs/pictures/monthly-onem-cdata.png)
4845

4946
### One single panel with displaying calendar week
50-
![example-picture](https://github.com/eksrvb/material-calendar/raw/main/docs/monthly-onem-cdata-kw.png)
47+
![example-picture](https://github.com/eksrvb/material-calendar/raw/bugfix/unification-github-gitlab/docs/pictures/monthly-onem-cdata-kw.png)
48+
49+
### Three panels with displaying calendar week
50+
![example-picture](https://github.com/eksrvb/material-calendar/raw/bugfix/unification-github-gitlab/docs/pictures/monthly-threem-cdata-kw.png)
5151

52+
### A calendar with 12 months (annual-mode) and with displaying calendar week
53+
![example-picture](https://github.com/eksrvb/material-calendar/raw/bugfix/unification-github-gitlab/docs/pictures/annual-cdata-kw.png)

docs/pictures/annual-cdata-kw.png

92 KB
Loading
36.8 KB
Loading

projects/lib-workspace/src/app/app.component.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ export class AppComponent implements OnInit {
1414
latestEvent = ""
1515

1616
monthsAfterBefore = Array(5).fill(0).map((x, i) => i);
17-
monthsBefore = 0;
18-
monthsAfter = 0;
17+
monthsBefore = 1;
18+
monthsAfter = 1;
1919

2020
calendarConfig: CalendarConfig = {
21-
renderMode: 'monthly', // 'annual' | 'monthly'
21+
renderMode: 'annual', // 'annual' | 'monthly'
2222
selectMode: 'click', // 'click' | 'range'
2323
displayYear: true,
2424
firstDayOfWeekMonday: true,

0 commit comments

Comments
 (0)