You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 19, 2025. It is now read-only.
To enable infinite scroll set `scroll={{enabled:true}}` basically. Infinite scroll feature is affected by `direction`(rendering direction for months) and `months`(for rendered months count) props directly.
136
+
If you prefer, you can overwrite calendar sizes with `calendarWidth`/`calendarHeight` or each month's height/withs with `monthWidth`/`monthHeight`/`longMonthHeight` at `scroll` prop.
137
+
138
+
```js
139
+
// shape of scroll prop
140
+
scroll: {
141
+
enabled:PropTypes.bool,
142
+
monthHeight:PropTypes.number,
143
+
longMonthHeight:PropTypes.number, // some months has 1 more row than others
144
+
monthWidth:PropTypes.number, // just used when direction="horizontal"
0 commit comments