@dvcol/neo-svelte
Version:
Neomorphic ui library for svelte 5
8 lines (7 loc) • 475 B
TypeScript
import type { UseFloatingOptions } from '@skeletonlabs/floating-ui-svelte';
export type NeoPlacement = UseFloatingOptions['placement'];
export type NeoTooltipPlacement = NeoPlacement | 'auto';
export type NeoDialogPlacement = NeoPlacement | 'center';
export declare const NeoPlacements: Record<string, NeoPlacement>;
export declare const NeoTooltipPlacements: Record<string, NeoTooltipPlacement>;
export declare const NeoDialogPlacements: Record<string, NeoDialogPlacement>;