forked from MapComplete/MapComplete
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			304 B
		
	
	
	
		
			Svelte
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			304 B
		
	
	
	
		
			Svelte
		
	
	
	
	
	
| <script lang="ts">
 | |
|   import { UIEventSource } from "../../Logic/UIEventSource.js"
 | |
| 
 | |
|   /**
 | |
|    * For some stupid reason, it is very hard to bind inputs
 | |
|    */
 | |
|   export let value: UIEventSource<number>
 | |
|   let i: number = value.data
 | |
|   $: value.setData(i)
 | |
| </script>
 | |
| 
 | |
| <select bind:value={i}>
 | |
|   <slot />
 | |
| </select>
 |