File size: 729 Bytes
1123781
0b5ceff
 
1123781
 
0b5ceff
1123781
0b5ceff
 
 
1123781
 
 
 
 
 
 
 
 
 
 
 
 
 
ff9325e
1123781
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<script lang="ts">
  import type { FieldProps } from '$lib/types';
  import { onMount } from 'svelte';
  import Button from './Button.svelte';
  export let value = 299792458;
  export let params: FieldProps;

  onMount(() => {
    value = Number(params?.default ?? '');
  });
  function randomize() {
    value = Math.floor(Math.random() * Number.MAX_SAFE_INTEGER);
  }
</script>

<div class="grid max-w-md grid-cols-4 items-center gap-3">
  <label class="text-sm font-medium" for="seed">Seed</label>
  <input
    bind:value
    type="number"
    id="seed"
    name="seed"
    class="col-span-2 rounded-md border border-gray-700 p-2 text-right font-light dark:text-black"
  />
  <Button on:click={randomize}>Rand</Button>
</div>