Update npm dependencies across the project

This commit is contained in:
Keavon Chambers 2024-03-09 17:59:23 -08:00
parent aa9a3e648a
commit 822b25ceb6
7 changed files with 2767 additions and 3326 deletions

View file

@ -35,7 +35,15 @@
</script>
<LayoutRow class="checkbox-input">
<input type="checkbox" id={`checkbox-input-${id}`} {checked} on:change={(_) => dispatch("checked", inputElement?.checked)} {disabled} tabindex={disabled ? -1 : 0} bind:this={inputElement} />
<input
type="checkbox"
id={`checkbox-input-${id}`}
{checked}
on:change={(_) => dispatch("checked", inputElement?.checked || false)}
{disabled}
tabindex={disabled ? -1 : 0}
bind:this={inputElement}
/>
<label class:disabled class:checked for={`checkbox-input-${id}`} on:keydown={(e) => e.key === "Enter" && toggleCheckboxFromLabel(e)} title={tooltip}>
<LayoutRow class="checkbox-box">
<IconLabel icon={displayIcon} />