!isDisabled && this.selectDate(day)}"
>
${day.getDate()}
+ ${hasEvents ? html`
+ ${totalEventCount > 3 ? html`
+
${totalEventCount}
+ ` : html`
+
+ ${dayEvents.slice(0, 3).map(event => html`
+
+ `)}
+
+ `}
+ ${dayEvents[0].title ? html`
+
+ ${dayEvents[0].title}
+ ${totalEventCount > 1 ? html` (+${totalEventCount - 1} more)` : ''}
+
+ ` : ''}
+ ` : ''}
`;
})}
@@ -876,6 +996,13 @@ export class DeesInputDatepicker extends DeesInputBase