Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release #41

Merged
merged 2 commits into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

### [0.0.18]() - 2024-12-04

### Added
- Agent Icon

### [0.0.17]() - 2024-12-04

### Changed
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@videodb/chat-vue",
"description": "Chat component for Director",
"version": "0.0.17",
"version": "0.0.18",
"author": "VideoDB",
"license": "Apache-2.0",
"private": false,
Expand Down
4 changes: 2 additions & 2 deletions src/components/chat/elements/Sidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
]"
>
<div class="vdb-c-flex vdb-c-items-center vdb-c-gap-8">
<MenuIcon class="vdb-c-mr-8" />
<AgentIcon class="vdb-c-mr-8" />
<span class="vdb-c-font-semibold vdb-c-leading-5"
>Explore Agents</span
>
Expand Down Expand Up @@ -309,7 +309,7 @@ import Button from "../../buttons/Button.vue";
import DeleteIcon from "../../icons/Delete.vue";
import ComposeIcon from "../../icons/Compose.vue";
import ChevronDown from "../../icons/ChevronDown.vue";
import MenuIcon from "../../icons/Menu.vue";
import AgentIcon from "../../icons/Agent.vue";
import ChatIcon from "../../icons/Chat.vue";
import CollectionIcon from "../../icons/Collection.vue";

Expand Down
53 changes: 53 additions & 0 deletions src/components/icons/Agent.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<template>
<svg
width="20"
height="20"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_2117_5081)">
<path
d="M5.99533 8.4445C5.07249 8.4445 4.287 8.11913 3.63885 7.46839C2.9907 6.81765 2.66663 6.03061 2.66663 5.10728C2.66663 4.18394 2.99181 3.3982 3.64218 2.75005C4.29268 2.10191 5.07928 1.77783 6.002 1.77783H10.0046C10.9274 1.77783 11.7129 2.1032 12.3611 2.75394C13.0092 3.40468 13.3333 4.19172 13.3333 5.11505C13.3333 6.03839 13.0081 6.82413 12.3577 7.47228C11.7072 8.12042 10.9206 8.4445 9.99792 8.4445H5.99533ZM5.99996 7.11117H9.99996C10.5555 7.11117 11.0277 6.91672 11.4166 6.52783C11.8055 6.13894 12 5.66672 12 5.11117C12 4.55561 11.8055 4.08339 11.4166 3.6945C11.0277 3.30561 10.5555 3.11117 9.99996 3.11117H5.99996C5.4444 3.11117 4.97218 3.30561 4.58329 3.6945C4.1944 4.08339 3.99996 4.55561 3.99996 5.11117C3.99996 5.66672 4.1944 6.13894 4.58329 6.52783C4.97218 6.91672 5.4444 7.11117 5.99996 7.11117ZM5.99607 5.77783C6.18385 5.77783 6.34255 5.71431 6.47218 5.58728C6.60181 5.46024 6.66663 5.30283 6.66663 5.11505C6.66663 4.92728 6.60311 4.76857 6.47607 4.63894C6.34903 4.50931 6.19163 4.4445 6.00385 4.4445C5.81607 4.4445 5.65737 4.50802 5.52774 4.63505C5.39811 4.76209 5.33329 4.9195 5.33329 5.10728C5.33329 5.29505 5.39681 5.45376 5.52385 5.58339C5.65089 5.71302 5.80829 5.77783 5.99607 5.77783ZM9.99607 5.77783C10.1838 5.77783 10.3426 5.71431 10.4722 5.58728C10.6018 5.46024 10.6666 5.30283 10.6666 5.11505C10.6666 4.92728 10.6031 4.76857 10.4761 4.63894C10.349 4.50931 10.1916 4.4445 10.0038 4.4445C9.81607 4.4445 9.65737 4.50802 9.52774 4.63505C9.39811 4.76209 9.33329 4.9195 9.33329 5.10728C9.33329 5.29505 9.39681 5.45376 9.52385 5.58339C9.65089 5.71302 9.80829 5.77783 9.99607 5.77783Z"
fill="black"
/>
<rect
x="3.33329"
y="10.4445"
width="9.33333"
height="3.11111"
rx="1.11111"
stroke="black"
stroke-width="1.33333"
/>
</g>
<defs>
<clipPath id="clip0_2117_5081">
<rect width="16" height="16" fill="white" />
</clipPath>
</defs>
</svg>
</template>

<script>
export default {
name: "FileUpload",
props: {
className: {
type: String,
default: "",
},
fill: {
type: String,
default: "#FFF5EC",
},
},
};
</script>

<style scoped>
svg path {
color: currentColor;
fill: currentColor;
}
</style>
Loading