@bobfrankston/rmfmail 1.0.675 → 1.0.676
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/client/app.bundle.js +2 -1
- package/client/app.bundle.js.map +2 -2
- package/client/components/calendar-sidebar.js +7 -2
- package/client/components/calendar-sidebar.js.map +1 -1
- package/client/components/calendar-sidebar.ts +7 -2
- package/client/styles/components.css +9 -0
- package/package.json +1 -1
package/client/app.bundle.js
CHANGED
|
@@ -3569,8 +3569,9 @@ function renderEvents(events) {
|
|
|
3569
3569
|
const titleAttr = clickable && link ? 'title="Click to open in Google Calendar"' : "";
|
|
3570
3570
|
const dataLink = clickable ? `data-link="${escapeHtml4(link)}"` : "";
|
|
3571
3571
|
if (e.isHoliday) {
|
|
3572
|
+
const symbol = holidayKind === "us" ? "\u{1F1FA}\u{1F1F8}" : holidayKind === "jewish" ? "\u2721\uFE0F" : "\u2726";
|
|
3572
3573
|
html += `<div class="cal-side-event"${holidayAttr} data-id="${e.id}">
|
|
3573
|
-
<span class="cal-side-event-title cal-side-event-holiday-title">${escapeHtml4(e.title)}</span>
|
|
3574
|
+
<span class="cal-side-event-title cal-side-event-holiday-title"><span class="cal-side-event-holiday-symbol">${symbol}</span> ${escapeHtml4(e.title)}</span>
|
|
3574
3575
|
</div>`;
|
|
3575
3576
|
} else {
|
|
3576
3577
|
html += `<div class="cal-side-event" data-id="${e.id}"${recurAttr} ${dataLink} ${titleAttr}>
|