@ilamy/calendar 1.5.1 → 1.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +7 -0
- package/dist/index.js +6 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -469,6 +469,13 @@ interface IlamyCalendarProps {
|
|
|
469
469
|
*/
|
|
470
470
|
eventSpacing?: number;
|
|
471
471
|
/**
|
|
472
|
+
* Height of event bars in horizontal grid views (month view, resource month, resource week horizontal) in pixels.
|
|
473
|
+
* Increase this to show more content per event (e.g., title + time on separate lines).
|
|
474
|
+
* Does not affect day/week views, which use percentage-based heights that scale with event duration.
|
|
475
|
+
* Defaults to 24 pixels if not specified.
|
|
476
|
+
*/
|
|
477
|
+
eventHeight?: number;
|
|
478
|
+
/**
|
|
472
479
|
* Whether to stick the view header to the top of the calendar.
|
|
473
480
|
* Useful for keeping the header visible while scrolling.
|
|
474
481
|
*/
|