beem-component 1.0.2 → 1.0.3
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.
- package/.storybook/favicon.ico +0 -0
- package/.storybook/logo-blue.png +0 -0
- package/.storybook/main.js +15 -0
- package/.storybook/manager-head.html +14 -0
- package/.storybook/manager.js +6 -0
- package/.storybook/preview.js +10 -0
- package/.storybook/theme.js +10 -0
- package/Dockerfile +30 -0
- package/Jenkinsfile +73 -0
- package/build-storybook.log +14621 -0
- package/dist/assets/beem.jpeg +0 -0
- package/dist/components/{Accordion.js → Accordion/Accordion.js} +13 -7
- package/dist/components/Accordion/Accordion.stories.js +86 -0
- package/dist/components/{avatars.js → Avatars/avatars.js} +31 -11
- package/dist/components/Avatars/avatars.stories.js +69 -0
- package/dist/components/Buttons/Stories/basicbutton.stories.js +67 -0
- package/dist/components/Buttons/Stories/buttonAlertIcons.stories.js +65 -0
- package/dist/components/Buttons/Stories/buttonIconsOnly.stories.js +65 -0
- package/dist/components/{buttonAlertIcons.js → Buttons/buttonAlertIcons.js} +17 -9
- package/dist/components/{buttonIconsOnly.js → Buttons/buttonIconsOnly.js} +13 -4
- package/dist/components/{buttons.js → Buttons/buttons.js} +11 -10
- package/dist/components/{Reports → Cards}/cards.js +9 -24
- package/dist/components/Cards/cards.stories.js +61 -0
- package/dist/components/Chats/chat.js +1 -1
- package/dist/components/Chats/chatInput.js +1 -1
- package/dist/components/Chats/chatwrapper.js +1 -1
- package/dist/components/Lists/listBox.js +41 -0
- package/dist/components/Lists/listBox.stories.js +78 -0
- package/dist/components/Lists/listHeader.stories.js +58 -0
- package/dist/components/Lists/listheader.js +17 -12
- package/dist/components/Lists/rowLabels.js +34 -16
- package/dist/components/Lists/rowLabels.stories.js +85 -0
- package/dist/components/{loaders.js → Loader/loader.js} +13 -7
- package/dist/components/Loader/loader.stories.js +52 -0
- package/dist/components/{Reports/buttons.js → MainWrapper/index.js} +5 -3
- package/dist/components/Modals/modal copy.js +160 -0
- package/dist/components/Modals/modal.js +166 -0
- package/dist/components/Modals/modals.stories.js +117 -0
- package/dist/components/{infoNote.js → NoteBar.js/noteBar.js} +23 -19
- package/dist/components/NoteBar.js/noteBar.stories.js +66 -0
- package/dist/components/PerformanceIndicator/performaceIndicator.stories.js +66 -0
- package/dist/components/PerformanceIndicator/performanceIndicator.js +68 -0
- package/dist/components/Pills/pills.js +126 -0
- package/dist/components/Pills/pills.stories.js +110 -0
- package/dist/components/{progressbar.js → ProgressBar/progressbar.js} +8 -2
- package/dist/components/ProgressBar/progressbar.stories.js +45 -0
- package/dist/components/{Link.js → RouteLink/link.js} +3 -3
- package/dist/components/RouteLink/link.stories.js +29 -0
- package/dist/components/SuperFluid/ContentTitle.js/index.js +1 -1
- package/dist/components/SuperFluid/SegmentCard/index.js +1 -1
- package/dist/components/Tabs/tabs.js +85 -0
- package/dist/components/Tabs/tabs.stories.js +59 -0
- package/dist/components/breakpoints.js +18 -0
- package/dist/components/chatHeader.js +1 -1
- package/dist/components/checkboxToggler.js +2 -2
- package/dist/components/colors.js +5 -3
- package/dist/components/contacts.js +1 -1
- package/dist/components/dropdown.js +1 -1
- package/dist/components/dropdownButton.js +3 -3
- package/dist/components/dropdownItems.js +1 -1
- package/dist/components/example.js +47 -0
- package/dist/components/iconStyles.js +69 -119
- package/dist/components/index-copy.js +1285 -0
- package/dist/components/index.js +74 -1160
- package/dist/components/input.js +9 -3
- package/dist/components/logo.js +1 -1
- package/dist/components/navbar.js +1 -1
- package/dist/components/sidebar.js +2 -2
- package/dist/components/tabs.js +1 -1
- package/dist/components/text.js +1 -1
- package/dist/components/typography.js +1 -1
- package/nginx.conf +17 -0
- package/package.json +29 -11
- package/public/favicon.ico +0 -0
- package/public/index.html +1 -1
- package/src/App.js +7 -29
- package/src/examples/Navbar.js +1 -1
- package/src/lib/assets/beem.jpeg +0 -0
- package/src/lib/components/{Accordion.js → Accordion/Accordion.js} +6 -5
- package/src/lib/components/Accordion/Accordion.stories.js +63 -0
- package/src/lib/components/{avatars.js → Avatars/avatars.js} +24 -8
- package/src/lib/components/Avatars/avatars.stories.js +45 -0
- package/src/lib/components/Buttons/Stories/basicbutton.stories.js +51 -0
- package/src/lib/components/Buttons/Stories/buttonAlertIcons.stories.js +42 -0
- package/src/lib/components/Buttons/Stories/buttonIconsOnly.stories.js +49 -0
- package/src/lib/components/{buttonAlertIcons.js → Buttons/buttonAlertIcons.js} +20 -9
- package/src/lib/components/{buttonIconsOnly.js → Buttons/buttonIconsOnly.js} +12 -2
- package/src/lib/components/{buttons.js → Buttons/buttons.js} +10 -10
- package/src/lib/components/{Reports → Cards}/cards.js +10 -18
- package/src/lib/components/Cards/cards.stories.js +52 -0
- package/src/lib/components/Lists/listBox.js +34 -0
- package/src/lib/components/Lists/listBox.stories.js +47 -0
- package/src/lib/components/Lists/listHeader.stories.js +36 -0
- package/src/lib/components/Lists/listheader.js +17 -11
- package/src/lib/components/Lists/rowLabels.js +47 -16
- package/src/lib/components/Lists/rowLabels.stories.js +59 -0
- package/src/lib/components/{loaders.js → Loader/loader.js} +18 -7
- package/src/lib/components/Loader/loader.stories.js +30 -0
- package/src/lib/components/MainWrapper/index.js +7 -0
- package/src/lib/components/Modals/modal copy.js +159 -0
- package/src/lib/components/Modals/modal.js +152 -0
- package/src/lib/components/Modals/modals.stories.js +82 -0
- package/src/lib/components/{infoNote.js → NoteBar.js/noteBar.js} +24 -25
- package/src/lib/components/NoteBar.js/noteBar.stories.js +40 -0
- package/src/lib/components/PerformanceIndicator/performaceIndicator.stories.js +40 -0
- package/src/lib/components/PerformanceIndicator/performanceIndicator.js +56 -0
- package/src/lib/components/Pills/pills.js +91 -0
- package/src/lib/components/Pills/pills.stories.js +74 -0
- package/src/lib/components/{progressbar.js → ProgressBar/progressbar.js} +8 -1
- package/src/lib/components/ProgressBar/progressbar.stories.js +26 -0
- package/src/lib/components/{Link.js → RouteLink/link.js} +4 -4
- package/src/lib/components/RouteLink/link.stories.js +21 -0
- package/src/lib/components/Tabs/tabs.js +84 -0
- package/src/lib/components/Tabs/tabs.stories.js +36 -0
- package/src/lib/components/breakpoints.js +11 -0
- package/src/lib/components/colors.js +2 -0
- package/src/lib/components/dropdownButton.js +2 -2
- package/src/lib/components/example.js +30 -0
- package/src/lib/components/iconStyles.js +46 -101
- package/src/lib/components/index-copy.js +468 -0
- package/src/lib/components/index.js +39 -448
- package/src/lib/components/input.js +8 -2
- package/src/lib/components/sidebar.js +1 -1
- package/storybook-static/0.00c62ec79c260aedbb98.manager.bundle.js +2 -0
- package/storybook-static/0.00c62ec79c260aedbb98.manager.bundle.js.LICENSE.txt +8 -0
- package/storybook-static/0.96c45dd8.iframe.bundle.js +1 -0
- package/storybook-static/1.dc6acfa9.iframe.bundle.js +3 -0
- package/storybook-static/1.dc6acfa9.iframe.bundle.js.LICENSE.txt +8 -0
- package/storybook-static/1.dc6acfa9.iframe.bundle.js.map +1 -0
- package/storybook-static/1.dc7dcdaec2def2f224fd.manager.bundle.js +1 -0
- package/storybook-static/2.24353ddc.iframe.bundle.js +1 -0
- package/storybook-static/3.8bb2173c.iframe.bundle.js +1 -0
- package/storybook-static/5.0779e3847d325dece216.manager.bundle.js +1 -0
- package/storybook-static/6.8bd405c2576206749a16.manager.bundle.js +2 -0
- package/storybook-static/6.8bd405c2576206749a16.manager.bundle.js.LICENSE.txt +12 -0
- package/storybook-static/7.9d4ba19cf58425e7ff0d.manager.bundle.js +1 -0
- package/storybook-static/7.f0cfc757.iframe.bundle.js +1 -0
- package/storybook-static/8.91de97de.iframe.bundle.js +3 -0
- package/storybook-static/8.91de97de.iframe.bundle.js.LICENSE.txt +12 -0
- package/storybook-static/8.91de97de.iframe.bundle.js.map +1 -0
- package/storybook-static/8.b4e9ec0ec7648e02a923.manager.bundle.js +1 -0
- package/storybook-static/9.40ec65d6.iframe.bundle.js +1 -0
- package/storybook-static/asset-manifest.json +30 -0
- package/storybook-static/favicon.ico +0 -0
- package/storybook-static/iframe.html +348 -0
- package/storybook-static/index.html +110 -0
- package/storybook-static/main.3c8d8027.iframe.bundle.js +1 -0
- package/storybook-static/main.3e5804fe56d1f580b088.manager.bundle.js +1 -0
- package/storybook-static/runtime~main.d3a18d6a.iframe.bundle.js +1 -0
- package/storybook-static/runtime~main.ff106120648356c6069d.manager.bundle.js +1 -0
- package/storybook-static/static/css/main.b44a190d.chunk.css +4 -0
- package/storybook-static/static/css/main.b44a190d.chunk.css.map +1 -0
- package/storybook-static/static/media/OpenSans-Regular.1b0809d5.ttf +0 -0
- package/storybook-static/static/media/PoppinsBold.1eae2d48.woff2 +0 -0
- package/storybook-static/static/media/PoppinsBold.53ff6749.eot +0 -0
- package/storybook-static/static/media/PoppinsBold.53ff971f.ttf +0 -0
- package/storybook-static/static/media/PoppinsBold.850fc4f3.svg +3066 -0
- package/storybook-static/static/media/PoppinsBold.b33c148b.woff +0 -0
- package/storybook-static/static/media/PoppinsMedium.0ba26f6c.woff +0 -0
- package/storybook-static/static/media/PoppinsMedium.49b46ace.eot +0 -0
- package/storybook-static/static/media/PoppinsMedium.57a99fa8.woff2 +0 -0
- package/storybook-static/static/media/PoppinsMedium.b7e43707.svg +3103 -0
- package/storybook-static/static/media/PoppinsMedium.c98dddbd.ttf +0 -0
- package/storybook-static/static/media/PoppinsRegular.13b9af9c.eot +0 -0
- package/storybook-static/static/media/PoppinsRegular.43e9b50d.svg +3138 -0
- package/storybook-static/static/media/PoppinsRegular.4a4d5420.woff +0 -0
- package/storybook-static/static/media/PoppinsRegular.9a7cc7ec.woff2 +0 -0
- package/storybook-static/static/media/PoppinsRegular.e1bc9021.ttf +0 -0
- package/storybook-static/static/media/PoppinsSemiBold.5692c77f.ttf +0 -0
- package/storybook-static/static/media/PoppinsSemiBold.80138c67.woff +0 -0
- package/storybook-static/static/media/PoppinsSemiBold.c442695a.eot +0 -0
- package/storybook-static/static/media/PoppinsSemiBold.e1948d56.svg +3098 -0
- package/storybook-static/static/media/PoppinsSemiBold.f27050e2.woff2 +0 -0
- package/storybook-static/static/media/logo-blue.bfc5ba6d.png +0 -0
- package/storybook-static/vendors~main.1750028c2d68e574fb1d.manager.bundle.js +2 -0
- package/storybook-static/vendors~main.1750028c2d68e574fb1d.manager.bundle.js.LICENSE.txt +104 -0
- package/storybook-static/vendors~main.7fe78cc2.iframe.bundle.js +3 -0
- package/storybook-static/vendors~main.7fe78cc2.iframe.bundle.js.LICENSE.txt +122 -0
- package/storybook-static/vendors~main.7fe78cc2.iframe.bundle.js.map +1 -0
- package/dist/assets/content_copy_black.svg +0 -1
- package/dist/assets/profile-pic.jpg +0 -0
- package/dist/components/Accordicon.js +0 -51
- package/dist/components/CustomerInfo/customerInfo.js +0 -89
- package/dist/components/CustomerInfo/customerInfoBar.js +0 -24
- package/dist/components/CustomerInfo/infoAccordion.js +0 -78
- package/dist/components/CustomerInfo/labelsInfo.js +0 -37
- package/dist/components/CustomerInfo/notesInfo.js +0 -39
- package/dist/components/Modals/modalBody.js +0 -61
- package/dist/components/Modals/noteModalBody.js +0 -20
- package/dist/components/Modals/noteModalFooter.js +0 -24
- package/dist/components/Modals/noteModalHeader.js +0 -93
- package/dist/components/Reports/charts.js +0 -70
- package/dist/components/Reports/infoHeader.js +0 -65
- package/dist/components/Reports/reportsBody.js +0 -28
- package/dist/components/Reports/title.js +0 -28
- package/dist/components/performanceIndicator.js +0 -41
- package/dist/components/pills.js +0 -73
- package/src/App1.js +0 -229
- package/src/CHAT.js +0 -170
- package/src/Complete.js +0 -48
- package/src/CreateSegments.js +0 -48
- package/src/FileUploadSFL.js +0 -110
- package/src/examples/CustomerInfo.js +0 -248
- package/src/lib/assets/content_copy_black.svg +0 -1
- package/src/lib/assets/profile-pic.jpg +0 -0
- package/src/lib/components/Accordicon.js +0 -43
- package/src/lib/components/CustomerInfo/customerInfo.js +0 -91
- package/src/lib/components/CustomerInfo/customerInfoBar.js +0 -23
- package/src/lib/components/CustomerInfo/infoAccordion.js +0 -96
- package/src/lib/components/CustomerInfo/labelsInfo.js +0 -37
- package/src/lib/components/CustomerInfo/notesInfo.js +0 -61
- package/src/lib/components/Modals/modalBody.js +0 -66
- package/src/lib/components/Modals/noteModalBody.js +0 -10
- package/src/lib/components/Modals/noteModalFooter.js +0 -16
- package/src/lib/components/Modals/noteModalHeader.js +0 -103
- package/src/lib/components/Reports/buttons.js +0 -5
- package/src/lib/components/Reports/charts.js +0 -79
- package/src/lib/components/Reports/infoHeader.js +0 -63
- package/src/lib/components/Reports/reportsBody.js +0 -29
- package/src/lib/components/Reports/title.js +0 -19
- package/src/lib/components/performanceIndicator.js +0 -27
- package/src/lib/components/pills.js +0 -65
|
@@ -0,0 +1,468 @@
|
|
|
1
|
+
import { BmAvatar } from "./avatars";
|
|
2
|
+
import { BmAlertIcon } from "./buttonAlertIcons";
|
|
3
|
+
import { BmBtnIcon } from "./buttonIconsOnly";
|
|
4
|
+
import { BmButton } from "./buttons";
|
|
5
|
+
import { BmCheckboxToggler } from "./checkboxToggler";
|
|
6
|
+
import { BmDropdown } from "./dropdown";
|
|
7
|
+
import { BmInput } from "./input";
|
|
8
|
+
import { BmLogo } from "./logo";
|
|
9
|
+
import { BmSearch } from "./search";
|
|
10
|
+
import { BmAccordicon } from "./Accordicon";
|
|
11
|
+
import { BmRouteLink } from "./Link";
|
|
12
|
+
|
|
13
|
+
import {
|
|
14
|
+
BmTab,
|
|
15
|
+
BmTabItem,
|
|
16
|
+
BmTabWrapper,
|
|
17
|
+
BmTabText,
|
|
18
|
+
BmLeftTabIcon,
|
|
19
|
+
BmRightTabIcon,
|
|
20
|
+
} from "./tabs";
|
|
21
|
+
import { BmTag } from "./tags";
|
|
22
|
+
|
|
23
|
+
// Navabar
|
|
24
|
+
import {
|
|
25
|
+
BmNavbar,
|
|
26
|
+
BmNavbarItems,
|
|
27
|
+
GlobalNavbarWrapper,
|
|
28
|
+
OldBmNavbar,
|
|
29
|
+
BmNavBarProfile,
|
|
30
|
+
BmNavbarSearch,
|
|
31
|
+
BmNavbarLogo,
|
|
32
|
+
} from "./navbar";
|
|
33
|
+
|
|
34
|
+
// iconsStyles
|
|
35
|
+
import {
|
|
36
|
+
BmButtonIcon,
|
|
37
|
+
BmSuccessIcon,
|
|
38
|
+
BmErrorIcon,
|
|
39
|
+
BmSearchIcon,
|
|
40
|
+
BmDropdownIcon,
|
|
41
|
+
BmDropupIcon,
|
|
42
|
+
BmTagIcon,
|
|
43
|
+
BmAvatarIcon,
|
|
44
|
+
BmChatbotIcon,
|
|
45
|
+
BmEmojiIcon,
|
|
46
|
+
BmQuickReplyIcon,
|
|
47
|
+
BmSupport,
|
|
48
|
+
BmChatbot,
|
|
49
|
+
BmIcons,
|
|
50
|
+
CopyToClipBoard,
|
|
51
|
+
} from "./iconStyles";
|
|
52
|
+
|
|
53
|
+
import { Loader, BmLoader } from "./loaders";
|
|
54
|
+
|
|
55
|
+
import { GlobalStyle } from "./globalStyles";
|
|
56
|
+
|
|
57
|
+
// Main chat
|
|
58
|
+
import {
|
|
59
|
+
BmChatWrapper,
|
|
60
|
+
BmChatText,
|
|
61
|
+
BmDisplayTime,
|
|
62
|
+
BmUserChat,
|
|
63
|
+
BmFileWrapper,
|
|
64
|
+
BmFileText,
|
|
65
|
+
FileIcons,
|
|
66
|
+
BmFileChat,
|
|
67
|
+
BmImageWrapper,
|
|
68
|
+
BmImage,
|
|
69
|
+
BmImageFileName,
|
|
70
|
+
BmImageChat,
|
|
71
|
+
} from "./Chats/chat";
|
|
72
|
+
import {
|
|
73
|
+
BmMessageTab,
|
|
74
|
+
BmMessageTabInput,
|
|
75
|
+
BmSend,
|
|
76
|
+
BmAttachment,
|
|
77
|
+
BmMessage,
|
|
78
|
+
} from "./Chats/chatInput";
|
|
79
|
+
|
|
80
|
+
import {
|
|
81
|
+
Main,
|
|
82
|
+
BmChat,
|
|
83
|
+
BmChatMenu,
|
|
84
|
+
MessageIn,
|
|
85
|
+
MessageOut,
|
|
86
|
+
MainWrapper,
|
|
87
|
+
} from "./Chats/chatwrapper";
|
|
88
|
+
|
|
89
|
+
// sidebar
|
|
90
|
+
import {
|
|
91
|
+
BmSideBar,
|
|
92
|
+
BmSideBarSearch,
|
|
93
|
+
BmSideBarBtnIcon,
|
|
94
|
+
BmSideBarTab,
|
|
95
|
+
} from "./sidebar";
|
|
96
|
+
|
|
97
|
+
// Sidebar contacts
|
|
98
|
+
import {
|
|
99
|
+
BmContact,
|
|
100
|
+
BmContactItem,
|
|
101
|
+
BmContactText,
|
|
102
|
+
BmContactName,
|
|
103
|
+
BmContactIcon,
|
|
104
|
+
BmMessageText,
|
|
105
|
+
BmMessageContact,
|
|
106
|
+
BmContactMessage,
|
|
107
|
+
BmContactDetails,
|
|
108
|
+
BmContactTime,
|
|
109
|
+
BmContactSideBar,
|
|
110
|
+
BmUnreadMessage,
|
|
111
|
+
} from "./contacts";
|
|
112
|
+
|
|
113
|
+
import {
|
|
114
|
+
BmCustomerDetails,
|
|
115
|
+
BmCustomerInfoHeader,
|
|
116
|
+
BmCustomer,
|
|
117
|
+
BmCustomerInfoName,
|
|
118
|
+
BmMoreInfo,
|
|
119
|
+
BmBtnTag,
|
|
120
|
+
BmInfoTabWrapper,
|
|
121
|
+
BmIcon,
|
|
122
|
+
BmCustomerIcons,
|
|
123
|
+
BmCustomerInfoTab,
|
|
124
|
+
} from "../components/CustomerInfo/customerInfo";
|
|
125
|
+
|
|
126
|
+
import {
|
|
127
|
+
BmCustomerBar,
|
|
128
|
+
BmCustomerInfoAccordicon,
|
|
129
|
+
} from "../components/CustomerInfo/customerInfoBar";
|
|
130
|
+
|
|
131
|
+
import { BmButtonDropDown } from "./dropdownButton";
|
|
132
|
+
import {
|
|
133
|
+
BmButtonDropdownItem,
|
|
134
|
+
BmDropDownItem,
|
|
135
|
+
BmDropDownMenu,
|
|
136
|
+
BmCustomizedDropdown,
|
|
137
|
+
} from "./dropdownItems";
|
|
138
|
+
|
|
139
|
+
import { BmProgressBar } from "../components/progressbar";
|
|
140
|
+
|
|
141
|
+
import {
|
|
142
|
+
BmInfoAccordiconMenu,
|
|
143
|
+
BmInformation,
|
|
144
|
+
BmInfoHeaderText,
|
|
145
|
+
BmDropdownInfo,
|
|
146
|
+
BmInfoHeaderWrapper,
|
|
147
|
+
BmInfoHeader,
|
|
148
|
+
BmInfoContent,
|
|
149
|
+
BmInfoContentItem,
|
|
150
|
+
BmInfoContentLabel,
|
|
151
|
+
BmInfoContentValue,
|
|
152
|
+
} from "../components/CustomerInfo/infoAccordion";
|
|
153
|
+
import {
|
|
154
|
+
BmChatHeaderWrapper,
|
|
155
|
+
BmChatHeaderText,
|
|
156
|
+
BmChatHeaderTime,
|
|
157
|
+
BmChatHeaderInfoIcon,
|
|
158
|
+
BmChatHeader,
|
|
159
|
+
} from "./chatHeader";
|
|
160
|
+
|
|
161
|
+
import { BmChatInfoWrapper, BmChatMenuWrapper } from "./wrapper";
|
|
162
|
+
|
|
163
|
+
import {
|
|
164
|
+
Overlay,
|
|
165
|
+
ModalContent,
|
|
166
|
+
ModalWrapper,
|
|
167
|
+
HeaderWrapper,
|
|
168
|
+
HeaderText,
|
|
169
|
+
Close,
|
|
170
|
+
CloseModal,
|
|
171
|
+
ModalHeader,
|
|
172
|
+
Modal,
|
|
173
|
+
} from "./Modals/noteModalHeader";
|
|
174
|
+
|
|
175
|
+
import { ModalBody } from "./Modals/noteModalBody";
|
|
176
|
+
import { ModalFooter, BmFooterButtons } from "./Modals/noteModalFooter";
|
|
177
|
+
|
|
178
|
+
import { BmReportsButton } from "./Reports/buttons";
|
|
179
|
+
import {
|
|
180
|
+
BmCard,
|
|
181
|
+
CardTitleWrapper,
|
|
182
|
+
CardTitleText,
|
|
183
|
+
CardTitle,
|
|
184
|
+
BmCardBody,
|
|
185
|
+
BmCardBodyImg,
|
|
186
|
+
BmCardBodyText,
|
|
187
|
+
BmCardFooter,
|
|
188
|
+
BmCardFooterText,
|
|
189
|
+
BmCardDetails,
|
|
190
|
+
} from "./Reports/cards";
|
|
191
|
+
import {
|
|
192
|
+
BmReportsBody,
|
|
193
|
+
BmOverviewCards,
|
|
194
|
+
BmOverviewCharts,
|
|
195
|
+
} from "./Reports/reportsBody";
|
|
196
|
+
import {
|
|
197
|
+
BmReportsTitle,
|
|
198
|
+
BmReportsHeader,
|
|
199
|
+
BmReportsButtons,
|
|
200
|
+
} from "./Reports/title";
|
|
201
|
+
import {
|
|
202
|
+
BmReportsInfoHeader,
|
|
203
|
+
CloseNote,
|
|
204
|
+
BmReportsHeaderText,
|
|
205
|
+
} from "./Reports/infoHeader";
|
|
206
|
+
|
|
207
|
+
import {
|
|
208
|
+
BmChart,
|
|
209
|
+
BmChartHeader,
|
|
210
|
+
BmChartTitleText,
|
|
211
|
+
BmChartDetails,
|
|
212
|
+
BmChartBody,
|
|
213
|
+
BmChartBodyText,
|
|
214
|
+
BmChartBodyDetails,
|
|
215
|
+
BmChartHeading,
|
|
216
|
+
BmMainChartWrapper,
|
|
217
|
+
BmMainChartContent,
|
|
218
|
+
BmMainChart,
|
|
219
|
+
} from "./Reports/charts";
|
|
220
|
+
|
|
221
|
+
import {
|
|
222
|
+
BmAgentSearch,
|
|
223
|
+
BmAgentName,
|
|
224
|
+
BmAgentPill,
|
|
225
|
+
BmAgentButton,
|
|
226
|
+
BmPreviousAgentWrapper,
|
|
227
|
+
BmPreviousAgentTitle,
|
|
228
|
+
BmPreviousAgentContent,
|
|
229
|
+
BmPreviousAgentIcon,
|
|
230
|
+
BmPreviousAgent,
|
|
231
|
+
BmPreviousAgentName,
|
|
232
|
+
BmPreviousAgentMessage,
|
|
233
|
+
} from "./Modals/modalBody";
|
|
234
|
+
|
|
235
|
+
import { BmListHeader } from "./Lists/listheader";
|
|
236
|
+
import { BmRowLabel } from "./Lists/rowLabels";
|
|
237
|
+
import { BmContent } from "./SuperFluid/Content/index";
|
|
238
|
+
import {
|
|
239
|
+
BmContentFooter,
|
|
240
|
+
BmContentTitle,
|
|
241
|
+
BmFooterLeft,
|
|
242
|
+
BmFooterRight,
|
|
243
|
+
} from "./SuperFluid/ContentTitle.js/index.js";
|
|
244
|
+
import {
|
|
245
|
+
BmSegmentCard,
|
|
246
|
+
BmSegmentSelector,
|
|
247
|
+
BmSegment,
|
|
248
|
+
BmSegmentCheckBox,
|
|
249
|
+
BmSegmentCompleteContent,
|
|
250
|
+
BmSegmentCompleteIcon,
|
|
251
|
+
BmSegmentCreateContent,
|
|
252
|
+
} from "./SuperFluid/SegmentCard/index";
|
|
253
|
+
import { BmInfoNote } from "./infoNote";
|
|
254
|
+
import { BmCheckbox } from "./checkbox";
|
|
255
|
+
import {
|
|
256
|
+
BmAddNote,
|
|
257
|
+
BmNoteInfo,
|
|
258
|
+
BmNote,
|
|
259
|
+
BmNoteFooter,
|
|
260
|
+
BmNoteDetails,
|
|
261
|
+
} from "./CustomerInfo/notesInfo";
|
|
262
|
+
import {
|
|
263
|
+
BmAddLabel,
|
|
264
|
+
BmLabelInfo,
|
|
265
|
+
BmLabels,
|
|
266
|
+
BmColorLabel,
|
|
267
|
+
BmColorLabelPicker,
|
|
268
|
+
} from "./CustomerInfo/labelsInfo";
|
|
269
|
+
|
|
270
|
+
export {
|
|
271
|
+
BmButton,
|
|
272
|
+
BmAvatar,
|
|
273
|
+
BmAlertIcon,
|
|
274
|
+
BmBtnIcon,
|
|
275
|
+
BmCheckboxToggler,
|
|
276
|
+
BmDropdown,
|
|
277
|
+
BmInput,
|
|
278
|
+
BmLogo,
|
|
279
|
+
BmSearch,
|
|
280
|
+
BmTab,
|
|
281
|
+
BmTabItem,
|
|
282
|
+
BmTabWrapper,
|
|
283
|
+
BmTabText,
|
|
284
|
+
BmLeftTabIcon,
|
|
285
|
+
BmRightTabIcon,
|
|
286
|
+
BmTag,
|
|
287
|
+
BmNavbar,
|
|
288
|
+
BmNavbarItems,
|
|
289
|
+
GlobalNavbarWrapper,
|
|
290
|
+
OldBmNavbar,
|
|
291
|
+
BmNavBarProfile,
|
|
292
|
+
BmNavbarSearch,
|
|
293
|
+
BmNavbarLogo,
|
|
294
|
+
BmChatWrapper,
|
|
295
|
+
BmChatText,
|
|
296
|
+
BmDisplayTime,
|
|
297
|
+
BmUserChat,
|
|
298
|
+
BmFileWrapper,
|
|
299
|
+
BmFileText,
|
|
300
|
+
FileIcons,
|
|
301
|
+
BmFileChat,
|
|
302
|
+
BmImageWrapper,
|
|
303
|
+
BmImage,
|
|
304
|
+
BmImageFileName,
|
|
305
|
+
BmImageChat,
|
|
306
|
+
BmMessageTab,
|
|
307
|
+
BmMessageTabInput,
|
|
308
|
+
BmSend,
|
|
309
|
+
BmAttachment,
|
|
310
|
+
BmMessage,
|
|
311
|
+
Main,
|
|
312
|
+
MainWrapper,
|
|
313
|
+
BmChat,
|
|
314
|
+
BmChatMenu,
|
|
315
|
+
MessageIn,
|
|
316
|
+
MessageOut,
|
|
317
|
+
BmSideBar,
|
|
318
|
+
BmSideBarSearch,
|
|
319
|
+
BmSideBarBtnIcon,
|
|
320
|
+
BmSideBarTab,
|
|
321
|
+
BmButtonIcon,
|
|
322
|
+
BmSuccessIcon,
|
|
323
|
+
BmErrorIcon,
|
|
324
|
+
BmSearchIcon,
|
|
325
|
+
BmDropdownIcon,
|
|
326
|
+
BmDropupIcon,
|
|
327
|
+
BmTagIcon,
|
|
328
|
+
BmAvatarIcon,
|
|
329
|
+
BmChatbotIcon,
|
|
330
|
+
BmEmojiIcon,
|
|
331
|
+
BmQuickReplyIcon,
|
|
332
|
+
BmSupport,
|
|
333
|
+
BmChatbot,
|
|
334
|
+
BmIcons,
|
|
335
|
+
BmContact,
|
|
336
|
+
BmContactItem,
|
|
337
|
+
BmContactText,
|
|
338
|
+
BmContactName,
|
|
339
|
+
BmContactIcon,
|
|
340
|
+
BmMessageText,
|
|
341
|
+
BmMessageContact,
|
|
342
|
+
BmContactMessage,
|
|
343
|
+
BmContactDetails,
|
|
344
|
+
BmContactTime,
|
|
345
|
+
BmContactSideBar,
|
|
346
|
+
BmUnreadMessage,
|
|
347
|
+
BmCustomerDetails,
|
|
348
|
+
BmCustomerInfoHeader,
|
|
349
|
+
BmCustomer,
|
|
350
|
+
BmCustomerInfoName,
|
|
351
|
+
BmMoreInfo,
|
|
352
|
+
BmBtnTag,
|
|
353
|
+
BmInfoTabWrapper,
|
|
354
|
+
BmIcon,
|
|
355
|
+
BmCustomerIcons,
|
|
356
|
+
BmCustomerInfoTab,
|
|
357
|
+
BmCustomerBar,
|
|
358
|
+
BmCustomerInfoAccordicon,
|
|
359
|
+
BmInfoAccordiconMenu,
|
|
360
|
+
BmInformation,
|
|
361
|
+
BmInfoHeaderText,
|
|
362
|
+
BmDropdownInfo,
|
|
363
|
+
BmInfoHeaderWrapper,
|
|
364
|
+
BmInfoHeader,
|
|
365
|
+
BmInfoContent,
|
|
366
|
+
BmInfoContentItem,
|
|
367
|
+
BmInfoContentLabel,
|
|
368
|
+
BmInfoContentValue,
|
|
369
|
+
BmChatHeaderWrapper,
|
|
370
|
+
BmChatHeaderText,
|
|
371
|
+
BmChatHeaderTime,
|
|
372
|
+
BmChatHeaderInfoIcon,
|
|
373
|
+
BmChatHeader,
|
|
374
|
+
BmChatInfoWrapper,
|
|
375
|
+
BmChatMenuWrapper,
|
|
376
|
+
Loader,
|
|
377
|
+
BmLoader,
|
|
378
|
+
BmButtonDropDown,
|
|
379
|
+
BmButtonDropdownItem,
|
|
380
|
+
BmDropDownItem,
|
|
381
|
+
BmDropDownMenu,
|
|
382
|
+
BmCustomizedDropdown,
|
|
383
|
+
GlobalStyle,
|
|
384
|
+
Overlay,
|
|
385
|
+
ModalContent,
|
|
386
|
+
ModalWrapper,
|
|
387
|
+
HeaderWrapper,
|
|
388
|
+
HeaderText,
|
|
389
|
+
Close,
|
|
390
|
+
CloseModal,
|
|
391
|
+
ModalHeader,
|
|
392
|
+
Modal,
|
|
393
|
+
BmAgentSearch,
|
|
394
|
+
BmAgentName,
|
|
395
|
+
BmAgentPill,
|
|
396
|
+
BmAgentButton,
|
|
397
|
+
BmPreviousAgentWrapper,
|
|
398
|
+
BmPreviousAgentTitle,
|
|
399
|
+
BmPreviousAgentContent,
|
|
400
|
+
BmPreviousAgentIcon,
|
|
401
|
+
BmPreviousAgent,
|
|
402
|
+
BmPreviousAgentName,
|
|
403
|
+
BmPreviousAgentMessage,
|
|
404
|
+
ModalBody,
|
|
405
|
+
ModalFooter,
|
|
406
|
+
BmFooterButtons,
|
|
407
|
+
BmReportsButton,
|
|
408
|
+
BmReportsBody,
|
|
409
|
+
BmReportsHeader,
|
|
410
|
+
CloseNote,
|
|
411
|
+
BmReportsHeaderText,
|
|
412
|
+
BmReportsTitle,
|
|
413
|
+
BmCard,
|
|
414
|
+
CardTitleWrapper,
|
|
415
|
+
CardTitleText,
|
|
416
|
+
CardTitle,
|
|
417
|
+
BmCardBody,
|
|
418
|
+
BmCardBodyImg,
|
|
419
|
+
BmCardBodyText,
|
|
420
|
+
BmCardFooter,
|
|
421
|
+
BmCardFooterText,
|
|
422
|
+
BmCardDetails,
|
|
423
|
+
BmChart,
|
|
424
|
+
BmChartHeader,
|
|
425
|
+
BmChartTitleText,
|
|
426
|
+
BmChartDetails,
|
|
427
|
+
BmChartBody,
|
|
428
|
+
BmChartBodyText,
|
|
429
|
+
BmChartBodyDetails,
|
|
430
|
+
BmChartHeading,
|
|
431
|
+
BmMainChartWrapper,
|
|
432
|
+
BmMainChartContent,
|
|
433
|
+
BmMainChart,
|
|
434
|
+
BmOverviewCards,
|
|
435
|
+
BmOverviewCharts,
|
|
436
|
+
BmReportsInfoHeader,
|
|
437
|
+
BmReportsButtons,
|
|
438
|
+
BmListHeader,
|
|
439
|
+
BmRowLabel,
|
|
440
|
+
BmSegmentCard,
|
|
441
|
+
BmSegmentSelector,
|
|
442
|
+
BmSegment,
|
|
443
|
+
BmSegmentCheckBox,
|
|
444
|
+
BmContentTitle,
|
|
445
|
+
BmContent,
|
|
446
|
+
BmFooterLeft,
|
|
447
|
+
BmFooterRight,
|
|
448
|
+
BmContentFooter,
|
|
449
|
+
BmInfoNote,
|
|
450
|
+
BmSegmentCompleteContent,
|
|
451
|
+
BmSegmentCompleteIcon,
|
|
452
|
+
BmSegmentCreateContent,
|
|
453
|
+
BmProgressBar,
|
|
454
|
+
BmCheckbox,
|
|
455
|
+
BmAddNote,
|
|
456
|
+
BmNoteInfo,
|
|
457
|
+
BmNote,
|
|
458
|
+
BmNoteFooter,
|
|
459
|
+
BmNoteDetails,
|
|
460
|
+
CopyToClipBoard,
|
|
461
|
+
BmAddLabel,
|
|
462
|
+
BmLabelInfo,
|
|
463
|
+
BmLabels,
|
|
464
|
+
BmColorLabel,
|
|
465
|
+
BmColorLabelPicker,
|
|
466
|
+
BmAccordicon,
|
|
467
|
+
BmRouteLink,
|
|
468
|
+
};
|