Skip to content

Commit 9549397

Browse files
committed
feat(search-component): update input class for styling consistency and remove
focus outline + release v0.4.61
1 parent b93a036 commit 9549397

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

clients/search-component/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"import": "./dist/vanilla/index.js"
2020
}
2121
},
22-
"version": "0.4.59",
22+
"version": "0.4.61",
2323
"license": "MIT",
2424
"homepage": "https://github.com/devflowinc/trieve/tree/main/clients/search-component",
2525
"scripts": {

clients/search-component/src/TrieveModal/Chat/ChatInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export const ChatInput = ({
6262
)}
6363

6464
<div
65-
className={`input-wrapper tv-relative tv-top-0 tv-z-10 tv-flex tv-flex-col tv-rounded-lg chat${
65+
className={`input-wrapper tv-relative tv-top-0 tv-z-10 tv-flex tv-flex-col tv-rounded-lg trieve-mode-chat${
6666
props.type == "ecommerce" ? "" : " " + props.type
6767
}`}
6868
style={{

clients/search-component/src/TrieveModal/index.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@ body {
5555
}
5656
}
5757

58+
input:focus,
59+
textarea:focus {
60+
outline: none;
61+
border: none;
62+
}
63+
5864
svg {
5965
height: 16px;
6066
width: 16px;

0 commit comments

Comments
 (0)