beem-component 1.0.8 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/dist/assets/css/sidebar.css +58 -0
  2. package/dist/components/Buttons/buttonIconsOnly.js +1 -1
  3. package/dist/components/Buttons/buttons.js +1 -1
  4. package/dist/components/Cards/cards.js +1 -1
  5. package/dist/components/ChatBody/chatBody.js +6 -4
  6. package/dist/components/ChatHeader/chatHeader.js +4 -3
  7. package/dist/components/Chats/chat.js +2 -2
  8. package/dist/components/Chats/chatInput.js +1 -1
  9. package/dist/components/InfoTab/infoTab.js +4 -3
  10. package/dist/components/Lists/listBox.js +1 -1
  11. package/dist/components/Tags/tags.js +116 -0
  12. package/dist/components/Tags/tags.stories.js +62 -0
  13. package/dist/components/dropdown.js +1 -1
  14. package/dist/components/dropdownItems.js +1 -1
  15. package/dist/components/index.js +79 -1
  16. package/dist/components/input.js +1 -3
  17. package/dist/components/search.js +1 -1
  18. package/dist/components/tags.js +3 -3
  19. package/package.json +1 -1
  20. package/src/App.js +25 -81
  21. package/src/Chat.js +120 -0
  22. package/src/ChatHeader.js +19 -0
  23. package/src/CustomerInfo.js +46 -0
  24. package/src/SideBar.js +81 -0
  25. package/src/lib/assets/css/sidebar.css +58 -0
  26. package/src/lib/components/Buttons/buttonIconsOnly.js +1 -1
  27. package/src/lib/components/Buttons/buttons.js +1 -1
  28. package/src/lib/components/Cards/cards.js +1 -1
  29. package/src/lib/components/ChatBody/chatBody.js +5 -2
  30. package/src/lib/components/ChatBody/chatBody.stories.js +27 -27
  31. package/src/lib/components/ChatHeader/chatHeader.js +2 -2
  32. package/src/lib/components/Chats/chat.js +2 -2
  33. package/src/lib/components/Chats/chatInput.js +1 -1
  34. package/src/lib/components/InfoTab/infoTab.js +2 -2
  35. package/src/lib/components/Lists/listBox.js +1 -1
  36. package/src/lib/components/Tags/tags.js +109 -0
  37. package/src/lib/components/Tags/tags.stories.js +37 -0
  38. package/src/lib/components/dropdown.js +1 -1
  39. package/src/lib/components/dropdownItems.js +1 -1
  40. package/src/lib/components/index.js +33 -2
  41. package/src/lib/components/input.js +1 -2
  42. package/src/lib/components/search.js +1 -1
  43. package/src/lib/components/tags.js +4 -4
  44. package/storybook-static/main.3c8d8027.iframe.bundle.js +1 -1
package/src/App.js CHANGED
@@ -1,94 +1,38 @@
1
- import React, { useState } from "react";
1
+ import React from "react";
2
2
  import "../src/main.scss";
3
- import { BmAvatar, BmInput, BmTab, MainWrapper } from "./lib/components";
3
+ import { MainWrapper } from "./lib/components";
4
4
  import { GlobalStyle } from "./lib/components/globalStyles";
5
- import { BmSideBar } from "./lib/components/sidebar";
6
5
  import "./lib/assets/css/sidebar.css";
7
- import BmChat from "./lib/components/ChatBody/chatBody";
8
- import { DoneAll, Home, MoreVert, Person, Phone } from "@material-ui/icons";
9
- import { BmIcons } from "./lib/components/iconStyles";
10
- import EmojiEmotionsIcon from "@mui/icons-material/EmojiEmotions";
11
- import AttachFileIcon from "@mui/icons-material/AttachFile";
12
- import QuickreplyIcon from "@mui/icons-material/Quickreply";
13
- import SendIcon from "@mui/icons-material/Send";
14
- import BmInfoTab from "./lib/components/InfoTab/infoTab";
15
- import { BmButton } from "./lib/components/Buttons/buttons";
16
- import {
17
- BmCustomizedDropdown,
18
- BmDropDownMenu,
19
- BmDropDownItem,
20
- BmButtonDropdownItem,
21
- } from "./lib/components/dropdownItems";
22
-
23
- import { BmButtonDropDown } from "./lib/components/dropdownButton";
24
- import { BmListBox } from "./lib/components/Lists/listBox";
25
- import { BmRowLabel } from "./lib/components/Lists/rowLabels";
6
+ import SideBar from "./SideBar";
7
+ import ChatHeader from "./ChatHeader";
8
+ import Chat from "./Chat";
9
+ import CustomerInfo from "./CustomerInfo";
10
+ import { BmTag } from "./lib/components/Tags/tags";
11
+ import { Home } from "@material-ui/icons";
26
12
 
