Package updates. More updates for LCI.

This commit is contained in:
Scott Idem
2025-06-20 10:59:04 -04:00
parent 94ccbd5f96
commit 93ffb8c3ad
6 changed files with 663 additions and 649 deletions

1063
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -95,7 +95,7 @@
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.36.8",
"@floating-ui/dom": "^1.6.0",
"@lucide/svelte": "^0.517.0",
"@lucide/svelte": "^0.518.0",
"@popperjs/core": "^2.11.0",
"@tailwindcss/vite": "^4.1.10",
"@tiptap/extension-bullet-list": "^2.10.2",
@@ -108,7 +108,7 @@
"dexie": "^4.0.0",
"flowbite-svelte": "^1.7.0",
"html5-qrcode": "^2.3.8",
"lucide-svelte": "^0.517.0",
"lucide-svelte": "^0.518.0",
"marked": "^15.0.7",
"shadcn-svelte": "^1.0.0",
"svelte-persisted-store": "^0.12.0"

View File

@@ -445,7 +445,6 @@ let lq__auth__event_presenter_obj = $derived(liveQuery(async () => {
/>
{#snippet footer()}
<div class="text-center w-full">
<button
@@ -458,7 +457,6 @@ let lq__auth__event_presenter_obj = $derived(liveQuery(async () => {
Close
</button>
</div>
{/snippet}
</Modal>

View File

@@ -141,11 +141,13 @@ async function handle_update__event_presenter({
<strong>{$lq__event_presenter_obj.full_name} ({$lq__event_presenter_obj.email})</strong>
</h2>
<div class="bg-gray-100 p-4 border border-gray-200 rounded-md space-y-4">
<Element_data_store
ds_code="event_presenter_agree_text"
ds_type="html"
class_li="p-2"
/>
</div>
<section class="text-lg border border-red-200 rounded-md bg-red-100 space-y-2">
@@ -153,10 +155,12 @@ async function handle_update__event_presenter({
<p class="text-lg bg-yellow-100 p-2">
<strong>{$lq__event_presenter_obj.full_name} ({$lq__event_presenter_obj.email})</strong> agrees to the following terms and conditions for the presentation:
</p>
<h3 class="h4">Title: "{$lq__event_presenter_obj?.event_presentation_name}"</h3>
<h3 class="h4 text-center">
<span class="text-base">Presentation:</span> "{$lq__event_presenter_obj?.event_presentation_name}"
</h3>
<div>
<h3 class="h4">Opt-Out?</h3>
<div class="w-full">
<h3 class="h4 text-center">Opt-Out?</h3>
<form
class="modal-form {$ae_loc.hub.classes__form}"
on:submit|preventDefault={handle_submit_form}
@@ -257,6 +261,7 @@ async function handle_update__event_presenter({
</div>
</form>
</div>
<div class="text-center w-full">
<h3 class="h4">Agree?</h3>

View File

@@ -155,11 +155,12 @@ async function handle_submit_form(event) {
<p class="text-lg bg-yellow-100 p-2">
<strong>{$lq__event_session_obj.poc_person_full_name} ({$lq__event_session_obj.poc_person_primary_email})</strong> agrees to the following terms and conditions for the presentation:
</p>
<h3 class="h4">Title: "{$lq__event_session_obj?.name}"</h3>
<h3 class="h4 text-center">
<span class="text-base">Session:</span> "{$lq__event_session_obj?.name}"
</h3>
<div>
<h3 class="h4">Opt-Out?</h3>
<div class="w-full">
<h3 class="h4 text-center">Opt-Out?</h3>
<form
class="modal-form {$ae_loc.hub.classes__form}"
on:submit|preventDefault={handle_submit_form}
@@ -260,9 +261,28 @@ async function handle_submit_form(event) {
</div>
</form>
</div>
<div class="text-center w-full">
<h3 class="h4">Agree?</h3>
<!-- Agree (agreement) means this presenter has agreed to the terms and conditions. -->
{#if !$lq__event_session_obj?.poc_agree}
<div>
Not Agreed:
<span class="fas fa-times text-red-500 m-1"></span>
<!-- <span class="fas fa-question text-red-500 m-1"></span> -->
</div>
<div>
Waiting for agreement to the POC Consent and Release and Terms and Conditions before you can move on.
</div>
{:else}
<div>
Agreed:
<span class="fas fa-check text-green-500 m-1"></span>
Marked as agreed
</div>
{/if}
{#if !$lq__event_session_obj?.poc_agree}
<button
disabled={!$ae_loc.administrator_access &&

View File

@@ -566,7 +566,6 @@ let clipboard_success = $state(false);
/>
{#snippet footer()}
<div class="text-center w-full">
<button
@@ -579,7 +578,6 @@ let clipboard_success = $state(false);
Close
</button>
</div>
{/snippet}
</Modal>