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 -->
|
2024-01-22 02:22:56 +08:00
|
|
|
<SchemaFieldEmail bind:field {key} on:rename on:remove on:duplicate {...$$restProps} />
|