27
13
  export const App = () => {
28
- const [dropDownItem, setDropdownItem] = useState(false);
29
-
30
14
  return (
31
15
  <>
32
16
  <GlobalStyle />
33
17
  <MainWrapper>
34
- <BmSideBar>
35
- <div className="main-sidebar-tabs">
36
- <BmTab state="active" className="sidebar-tabs">
37
- <h3>Tabs</h3>
38
- </BmTab>
39
- <BmTab state="inactive" className="sidebar-tabs">
40
- <h3>Tabs</h3>
41
- </BmTab>
42
- </div>
43
- </BmSideBar>
18
+ <BmTag leadingIcon={<Home/>} trailingIcon={<Home/>}><p>Hello</p></BmTag>
44
19
 
45
- <BmChat>
46
- <BmChat.Body>
47
- <BmChat.Details
48
- state="inbound"
49
- session="bot"
50
- displayTime={<p>12:00pm</p>}
51
- status="sent"
52
- >
53
- <p>Inbound</p>
54
- </BmChat.Details>
55
- <BmChat.Details
56
- state="outbound"
57
- session="live"
58
- displayTime={<p>10:00am</p>}
59
- status="failed"
60
- >
61
- <p>Outbound</p>
62
- </BmChat.Details>
63
- </BmChat.Body>
64
- <BmChat.Footer>
65
- <BmIcons icon={<EmojiEmotionsIcon />} size="xlarge" />
66
- <BmIcons icon={<AttachFileIcon />} size="xlarge" />
67
- <BmIcons icon={<QuickreplyIcon />} size="xlarge" />
68
- <BmInput placeholder="Enter Message" />
69
- <BmIcons icon={<SendIcon />} size="xlarge" />
70
- </BmChat.Footer>
71
- </BmChat>
72
- {/* <BmCustomizedDropdown> */}
73
- <BmButton>Create Ticket</BmButton>
74
- <BmButtonDropDown
75
- size="medium"
76
- onClick={() => {
77
- setDropdownItem(!dropDownItem);
78
- }}
79
- variant="primary"
80
- >
81
- Session
82
- </BmButtonDropDown>
83
- <BmListBox isOpen={dropDownItem}>
84
- <BmRowLabel trailingIcon={<Person />} size="large">
85
- <h4>Row Label</h4>
86
- </BmRowLabel>
87
- <BmRowLabel size="large">
88
- <h4>Row Label</h4>
89
- </BmRowLabel>
90
- </BmListBox>
91
- {/* </BmCustomizedDropdown> */}
20
+ <div className="main-chat-container">
21
+ <div className="sidebar">
22
+ <SideBar />
23
+ </div>
24
+ <div className="chat">
25
+ <ChatHeader />
26
+ <div className="chat-menu">
27
+ <div className="chat-messages">
28
+ <Chat />
29
+ </div>
30
+ <div className="chat-contact-info">
31
+ <CustomerInfo />
32
+ </div>
33
+ </div>
34
+ </div>
35
+ </div>
92
36
  </MainWrapper>
93
37
  </>
94
38
  );
package/src/Chat.js ADDED
@@ -0,0 +1,120 @@
1
+ import React from 'react';
2
+ import { AttachFile } from '@material-ui/icons';
3
+ import EmojiEmotionsIcon from '@material-ui/icons/EmojiEmotions';
4
+ import QuickreplyIcon from '@mui/icons-material/Quickreply';
5
+ import SendIcon from '@mui/icons-material/Send';
6
+ import { BmChat, BmIcons, BmInput } from './lib/components';
7
+
8
+ const Chat = () => {
9
+ return (
10
+ <BmChat>
11
+ <BmChat.Body style={{ flex: 1 }}>
12
+ <BmChat.Details
13
+ state="inbound"
14
+ session="bot"
15
+ displayTime={<p>12:00pm</p>}
16
+ status="sent"
17
+ >
18
+ <p>Inbound</p>
19
+ </BmChat.Details>
20
+ <BmChat.Details
21
+ state="outbound"
22
+ session="live"
23
+ displayTime={<p>10:00am</p>}
24
+ status="failed"
25
+ >
26
+ <p>Outbound</p>
27
+ </BmChat.Details>
28
+ <BmChat.Details
29
+ state="outbound"
30
+ session="live"
31
+ displayTime={<p>10:00am</p>}
32
+ status="failed"
33
+ >
34
+ <p>Outbound</p>
35
+ </BmChat.Details>
36
+ <BmChat.Details
37
+ state="outbound"
38
+ session="live"
39
+ displayTime={<p>10:00am</p>}
40
+ status="failed"
41
+ >
42
+ <p>Outbound</p>
43
+ </BmChat.Details>
44
+ <BmChat.Details
45
+ state="outbound"
46
+ session="live"
47
+ displayTime={<p>10:00am</p>}
48
+ status="failed"
49
+ >
50
+ <p>Outbound</p>
51
+ </BmChat.Details>{' '}
52
+ <BmChat.Details
53
+ state="outbound"
54
+ session="live"
55
+ displayTime={<p>10:00am</p>}
56
+ status="failed"
57
+ >
58
+ <p>Outbound</p>
59
+ </BmChat.Details>{' '}
60
+ <BmChat.Details
61
+ state="outbound"
62
+ session="live"
63
+ displayTime={<p>10:00am</p>}
64
+ status="failed"
65
+ >
66
+ <p>Outbound</p>
67
+ </BmChat.Details>{' '}
68
+ <BmChat.Details
69
+ state="outbound"
70
+ session="live"
71
+ displayTime={<p>10:00am</p>}
72
+ status="failed"
73
+ >
74
+ <p>Outbound</p>
75
+ </BmChat.Details>{' '}
76
+ <BmChat.Details
77
+ state="outbound"
78
+ session="live"
79
+ displayTime={<p>10:00am</p>}
80
+ status="failed"
81
+ >
82
+ <p>Outbound</p>
83
+ </BmChat.Details>{' '}
84
+ <BmChat.Details
85
+ state="outbound"
86
+ session="live"
87
+ displayTime={<p>10:00am</p>}
88
+ status="failed"
89
+ >
90
+ <p>Outbound</p>
91
+ </BmChat.Details>{' '}
92
+ <BmChat.Details
93
+ state="outbound"
94
+ session="live"
95
+ displayTime={<p>10:00am</p>}
96
+ status="failed"
97
+ >
98
+ <p>Outbound</p>
99
+ </BmChat.Details>{' '}
100
+ <BmChat.Details
101
+ state="outbound"
102
+ session="live"
103
+ displayTime={<p>10:00am</p>}
104
+ status="failed"
105
+ >
106
+ <p>Outbound</p>
107
+ </BmChat.Details>
108
+ </BmChat.Body>
109
+ <BmChat.Footer>
110
+ <BmIcons icon={<EmojiEmotionsIcon />} size="xlarge" />
111
+ <BmIcons icon={<AttachFile />} size="xlarge" />
112
+ <BmIcons icon={<QuickreplyIcon />} size="xlarge" />
113
+ <BmInput placeholder="Enter Message" />
114
+ <BmIcons icon={<SendIcon />} size="xlarge" />
115
+ </BmChat.Footer>
116
+ </BmChat>
117
+ );
118
+ };
119
+
120
+ export default Chat;
@@ -0,0 +1,19 @@
1
+ import React from "react";
2
+ import { BmChatHeader, BmButton } from "../src/lib/components/";
3
+ import '../src/lib/assets/css/sidebar.css';
4
+
5
+ export const ChatHeader = () => {
6
+ return (
7
+ <>
8
+ <div className="chat-header">
9
+ <BmChatHeader>
10
+ <h2>Contact Name</h2>
11
+ <p>Last seen: 00:00</p>
12
+ <BmButton size="medium">End Session</BmButton>
13
+ </BmChatHeader>
14
+ </div>
15
+ </>
16
+ );
17
+ };
18
+
19
+ export default ChatHeader;
@@ -0,0 +1,46 @@
1
+ /* eslint-disable react/prop-types */
2
+ import React from 'react';
3
+ import { BmBtnIcon, BmInfoTab, BmIcons } from '../src/lib/components/';
4
+ import CallIcon from '@material-ui/icons/Call';
5
+ import EmailIcon from '@material-ui/icons/Email';
6
+ import NoteAddIcon from '@material-ui/icons/NoteAdd';
7
+ import AddIcon from '@material-ui/icons/Add';
8
+ import PriorityHighIcon from '@material-ui/icons/PriorityHigh';
9
+ import { MoreVert } from '@material-ui/icons';
10
+
11
+ const CustomerInfo = () => {
12
+ return (
13
+ <>
14
+ <BmInfoTab>
15
+ <BmInfoTab.Content>
16
+ <h3>Contact Name</h3>
17
+ <BmIcons icon={<MoreVert />} />
18
+ </BmInfoTab.Content>
19
+ <BmInfoTab.Content>
20
+ <BmInfoTab.Tabs>
21
+ <BmBtnIcon icon={<CallIcon />} />
22
+ <h4>Call</h4>
23
+ </BmInfoTab.Tabs>
24
+ <BmInfoTab.Tabs>
25
+ <BmBtnIcon icon={<EmailIcon />} />
26
+ <h4>Email</h4>
27
+ </BmInfoTab.Tabs>
28
+ <BmInfoTab.Tabs>
29
+ <BmBtnIcon icon={<NoteAddIcon />} />
30
+ <h4>Note</h4>
31
+ </BmInfoTab.Tabs>
32
+ <BmInfoTab.Tabs>
33
+ <BmBtnIcon icon={<AddIcon />} />
34
+ <h4>Log</h4>
35
+ </BmInfoTab.Tabs>
36
+ <BmInfoTab.Tabs>
37
+ <BmBtnIcon icon={<PriorityHighIcon />} variant="enabled" />
38
+ <h4>Priority</h4>
39
+ </BmInfoTab.Tabs>
40
+ </BmInfoTab.Content>
41
+ </BmInfoTab>
42
+ </>
43
+ );
44
+ };
45
+
46
+ export default CustomerInfo;
package/src/SideBar.js ADDED
@@ -0,0 +1,81 @@
1
+ import React from "react";
2
+ import { BmTab } from "./lib/components/Tabs/tabs";
3
+ import { BmTag } from "./lib/components/Tags/tags";
4
+ import ForumIcon from "@material-ui/icons/Forum";
5
+ import { BmContactCard, BmAvatar, BmCounter } from "./lib/components";
6
+
7
+ const SideBar = () => {
8
+ return (
9
+ <>
10
+ <div className="main-sidebar-tabs">
11
+ <BmTab
12
+ state="active"
13
+ className="sidebar-tabs"
14
+ leadingIcon={<ForumIcon />}
15
+ >
16
+ <h3>Chats</h3>
17
+ </BmTab>
18
+ </div>
19
+ <div className="sidebar-contacts">
20
+ <BmContactCard>
21
+ <BmContactCard.Profile>
22
+ <BmAvatar user="employee" size="small" color="{$BmPrimaryBlack}" />
23
+ </BmContactCard.Profile>
24
+ <BmContactCard.Details>
25
+ <BmContactCard.SubDetails>
26
+ <h3>Contact Names</h3>
27
+ </BmContactCard.SubDetails>
28
+ <BmContactCard.SubDetails>
29
+ <p>Message text</p>
30
+ <BmCounter>10</BmCounter>
31
+ </BmContactCard.SubDetails>
32
+ <BmContactCard.SubDetails>
33
+ <BmTag variant="success">
34
+ <p>label</p>
35
+ </BmTag>
36
+ <p>10:00 am</p>
37
+ </BmContactCard.SubDetails>
38
+ </BmContactCard.Details>
39
+ </BmContactCard>
40
+ <BmContactCard>
41
+ <BmContactCard.Profile>
42
+ <BmAvatar user="employee" size="small" color="{$BmPrimaryBlack}" />
43
+ </BmContactCard.Profile>
44
+ <BmContactCard.Details>
45
+ <BmContactCard.SubDetails>
46
+ <h3>Contact Names</h3>
47
+ </BmContactCard.SubDetails>
48
+ <BmContactCard.SubDetails>
49
+ <p>Message text</p>
50
+ <BmCounter>10</BmCounter>
51
+ </BmContactCard.SubDetails>
52
+ <BmContactCard.SubDetails>
53
+ <BmTag variant="success">label</BmTag>
54
+ <p>10:00 am</p>
55
+ </BmContactCard.SubDetails>
56
+ </BmContactCard.Details>
57
+ </BmContactCard>
58
+ <BmContactCard>
59
+ <BmContactCard.Profile>
60
+ <BmAvatar user="employee" size="small" color="{$BmPrimaryBlack}" />
61
+ </BmContactCard.Profile>
62
+ <BmContactCard.Details>
63
+ <BmContactCard.SubDetails>
64
+ <h3>Contact Names</h3>
65
+ </BmContactCard.SubDetails>
66
+ <BmContactCard.SubDetails>
67
+ <p>Message text</p>
68
+ <BmCounter>10</BmCounter>
69
+ </BmContactCard.SubDetails>
70
+ <BmContactCard.SubDetails>
71
+ {/* <BmTag variant="success">label</BmTag> */}
72
+ <p>10:00 am</p>
73
+ </BmContactCard.SubDetails>
74
+ </BmContactCard.Details>
75
+ </BmContactCard>
76
+ </div>
77
+ </>
78
+ );
79
+ };
80
+
81
+ export default SideBar;
@@ -6,6 +6,11 @@
6
6
  overflow: auto;
7
7
  max-width: 20%;
8
8
  width: 20%;
9
+ border: 1px solid #E2E2E2;
10
+ }
11
+
12
+ .sidebar>* {
13
+ margin-bottom: 1.5rem;
9
14
  }
