import { createShadowRoot } from '../../../../node_modules/@browserkids/dom/index.js'; export default class CalendarShowPreferences extends HTMLElement { constructor() { super(); createShadowRoot(this, ` `); const { app } = window; app.on('update-downloaded', this.onUpdateDownloaded.bind(this)); } onUpdateDownloaded() { this.classList.add('update-downloaded'); } }