Compare commits

...

2 Commits

Author SHA1 Message Date
Elijah Duffy
0a2b48a630 0.0.2 2026-02-02 18:51:31 -08:00
Elijah Duffy
c336b62885 fix imports in component 2026-02-02 18:51:29 -08:00
2 changed files with 6 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "@svelte-toolkit/jitsi", "name": "@svelte-toolkit/jitsi",
"version": "0.0.1", "version": "0.0.2",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://gitea.auvem.com/svelte-toolkit/jitsi.git" "url": "https://gitea.auvem.com/svelte-toolkit/jitsi.git"

View File

@@ -1,6 +1,9 @@
<script lang="ts"> <script lang="ts">
import { onMount } from 'svelte'; import { onMount } from 'svelte';
import { type JitsiMeetExternalAPIOptions, JitsiMeetExternalAPI } from './jitsi-iframe-api.js'; import type {
JitsiMeetExternalAPIOptions,
JitsiMeetExternalAPI
} from '$lib/jitsi-iframe-api.d.ts';
import type { ClassValue } from 'svelte/elements'; import type { ClassValue } from 'svelte/elements';
interface Props { interface Props {
@@ -34,7 +37,7 @@
} }
// Initialize the Jitsi Meet External API // Initialize the Jitsi Meet External API
api = new JitsiMeetExternalAPI(new URL(domain).host, { api = new window.JitsiMeetExternalAPI(new URL(domain).host, {
...options, ...options,
parentNode: container parentNode: container
}); });