10
15
 
11
16
  .main-sidebar-tabs {
@@ -19,4 +24,57 @@
19
24
  .main-sidebar-tabs>.sidebar-tabs {
20
25
  padding: 1.714rem;
21
26
  flex: 1;
27
+ }
28
+
29
+ .sidebar-contacts {
30
+ display: flex;
31
+ flex-direction: column;
32
+ margin: 0rem;
33
+ overflow: auto;
34
+ }
35
+
36
+ .main-chat-container {
37
+ display: flex;
38
+ flex-direction: row;
39
+ align-items: center;
40
+ height: calc(100vh - 180px);
41
+ max-width: 100%;
42
+ width: 100%;
43
+ background: white;
44
+ }
45
+
46
+ .chat {
47
+ display: flex;
48
+ flex-direction: column;
49
+ max-height: 100%;
50
+ height: 100%;
51
+ flex-grow: 1;
52
+ max-height: 100%;
53
+ height: 100%;
54
+ }
55
+
56
+ .chat-menu {
57
+ display: flex;
58
+ flex-direction: row;
59
+ height: 0%;
60
+ flex-grow: 1;
61
+ width: 100%;
62
+ }
63
+
64
+ .chat-messages {
65
+ display: flex;
66
+ flex-direction: column;
67
+ height: 100%;
68
+ overflow: auto;
69
+ width: 80%;
70
+ border: 1px solid #E2E2E2;
71
+ }
72
+
73
+ .chat-contact-info {
74
+ display: flex;
75
+ flex-direction: column;
76
+ height: 100%;
77
+ overflow: auto;
78
+ width: 25%;
79
+ border: 1px solid #E2E2E2;
22
80
  }
@@ -50,7 +50,7 @@ const BeemButtonIcon = styled.button`
50
50
  }
51
51
  }};
52
52
  box-sizing: border-box;
53
- border-radius: 0.21875rem;
53
+ border-radius: 0.25rem;
54
54
  padding: 0rem;
55
55
  `;
56
56
 
@@ -47,7 +47,7 @@ const BeemButton = styled.button`
47
47
  flex-direction: row;
48
48
  justify-content: center;
49
49
  align-items: center;
50
- border-radius: 0.21875rem;
50
+ border-radius: 0.25rem;
51
51
  padding: ${({ size }) => {
52
52
  if (size === "large") return "0.625rem 1.5rem";
53
53
  if (size === "medium") return "0.4375rem 1rem";
@@ -6,7 +6,7 @@ const BmCard = styled.div`
6
6
  flex-direction: column;
7
7
  background: ${BmPrimaryWhite};
8
8
  border: 0.071rem solid ${BmGrey400};
9
- border-radius: 0.21875rem;
9
+ border-radius: 0.25rem;
10
10
  `;
11
11
 
12
12
  BmCard.Header = styled.div`
@@ -5,7 +5,6 @@ import BmAvatar from "../Avatars/avatars";
5
5
  import { BmIcons } from "../iconStyles";
6
6
  import {
7
7
  BmGrey400,
8
- BmGrey50,
9
8
  BmPrimaryWhite,
10
9
  BmPrimaryBlue,
11
10
  BmPrimaryBlack,
@@ -15,6 +14,7 @@ import {
15
14
  const BmChat = styled.div`
16
15
  display: flex;
17
16
  flex-direction: column;
17
+ height: 100%;
18
18
  ${"" /* border: 0.071rem solid ${BmGrey400}; */}
19
19
  `;
20
20
 
@@ -22,6 +22,8 @@ BmChat.Body = styled.div`
22
22
  display: flex;
23
23
  flex-direction: column;
24
24
  padding: 0rem 1.5rem;
25
+ flex-grow: 1;
26
+ overflow: auto;
25
27
  `;
26
28
 
27
29
  const Details = styled.div`
@@ -42,6 +44,7 @@ const Details = styled.div`
42
44
  overflow-wrap: break-word !important;
43
45
  word-wrap: break-word !important;
44
46
  margin: 0rem;
47
+ flex-grow: 1;
45
48
  `;
46
49
 
47
50
  const MessageDetails = styled.div`
@@ -136,7 +139,7 @@ BmChat.Footer = styled.div`
136
139
  padding: 0.5rem 0rem;
137
140
  align-items: center;
138
141
  justify-content: center;
139
- background: ${BmGrey50};
142
+ ${'' /* background: ${BmGrey50}; */}
140
143
  > *:not(:last-child) {
141
144
  margin-right: 0.5rem;
142
145
  }
@@ -17,32 +17,32 @@ export default {
17
17
 
18
18
  export const ChatBody = () => {
19
19
  return (
20
- <BmChat>
21
- <BmChat.Body>
22
- <BmChat.Details
23
- state="inbound"
24
- session="bot"
25
- displayTime={<p>12:00pm</p>}
26
- status="sent"
27
- >
28
- <p>Inbound</p>
29
- </BmChat.Details>
30
- <BmChat.Details
31
- state="outbound"
32
- session="live"
33
- displayTime={<p>10:00am</p>}
34
- status="failed"
35
- >
36
- <p>Outbound</p>
37
- </BmChat.Details>
38
- </BmChat.Body>
39
- <BmChat.Footer>
40
- <BmIcons icon={<EmojiEmotionsIcon />} size="xlarge" />
41
- <BmIcons icon={<AttachFileIcon />} size="xlarge" />
42
- <BmIcons icon={<QuickreplyIcon />} size="xlarge" />
43
- <BmInput placeholder="Enter Message" />
44
- <BmIcons icon={<SendIcon />} size="xlarge" />
45
- </BmChat.Footer>
46
- </BmChat>
20
+ <BmChat>
21
+ <BmChat.Body>
22
+ <BmChat.Details
23
+ state="inbound"
24
+ session="bot"
25
+ displayTime={<p>12:00pm</p>}
26
+ status="sent"
27
+ >
28
+ <p>Inbound</p>
29
+ </BmChat.Details>
30
+ <BmChat.Details
31
+ state="outbound"
32
+ session="live"
33
+ displayTime={<p>10:00am</p>}
34
+ status="failed"
35
+ >
36
+ <p>Outbound</p>
37
+ </BmChat.Details>
38
+ </BmChat.Body>
39
+ <BmChat.Footer>
40
+ <BmIcons icon={<EmojiEmotionsIcon />} size="xlarge" />
41
+ <BmIcons icon={<AttachFileIcon />} size="xlarge" />
42
+ <BmIcons icon={<QuickreplyIcon />} size="xlarge" />
43
+ <BmInput placeholder="Enter Message" />
44
+ <BmIcons icon={<SendIcon />} size="xlarge" />
45
+ </BmChat.Footer>
46
+ </BmChat>
47
47
  );
48
48
  };
@@ -1,11 +1,11 @@
1
1
  import styled from "styled-components";
2
- import { BmGrey400 } from "../colors";
2
+ // import { BmGrey400 } from "../colors";
3
3
 
4
4
  export const BmChatHeader = styled.div`
5
5
  display: flex;
6
6
  flex-direction: row;
7
7
  align-items: center;
8
- border: 0.071rem solid ${BmGrey400};
8
+ ${'' /* border: 0.071rem solid ${BmGrey400}; */}
9
9
  padding: 1rem;
10
10
  > *:not(:last-child) {
11
11
  margin-right: 0.5rem;
@@ -25,7 +25,7 @@ export const BmChatWrapper = styled.div`
25
25
  return `${BmPrimaryWhite}`;
26
26
  }};
27
27
  border: 0.071rem solid ${BmGrey400};
28
- border-radius: 0.21875rem 0.21875rem 0.21875rem 0rem;
28
+ border-radius: 0.25rem 0.21875rem 0.21875rem 0rem;
29
29
  max-width: 50%;
30
30
  overflow-wrap: break-word !important;
31
31
  word-wrap: break-word !important;
@@ -170,7 +170,7 @@ export const BmFileChat = ({ children, displayTime, type, ...rest }) => {
170
170
  export const BmImageWrapper = styled.div`
171
171
  background: ${BmGrey100};
172
172
  border: 0.071rem solid ${BmGrey400};
173
- border-radius: 0.21875rem 0.21875rem 0rem 0.21875rem;
173
+ border-radius: 0.25rem 0.21875rem 0rem 0.21875rem;
174
174
  display: flex;
175
175
  flex-direction: column;
176
176
  max-width: 50%;
@@ -63,7 +63,7 @@ export const BmMessage = styled("div")`
63
63
  background: ${BmPrimaryWhite};
64
64
  border: 0.071rem solid ${BmGrey400};
65
65
  box-sizing: border-box;
66
- border-radius: 0.21875rem;
66
+ border-radius: 0.25rem;
67
67
  flex-grow: 1;
68
68
  max-width: 75%;
69
69
  `;
@@ -1,11 +1,11 @@
1
1
  import styled from "styled-components";
2
- import { BmGrey400 } from "../colors";
2
+ // import { BmGrey400 } from "../colors";
3
3
 
4
4
  const BmInfoTab = styled.div`
5
5
  display: flex;
6
6
  flex-direction: column;
7
7
  padding: 1.5rem;
8
- border: 0.071rem solid ${BmGrey400};
8
+ ${'' /* border: 0.071rem solid ${BmGrey400}; */}
9
9
  > *:not(:last-child) {
10
10
  margin-bottom: 1rem;
11
11
  }
@@ -24,7 +24,7 @@ export const BmListBox = styled.div`
24
24
  background: ${BmPrimaryWhite};
25
25
  border: 0.071rem solid ${BmGrey400};
26
26
  box-shadow: 0rem 0.286rem 0.286rem rgba(0, 0, 0, 0.25);
27
- border-radius: 0.21875rem;
27
+ border-radius: 0.25rem;
28
28
  z-index: 99999;
29
29
  cursor: pointer;
30
30
  `;