-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #645 from writer/dev
chore: Merge for release
- Loading branch information
Showing
74 changed files
with
3,027 additions
and
1,535 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<template> | ||
<div class="BuilderAsyncLoader"> | ||
<LoadingSymbol /> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import LoadingSymbol from "@/renderer/LoadingSymbol.vue"; | ||
</script> | ||
|
||
<style scoped> | ||
.BuilderAsyncLoader { | ||
width: 100%; | ||
height: 100%; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
src/ui/src/components/core/content/CoreChatBot/CoreChatbotAvatar.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<template> | ||
<div class="CoreChatbotAvatar">{{ initials }}</div> | ||
</template> | ||
|
||
<script lang="ts" setup> | ||
defineProps({ | ||
initials: { type: String, required: true }, | ||
}); | ||
</script> | ||
|
||
<style scoped> | ||
.CoreChatbotAvatar { | ||
border-radius: 50%; | ||
background: var(--avatarBackgroundColor); | ||
color: var(--avatarTextColor); | ||
margin-top: 6px; | ||
height: 32px; | ||
width: 32px; | ||
flex: 0 0 32px; | ||
display: flex; | ||
font-weight: 500; | ||
font-size: 0.75rem; | ||
align-items: center; | ||
justify-content: center; | ||
overflow: hidden; | ||
text-transform: uppercase; | ||
} | ||
</style> |
Oops, something went wrong.