Add addressbook import to frontend

This commit is contained in:
Lennart
2025-08-23 19:50:34 +02:00
parent 1e90ff3d6c
commit 9050484932
7 changed files with 195 additions and 7 deletions

View File

@@ -1,7 +1,6 @@
import { html, LitElement } from "lit";
import { customElement, property } from "lit/decorators.js";
import { Ref, createRef, ref } from 'lit/directives/ref.js';
import { escapeXml } from ".";
@customElement("import-calendar-form")
export class ImportCalendarForm extends LitElement {
@@ -19,8 +18,6 @@ export class ImportCalendarForm extends LitElement {
principal: string
@property()
cal_id: string = self.crypto.randomUUID()
@property()
timezone_id: string = ''
dialog: Ref<HTMLDialogElement> = createRef()
form: Ref<HTMLFormElement> = createRef()