Applies ruff format, ruff check --fix and prettier, so CI can gate on all three. The surviving unused imports were all re-exports in __init__.py, now covered by a per-file ignore; the pdf.js viewer and the generated openapi types join the vendored code that eslint and prettier already skip.
8 lines
225 B
Svelte
8 lines
225 B
Svelte
<script lang="ts">
|
|
import { Popover as PopoverPrimitive } from 'bits-ui';
|
|
|
|
let { open = $bindable(false), ...restProps }: PopoverPrimitive.RootProps = $props();
|
|
</script>
|
|
|
|
<PopoverPrimitive.Root bind:open {...restProps} />
|