506f1ed272
Validators (Pushes and Pull Requests) / UI & Storage Validation (push) Failing after 11s
Validators (Pushes and Pull Requests) / Database & Schema Validation (push) Successful in 10s
Validators (Pushes and Pull Requests) / Core Validators & Database Setup (push) Failing after 19s
Validators (Pushes and Pull Requests) / CI Workflow Lint (push) Failing after 9s
Validators (Pushes and Pull Requests) / WBS & Audit Validations (push) Has been skipped
Validators (Pushes and Pull Requests) / .NET Contracts (push) Has been skipped
Validators (Pushes and Pull Requests) / Calibration & Performance (push) Has been skipped
Validators (Pushes and Pull Requests) / Operational Report & Decision Packet (push) Has been skipped
Validators (Pushes and Pull Requests) / Security & Secrets (push) Successful in 9s
Validators (Pushes and Pull Requests) / Notify PR Results (push) Has been skipped
33 lines
720 B
Vue
33 lines
720 B
Vue
<!-- PrimeVue Avatar Transparent Adapter Wrapper: QuantAvatar -->
|
|
<template>
|
|
<Avatar
|
|
v-bind="$attrs"
|
|
:label="label"
|
|
:icon="icon"
|
|
:image="image"
|
|
:shape="shape || 'circle'"
|
|
:size="size || 'normal'"
|
|
class="quant-avatar font-bold text-xs"
|
|
>
|
|
<template v-for="(_, slotName) in $slots" :key="slotName" #[slotName]="slotProps">
|
|
<slot :name="slotName" v-bind="slotProps || {}"></slot>
|
|
</template>
|
|
</Avatar>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Avatar from 'primevue/avatar';
|
|
|
|
defineOptions({
|
|
inheritAttrs: false
|
|
});
|
|
|
|
defineProps<{
|
|
label?: string;
|
|
icon?: string;
|
|
image?: string;
|
|
shape?: 'square' | 'circle';
|
|
size?: 'normal' | 'large' | 'xlarge';
|
|
}>();
|
|
</script>
|