This commit is contained in:
+88
@@ -0,0 +1,88 @@
|
||||
<script lang="ts">
|
||||
import type { PopperLayerImplProps } from "./types.js";
|
||||
import PopperLayerInner from "./popper-layer-inner.svelte";
|
||||
|
||||
let {
|
||||
popper,
|
||||
open,
|
||||
onEscapeKeydown,
|
||||
escapeKeydownBehavior,
|
||||
preventOverflowTextSelection,
|
||||
id,
|
||||
onPointerDown,
|
||||
onPointerUp,
|
||||
side,
|
||||
sideOffset,
|
||||
align,
|
||||
alignOffset,
|
||||
arrowPadding,
|
||||
avoidCollisions,
|
||||
collisionBoundary,
|
||||
collisionPadding,
|
||||
sticky,
|
||||
hideWhenDetached,
|
||||
updatePositionStrategy,
|
||||
strategy,
|
||||
dir,
|
||||
preventScroll,
|
||||
wrapperId,
|
||||
style,
|
||||
onPlaced,
|
||||
onInteractOutside,
|
||||
onCloseAutoFocus,
|
||||
onOpenAutoFocus,
|
||||
onFocusOutside,
|
||||
interactOutsideBehavior = "close",
|
||||
loop,
|
||||
trapFocus = true,
|
||||
isValidEvent = () => false,
|
||||
customAnchor = null,
|
||||
isStatic = false,
|
||||
ref,
|
||||
shouldRender,
|
||||
...restProps
|
||||
}: PopperLayerImplProps = $props();
|
||||
</script>
|
||||
|
||||
{#if shouldRender}
|
||||
<PopperLayerInner
|
||||
{popper}
|
||||
{onEscapeKeydown}
|
||||
{escapeKeydownBehavior}
|
||||
{preventOverflowTextSelection}
|
||||
{id}
|
||||
{onPointerDown}
|
||||
{onPointerUp}
|
||||
{side}
|
||||
{sideOffset}
|
||||
{align}
|
||||
{alignOffset}
|
||||
{arrowPadding}
|
||||
{avoidCollisions}
|
||||
{collisionBoundary}
|
||||
{collisionPadding}
|
||||
{sticky}
|
||||
{hideWhenDetached}
|
||||
{updatePositionStrategy}
|
||||
{strategy}
|
||||
{dir}
|
||||
{preventScroll}
|
||||
{wrapperId}
|
||||
{style}
|
||||
{onPlaced}
|
||||
{customAnchor}
|
||||
{isStatic}
|
||||
enabled={open}
|
||||
{onInteractOutside}
|
||||
{onCloseAutoFocus}
|
||||
{onOpenAutoFocus}
|
||||
{interactOutsideBehavior}
|
||||
{loop}
|
||||
{trapFocus}
|
||||
{isValidEvent}
|
||||
{onFocusOutside}
|
||||
forceMount={false}
|
||||
{ref}
|
||||
{...restProps}
|
||||
/>
|
||||
{/if}
|
||||
Reference in New Issue
Block a user