-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style(eslint): apply
stylistic
rules
See: https://eslint.style/rules See: BIDS-128
- Loading branch information
MarcelBitfly
committed
Aug 7, 2024
1 parent
905ed98
commit 949d525
Showing
312 changed files
with
6,516 additions
and
3,290 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export default { | ||
scrollBehavior (_to: any, _from: any, savedPosition: { left: number, top: number } | null) { | ||
scrollBehavior(_to: any, _from: any, savedPosition: { left: number, top: number } | null) { | ||
return { _to, ...savedPosition } | ||
} | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,28 @@ | ||
<script setup lang="ts"> | ||
interface Props { | ||
variant?: 'default' | 'table' | 'header', | ||
variant?: 'default' | 'table' | 'header' | ||
panelClass?: string | ||
} | ||
defineProps<Props>() | ||
</script> | ||
|
||
<template> | ||
<Dropdown :class="variant" :panel-class="[variant, panelClass]"> | ||
<Dropdown | ||
:class="variant" | ||
:panel-class="[variant, panelClass]" | ||
> | ||
<template #value="slotProps"> | ||
<slot name="value" v-bind="slotProps" /> | ||
<slot | ||
name="value" | ||
v-bind="slotProps" | ||
/> | ||
</template> | ||
<template #option="slotProps"> | ||
<slot name="option" v-bind="slotProps.option" /> | ||
<slot | ||
name="option" | ||
v-bind="slotProps.option" | ||
/> | ||
</template> | ||
</Dropdown> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.