Hello Manfred.
Thank you for contributing this component. It is a great addition and is a simple alternative to the Vaadin DatePicker.
However I am having trouble getting the css styling to load. I have included v1.3.0 of minicalendar because I am on Vaadin 23.3.32.
When I add the calendar to my layout, it is not styled at all.
Here is my code:
MiniCalendar appointmentDatePicker = new MiniCalendar(); calendarLayout.add(appointmentDatePicker); appointmentDatePicker.setValue(activityItem.getAvailableStartDate()); appointmentDatePicker.addValueChangeListener(event -> { updateTimeslotLayout(event.getValue()); });