svelte-pops
Modal Props
Interactivity
noCloseOnOutsideClick
noCloseOnEscape
noCloseOnHide
noOpenOnAnchorClick
lockBackground
noAnchor

anchor HTMLElement. You can set your own anchor. Be sure to enable noAnchor to increase performances.

Advanced

callbacks Takes optionnal functions show and hide that will run when modal opens and modal closes.

typescript
type callbacks = { 
	show?: (modal: ModalRemote) => unknown; 
	hide?: (modal: ModalRemote) => unknown;
};