mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-08-04 13:30:48 +00:00
Update npm dependencies across the project
This commit is contained in:
parent
aa9a3e648a
commit
822b25ceb6
7 changed files with 2767 additions and 3326 deletions
|
@ -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} />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue