diff --git a/src/components/FormDialog.vue b/src/components/FormDialog.vue index 97eefb6e..4a86e226 100644 --- a/src/components/FormDialog.vue +++ b/src/components/FormDialog.vue @@ -10,6 +10,7 @@ defineProps<{ addressSeparator?: boolean; branchStatus?: string; badgeLabel?: string; + customerLabel?: string; badgeClass?: string; noFooter?: boolean; noAppBox?: boolean; @@ -40,7 +41,20 @@ const zipCode = defineModel('zipCode', { default: '' });
{{ title }} - {{ branchStatus ? `(${branchStatus})` : '' }} + + : + + {{ $t(customerLabel) }} + + + + + {{ branchStatus }} + ('zipCode', { default: '' }); background-color: var(--surface-2); text-wrap: nowrap; } + +.text-customer { + --_var-filter: grayscale(30%); + + filter: var(--_var-filter); + &.dark-text { + --_var-filter: grayscale(0%); + } +}