svelte-simple-modal icon indicating copy to clipboard operation
svelte-simple-modal copied to clipboard

A simple, small, and content-agnostic modal for Svelte v3

Results 14 svelte-simple-modal issues
Sort by recently updated
recently updated
newest added
trafficstars

## Background I use svelte-simple-modal in a budgeting app. The modal is used to display suggestions for similar transactions when a user performs some edit on one transaction, like "You...

Bumps [svelte](https://github.com/sveltejs/svelte) from 3.48.0 to 3.49.0. Changelog Sourced from svelte's changelog. 3.49.0 Improve performance of string escaping during SSR (#5701) Add ComponentType and ComponentProps convenience types (#6770) Add support for...

dependencies

Hello 👋 When the modal has a long content the bottom is covered by the new iOS Safari chin (now iPhones display the URL at the bottom). There is two...

bug

It's kind of ugly watching the whole content behind moves to the right because scrollbar gets hidden when modal is shown.

improvement

Currently, svelte-simple-modal assume that it's used globally. I.e., it overlays the `body` element. However, sometimes it can be useful to just use it within another (scrollable) container. To support this...

improvement

I am wondering if it's possible to listen to events popup component is emitting. In plain svelte, we'd do something like this: ```svelte handleUpdate(e)} /> ``` Is there any equivalent...

question

When I try to make the `modal` background color change with the theme color, it always fails to update in real-time unless I refresh the page. What should I do?...

help wanted

Bumps [yaml](https://github.com/eemeli/yaml) to 2.2.2 and updates ancestor dependencies [yaml](https://github.com/eemeli/yaml), [husky](https://github.com/typicode/husky) and [lint-staged](https://github.com/okonet/lint-staged). These dependencies need to be updated together. Updates `yaml` from 1.10.2 to 2.2.2 Release notes Sourced from yaml's...

dependencies

My `Login.svelte`Modal starts like this: ```html import { getContext } from 'svelte'; const { close } = getContext('simple-modal'); export let title: string; export let callbackFCN = (value: boolean) => {};...

improvement

I have a Modal with some editable fields in it. I would like to know if it's possible to keep the modal content, so basically just hide it when the...

question