merge v0.23.0-rc changes

This commit is contained in:
Gani Georgiev
2024-09-29 19:23:19 +03:00
parent ad92992324
commit 844f18cac3
753 changed files with 85141 additions and 63396 deletions
@@ -0,0 +1,25 @@
<script>
import CommonHelper from "@/utils/CommonHelper";
export let uniqueId;
export let field;
export let icon = true;
</script>
<label for={uniqueId}>
{#if icon}
{#if field.primaryKey}
<i class={CommonHelper.getFieldTypeIcon("primary")} />
{:else}
<i class={CommonHelper.getFieldTypeIcon(field.type)} />
{/if}
{/if}
<span class="txt">{field.name}</span>
{#if field.hidden}
<small class="label label-sm label-danger">Hidden</small>
{/if}
<slot />
</label>