removed unused resizer property

This commit is contained in:
Pavel Laptev 2024-02-28 17:39:24 +01:00 committed by Mattias Granlund
parent 88b3058dd0
commit 5561f055b3
3 changed files with 0 additions and 4 deletions

View File

@ -350,7 +350,6 @@
<Resizer
viewport={rsViewport}
direction="right"
inside={$selectedFiles.length > 0}
minWidth={320}
sticky
defaultLineColor={$selectedFiles.length > 0

View File

@ -116,7 +116,6 @@
<Resizer
viewport={rsViewport}
direction="right"
inside
minWidth={240}
defaultLineColor="var(--clr-theme-container-outline-light)"
on:width={(e) => {

View File

@ -14,7 +14,6 @@
export let hoverLineThickness: number = 2;
// Needed when overflow is hidden
export let inside = false;
export let sticky = false;
// Custom z-index in case of overlapping with other elements
@ -86,7 +85,6 @@
role="slider"
aria-valuenow={viewport?.clientHeight}
class="resizer"
class:inside
class:dragging
class:vertical={orientation == 'vertical'}
class:horizontal={orientation == 'horizontal'}