forked from MapComplete/MapComplete
Merge develop
This commit is contained in:
commit
553ee6d5aa
165 changed files with 6745 additions and 1720 deletions
|
|
@ -89,7 +89,9 @@
|
|||
<div
|
||||
class="pointer-events-none absolute top-0 left-0 flex h-full w-full items-center p-8 opacity-50"
|
||||
>
|
||||
<img class="h-full max-h-24" src="./assets/svg/move-arrows.svg" />
|
||||
<slot name="image">
|
||||
<img class="h-full max-h-24" src="./assets/svg/move-arrows.svg" />
|
||||
</slot>
|
||||
</div>
|
||||
|
||||
<DragInvitation hideSignal={mla.location} />
|
||||
|
|
|
|||
11
src/UI/InputElement/Helpers/OpeningHoursInput.svelte
Normal file
11
src/UI/InputElement/Helpers/OpeningHoursInput.svelte
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<script lang="ts">/**
|
||||
* Opens the 'Opening hours input' in another top level window
|
||||
*/
|
||||
import { UIEventSource } from "../../../Logic/UIEventSource"
|
||||
import ToSvelte from "../../Base/ToSvelte.svelte"
|
||||
import OpeningHoursInput from "../../OpeningHours/OpeningHoursInput"
|
||||
|
||||
export let value: UIEventSource<string>
|
||||
</script>
|
||||
|
||||
<ToSvelte construct={new OpeningHoursInput(value)}></ToSvelte>
|
||||
Loading…
Add table
Add a link
Reference in a new issue