I think pretty much all references to v1 and v2 have been removed. All files have been renamed from _v3 to just the function/var name with out the appended version. Assume no _vX is the current version.

This commit is contained in:
Scott Idem
2026-03-24 11:32:06 -04:00
parent 512e5ef87c
commit 94849137f0
7 changed files with 99 additions and 232 deletions

View File

@@ -387,12 +387,12 @@
// --- Focus management: focus the input when its accordion opens ---
// rAF gives the CSS accordion one repaint tick before focus() is called,
// avoiding jumping to an invisible (height: 0) element.
let input_ref_name: HTMLInputElement | undefined;
let input_ref_title: HTMLInputElement | undefined;
let input_ref_affiliations: HTMLTextAreaElement | undefined;
let input_ref_location: HTMLInputElement | undefined;
let input_ref_pronouns: HTMLInputElement | undefined;
let input_ref_allow_tracking: HTMLInputElement | undefined;
let input_ref_name: HTMLInputElement | undefined = $state();
let input_ref_title: HTMLInputElement | undefined = $state();
let input_ref_affiliations: HTMLTextAreaElement | undefined = $state();
let input_ref_location: HTMLInputElement | undefined = $state();
let input_ref_pronouns: HTMLInputElement | undefined = $state();
let input_ref_allow_tracking: HTMLInputElement | undefined = $state();
let select_ref_badge_type: HTMLSelectElement | undefined = $state();
$effect(() => {