2023-03-17 01:21:16 +08:00
|
|
|
<script>
|
|
|
|
import SchemaFieldEmail from "./SchemaFieldEmail.svelte";
|
|
|
|
|
|
|
|
export let field;
|
|
|
|
export let key = "";
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<!-- shares the same options with the email field -->
|
2023-05-25 04:18:44 +08:00
|
|
|
<SchemaFieldEmail bind:field {key} on:rename on:remove {...$$restProps} />
|