Restructure omni services and add Chatwoot research snapshot

This commit is contained in:
Ruslan Bakiev
2026-02-21 11:11:27 +07:00
parent edea7a0034
commit b73babbbf6
7732 changed files with 978203 additions and 32 deletions

View File

@@ -0,0 +1,75 @@
<script>
export default {
props: {
size: {
type: String,
default: 'small',
},
colorScheme: {
type: String,
default: '',
},
},
computed: {
colorSchemeClasses() {
if (this.colorScheme === 'primary') {
return 'before:!border-t-n-brand';
}
if (this.colorScheme === 'warning') {
return 'before:!border-t-n-amber-6';
}
if (this.colorScheme === 'success') {
return 'before:!border-t-n-teal-9';
}
return this.colorScheme;
},
},
};
</script>
<template>
<span class="spinner" :class="`${size} ${colorSchemeClasses}`" />
</template>
<style scoped lang="scss">
@keyframes spinner {
to {
transform: rotate(360deg);
}
}
.spinner {
@apply relative inline-block w-6 h-6 align-middle;
&:before {
@apply border-n-slate-10 border-2 border-solid content-[''] box-border absolute top-[50%] left-[50%] rounded-full border-t-n-strong -ml-2.5 -mt-2.5 w-6 h-6 animate-[spinner_0.9s_linear_infinite];
}
&.message {
@apply p-2.5 top-0 left-0 mx-auto my-0 mt-3 bg-n-background rounded-[2rem];
&:before {
@apply -mt-3 -ml-3;
}
}
&.small {
@apply w-4 h-4;
&:before {
@apply w-4 h-4 -mt-2;
}
}
&.tiny {
@apply w-2.5 h-2.5 py-0 px-1;
&:before {
@apply w-2.5 h-2.5 -mt-1.5;
}
}
}
</style>