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,1285 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "BmAccordicon", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _Accordicon.BmAccordicon;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "BmAddLabel", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function get() {
|
|
15
|
+
return _labelsInfo.BmAddLabel;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
Object.defineProperty(exports, "BmAddNote", {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: function get() {
|
|
21
|
+
return _notesInfo.BmAddNote;
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
Object.defineProperty(exports, "BmAgentButton", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function get() {
|
|
27
|
+
return _modalBody.BmAgentButton;
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
Object.defineProperty(exports, "BmAgentName", {
|
|
31
|
+
enumerable: true,
|
|
32
|
+
get: function get() {
|
|
33
|
+
return _modalBody.BmAgentName;
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
Object.defineProperty(exports, "BmAgentPill", {
|
|
37
|
+
enumerable: true,
|
|
38
|
+
get: function get() {
|
|
39
|
+
return _modalBody.BmAgentPill;
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
Object.defineProperty(exports, "BmAgentSearch", {
|
|
43
|
+
enumerable: true,
|
|
44
|
+
get: function get() {
|
|
45
|
+
return _modalBody.BmAgentSearch;
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
Object.defineProperty(exports, "BmAlertIcon", {
|
|
49
|
+
enumerable: true,
|
|
50
|
+
get: function get() {
|
|
51
|
+
return _buttonAlertIcons.BmAlertIcon;
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
Object.defineProperty(exports, "BmAttachment", {
|
|
55
|
+
enumerable: true,
|
|
56
|
+
get: function get() {
|
|
57
|
+
return _chatInput.BmAttachment;
|
|
58
|
+
}
|
|
59
|
+
});
|
|
60
|
+
Object.defineProperty(exports, "BmAvatar", {
|
|
61
|
+
enumerable: true,
|
|
62
|
+
get: function get() {
|
|
63
|
+
return _avatars.BmAvatar;
|
|
64
|
+
}
|
|
65
|
+
});
|
|
66
|
+
Object.defineProperty(exports, "BmAvatarIcon", {
|
|
67
|
+
enumerable: true,
|
|
68
|
+
get: function get() {
|
|
69
|
+
return _iconStyles.BmAvatarIcon;
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
Object.defineProperty(exports, "BmBtnIcon", {
|
|
73
|
+
enumerable: true,
|
|
74
|
+
get: function get() {
|
|
75
|
+
return _buttonIconsOnly.BmBtnIcon;
|
|
76
|
+
}
|
|
77
|
+
});
|
|
78
|
+
Object.defineProperty(exports, "BmBtnTag", {
|
|
79
|
+
enumerable: true,
|
|
80
|
+
get: function get() {
|
|
81
|
+
return _customerInfo.BmBtnTag;
|
|
82
|
+
}
|
|
83
|
+
});
|
|
84
|
+
Object.defineProperty(exports, "BmButton", {
|
|
85
|
+
enumerable: true,
|
|
86
|
+
get: function get() {
|
|
87
|
+
return _buttons.BmButton;
|
|
88
|
+
}
|
|
89
|
+
});
|
|
90
|
+
Object.defineProperty(exports, "BmButtonDropDown", {
|
|
91
|
+
enumerable: true,
|
|
92
|
+
get: function get() {
|
|
93
|
+
return _dropdownButton.BmButtonDropDown;
|
|
94
|
+
}
|
|
95
|
+
});
|
|
96
|
+
Object.defineProperty(exports, "BmButtonDropdownItem", {
|
|
97
|
+
enumerable: true,
|
|
98
|
+
get: function get() {
|
|
99
|
+
return _dropdownItems.BmButtonDropdownItem;
|
|
100
|
+
}
|
|
101
|
+
});
|
|
102
|
+
Object.defineProperty(exports, "BmButtonIcon", {
|
|
103
|
+
enumerable: true,
|
|
104
|
+
get: function get() {
|
|
105
|
+
return _iconStyles.BmButtonIcon;
|
|
106
|
+
}
|
|
107
|
+
});
|
|
108
|
+
Object.defineProperty(exports, "BmCard", {
|
|
109
|
+
enumerable: true,
|
|
110
|
+
get: function get() {
|
|
111
|
+
return _cards.BmCard;
|
|
112
|
+
}
|
|
113
|
+
});
|
|
114
|
+
Object.defineProperty(exports, "BmCardBody", {
|
|
115
|
+
enumerable: true,
|
|
116
|
+
get: function get() {
|
|
117
|
+
return _cards.BmCardBody;
|
|
118
|
+
}
|
|
119
|
+
});
|
|
120
|
+
Object.defineProperty(exports, "BmCardBodyImg", {
|
|
121
|
+
enumerable: true,
|
|
122
|
+
get: function get() {
|
|
123
|
+
return _cards.BmCardBodyImg;
|
|
124
|
+
}
|
|
125
|
+
});
|
|
126
|
+
Object.defineProperty(exports, "BmCardBodyText", {
|
|
127
|
+
enumerable: true,
|
|
128
|
+
get: function get() {
|
|
129
|
+
return _cards.BmCardBodyText;
|
|
130
|
+
}
|
|
131
|
+
});
|
|
132
|
+
Object.defineProperty(exports, "BmCardDetails", {
|
|
133
|
+
enumerable: true,
|
|
134
|
+
get: function get() {
|
|
135
|
+
return _cards.BmCardDetails;
|
|
136
|
+
}
|
|
137
|
+
});
|
|
138
|
+
Object.defineProperty(exports, "BmCardFooter", {
|
|
139
|
+
enumerable: true,
|
|
140
|
+
get: function get() {
|
|
141
|
+
return _cards.BmCardFooter;
|
|
142
|
+
}
|
|
143
|
+
});
|
|
144
|
+
Object.defineProperty(exports, "BmCardFooterText", {
|
|
145
|
+
enumerable: true,
|
|
146
|
+
get: function get() {
|
|
147
|
+
return _cards.BmCardFooterText;
|
|
148
|
+
}
|
|
149
|
+
});
|
|
150
|
+
Object.defineProperty(exports, "BmChart", {
|
|
151
|
+
enumerable: true,
|
|
152
|
+
get: function get() {
|
|
153
|
+
return _charts.BmChart;
|
|
154
|
+
}
|
|
155
|
+
});
|
|
156
|
+
Object.defineProperty(exports, "BmChartBody", {
|
|
157
|
+
enumerable: true,
|
|
158
|
+
get: function get() {
|
|
159
|
+
return _charts.BmChartBody;
|
|
160
|
+
}
|
|
161
|
+
});
|
|
162
|
+
Object.defineProperty(exports, "BmChartBodyDetails", {
|
|
163
|
+
enumerable: true,
|
|
164
|
+
get: function get() {
|
|
165
|
+
return _charts.BmChartBodyDetails;
|
|
166
|
+
}
|
|
167
|
+
});
|
|
168
|
+
Object.defineProperty(exports, "BmChartBodyText", {
|
|
169
|
+
enumerable: true,
|
|
170
|
+
get: function get() {
|
|
171
|
+
return _charts.BmChartBodyText;
|
|
172
|
+
}
|
|
173
|
+
});
|
|
174
|
+
Object.defineProperty(exports, "BmChartDetails", {
|
|
175
|
+
enumerable: true,
|
|
176
|
+
get: function get() {
|
|
177
|
+
return _charts.BmChartDetails;
|
|
178
|
+
}
|
|
179
|
+
});
|
|
180
|
+
Object.defineProperty(exports, "BmChartHeader", {
|
|
181
|
+
enumerable: true,
|
|
182
|
+
get: function get() {
|
|
183
|
+
return _charts.BmChartHeader;
|
|
184
|
+
}
|
|
185
|
+
});
|
|
186
|
+
Object.defineProperty(exports, "BmChartHeading", {
|
|
187
|
+
enumerable: true,
|
|
188
|
+
get: function get() {
|
|
189
|
+
return _charts.BmChartHeading;
|
|
190
|
+
}
|
|
191
|
+
});
|
|
192
|
+
Object.defineProperty(exports, "BmChartTitleText", {
|
|
193
|
+
enumerable: true,
|
|
194
|
+
get: function get() {
|
|
195
|
+
return _charts.BmChartTitleText;
|
|
196
|
+
}
|
|
197
|
+
});
|
|
198
|
+
Object.defineProperty(exports, "BmChat", {
|
|
199
|
+
enumerable: true,
|
|
200
|
+
get: function get() {
|
|
201
|
+
return _chatwrapper.BmChat;
|
|
202
|
+
}
|
|
203
|
+
});
|
|
204
|
+
Object.defineProperty(exports, "BmChatHeader", {
|
|
205
|
+
enumerable: true,
|
|
206
|
+
get: function get() {
|
|
207
|
+
return _chatHeader.BmChatHeader;
|
|
208
|
+
}
|
|
209
|
+
});
|
|
210
|
+
Object.defineProperty(exports, "BmChatHeaderInfoIcon", {
|
|
211
|
+
enumerable: true,
|
|
212
|
+
get: function get() {
|
|
213
|
+
return _chatHeader.BmChatHeaderInfoIcon;
|
|
214
|
+
}
|
|
215
|
+
});
|
|
216
|
+
Object.defineProperty(exports, "BmChatHeaderText", {
|
|
217
|
+
enumerable: true,
|
|
218
|
+
get: function get() {
|
|
219
|
+
return _chatHeader.BmChatHeaderText;
|
|
220
|
+
}
|
|
221
|
+
});
|
|
222
|
+
Object.defineProperty(exports, "BmChatHeaderTime", {
|
|
223
|
+
enumerable: true,
|
|
224
|
+
get: function get() {
|
|
225
|
+
return _chatHeader.BmChatHeaderTime;
|
|
226
|
+
}
|
|
227
|
+
});
|
|
228
|
+
Object.defineProperty(exports, "BmChatHeaderWrapper", {
|
|
229
|
+
enumerable: true,
|
|
230
|
+
get: function get() {
|
|
231
|
+
return _chatHeader.BmChatHeaderWrapper;
|
|
232
|
+
}
|
|
233
|
+
});
|
|
234
|
+
Object.defineProperty(exports, "BmChatInfoWrapper", {
|
|
235
|
+
enumerable: true,
|
|
236
|
+
get: function get() {
|
|
237
|
+
return _wrapper.BmChatInfoWrapper;
|
|
238
|
+
}
|
|
239
|
+
});
|
|
240
|
+
Object.defineProperty(exports, "BmChatMenu", {
|
|
241
|
+
enumerable: true,
|
|
242
|
+
get: function get() {
|
|
243
|
+
return _chatwrapper.BmChatMenu;
|
|
244
|
+
}
|
|
245
|
+
});
|
|
246
|
+
Object.defineProperty(exports, "BmChatMenuWrapper", {
|
|
247
|
+
enumerable: true,
|
|
248
|
+
get: function get() {
|
|
249
|
+
return _wrapper.BmChatMenuWrapper;
|
|
250
|
+
}
|
|
251
|
+
});
|
|
252
|
+
Object.defineProperty(exports, "BmChatText", {
|
|
253
|
+
enumerable: true,
|
|
254
|
+
get: function get() {
|
|
255
|
+
return _chat.BmChatText;
|
|
256
|
+
}
|
|
257
|
+
});
|
|
258
|
+
Object.defineProperty(exports, "BmChatWrapper", {
|
|
259
|
+
enumerable: true,
|
|
260
|
+
get: function get() {
|
|
261
|
+
return _chat.BmChatWrapper;
|
|
262
|
+
}
|
|
263
|
+
});
|
|
264
|
+
Object.defineProperty(exports, "BmChatbot", {
|
|
265
|
+
enumerable: true,
|
|
266
|
+
get: function get() {
|
|
267
|
+
return _iconStyles.BmChatbot;
|
|
268
|
+
}
|
|
269
|
+
});
|
|
270
|
+
Object.defineProperty(exports, "BmChatbotIcon", {
|
|
271
|
+
enumerable: true,
|
|
272
|
+
get: function get() {
|
|
273
|
+
return _iconStyles.BmChatbotIcon;
|
|
274
|
+
}
|
|
275
|
+
});
|
|
276
|
+
Object.defineProperty(exports, "BmCheckbox", {
|
|
277
|
+
enumerable: true,
|
|
278
|
+
get: function get() {
|
|
279
|
+
return _checkbox.BmCheckbox;
|
|
280
|
+
}
|
|
281
|
+
});
|
|
282
|
+
Object.defineProperty(exports, "BmCheckboxToggler", {
|
|
283
|
+
enumerable: true,
|
|
284
|
+
get: function get() {
|
|
285
|
+
return _checkboxToggler.BmCheckboxToggler;
|
|
286
|
+
}
|
|
287
|
+
});
|
|
288
|
+
Object.defineProperty(exports, "BmColorLabel", {
|
|
289
|
+
enumerable: true,
|
|
290
|
+
get: function get() {
|
|
291
|
+
return _labelsInfo.BmColorLabel;
|
|
292
|
+
}
|
|
293
|
+
});
|
|
294
|
+
Object.defineProperty(exports, "BmColorLabelPicker", {
|
|
295
|
+
enumerable: true,
|
|
296
|
+
get: function get() {
|
|
297
|
+
return _labelsInfo.BmColorLabelPicker;
|
|
298
|
+
}
|
|
299
|
+
});
|
|
300
|
+
Object.defineProperty(exports, "BmContact", {
|
|
301
|
+
enumerable: true,
|
|
302
|
+
get: function get() {
|
|
303
|
+
return _contacts.BmContact;
|
|
304
|
+
}
|
|
305
|
+
});
|
|
306
|
+
Object.defineProperty(exports, "BmContactDetails", {
|
|
307
|
+
enumerable: true,
|
|
308
|
+
get: function get() {
|
|
309
|
+
return _contacts.BmContactDetails;
|
|
310
|
+
}
|
|
311
|
+
});
|
|
312
|
+
Object.defineProperty(exports, "BmContactIcon", {
|
|
313
|
+
enumerable: true,
|
|
314
|
+
get: function get() {
|
|
315
|
+
return _contacts.BmContactIcon;
|
|
316
|
+
}
|
|
317
|
+
});
|
|
318
|
+
Object.defineProperty(exports, "BmContactItem", {
|
|
319
|
+
enumerable: true,
|
|
320
|
+
get: function get() {
|
|
321
|
+
return _contacts.BmContactItem;
|
|
322
|
+
}
|
|
323
|
+
});
|
|
324
|
+
Object.defineProperty(exports, "BmContactMessage", {
|
|
325
|
+
enumerable: true,
|
|
326
|
+
get: function get() {
|
|
327
|
+
return _contacts.BmContactMessage;
|
|
328
|
+
}
|
|
329
|
+
});
|
|
330
|
+
Object.defineProperty(exports, "BmContactName", {
|
|
331
|
+
enumerable: true,
|
|
332
|
+
get: function get() {
|
|
333
|
+
return _contacts.BmContactName;
|
|
334
|
+
}
|
|
335
|
+
});
|
|
336
|
+
Object.defineProperty(exports, "BmContactSideBar", {
|
|
337
|
+
enumerable: true,
|
|
338
|
+
get: function get() {
|
|
339
|
+
return _contacts.BmContactSideBar;
|
|
340
|
+
}
|
|
341
|
+
});
|
|
342
|
+
Object.defineProperty(exports, "BmContactText", {
|
|
343
|
+
enumerable: true,
|
|
344
|
+
get: function get() {
|
|
345
|
+
return _contacts.BmContactText;
|
|
346
|
+
}
|
|
347
|
+
});
|
|
348
|
+
Object.defineProperty(exports, "BmContactTime", {
|
|
349
|
+
enumerable: true,
|
|
350
|
+
get: function get() {
|
|
351
|
+
return _contacts.BmContactTime;
|
|
352
|
+
}
|
|
353
|
+
});
|
|
354
|
+
Object.defineProperty(exports, "BmContent", {
|
|
355
|
+
enumerable: true,
|
|
356
|
+
get: function get() {
|
|
357
|
+
return _index.BmContent;
|
|
358
|
+
}
|
|
359
|
+
});
|
|
360
|
+
Object.defineProperty(exports, "BmContentFooter", {
|
|
361
|
+
enumerable: true,
|
|
362
|
+
get: function get() {
|
|
363
|
+
return _index2.BmContentFooter;
|
|
364
|
+
}
|
|
365
|
+
});
|
|
366
|
+
Object.defineProperty(exports, "BmContentTitle", {
|
|
367
|
+
enumerable: true,
|
|
368
|
+
get: function get() {
|
|
369
|
+
return _index2.BmContentTitle;
|
|
370
|
+
}
|
|
371
|
+
});
|
|
372
|
+
Object.defineProperty(exports, "BmCustomer", {
|
|
373
|
+
enumerable: true,
|
|
374
|
+
get: function get() {
|
|
375
|
+
return _customerInfo.BmCustomer;
|
|
376
|
+
}
|
|
377
|
+
});
|
|
378
|
+
Object.defineProperty(exports, "BmCustomerBar", {
|
|
379
|
+
enumerable: true,
|
|
380
|
+
get: function get() {
|
|
381
|
+
return _customerInfoBar.BmCustomerBar;
|
|
382
|
+
}
|
|
383
|
+
});
|
|
384
|
+
Object.defineProperty(exports, "BmCustomerDetails", {
|
|
385
|
+
enumerable: true,
|
|
386
|
+
get: function get() {
|
|
387
|
+
return _customerInfo.BmCustomerDetails;
|
|
388
|
+
}
|
|
389
|
+
});
|
|
390
|
+
Object.defineProperty(exports, "BmCustomerIcons", {
|
|
391
|
+
enumerable: true,
|
|
392
|
+
get: function get() {
|
|
393
|
+
return _customerInfo.BmCustomerIcons;
|
|
394
|
+
}
|
|
395
|
+
});
|
|
396
|
+
Object.defineProperty(exports, "BmCustomerInfoAccordicon", {
|
|
397
|
+
enumerable: true,
|
|
398
|
+
get: function get() {
|
|
399
|
+
return _customerInfoBar.BmCustomerInfoAccordicon;
|
|
400
|
+
}
|
|
401
|
+
});
|
|
402
|
+
Object.defineProperty(exports, "BmCustomerInfoHeader", {
|
|
403
|
+
enumerable: true,
|
|
404
|
+
get: function get() {
|
|
405
|
+
return _customerInfo.BmCustomerInfoHeader;
|
|
406
|
+
}
|
|
407
|
+
});
|
|
408
|
+
Object.defineProperty(exports, "BmCustomerInfoName", {
|
|
409
|
+
enumerable: true,
|
|
410
|
+
get: function get() {
|
|
411
|
+
return _customerInfo.BmCustomerInfoName;
|
|
412
|
+
}
|
|
413
|
+
});
|
|
414
|
+
Object.defineProperty(exports, "BmCustomerInfoTab", {
|
|
415
|
+
enumerable: true,
|
|
416
|
+
get: function get() {
|
|
417
|
+
return _customerInfo.BmCustomerInfoTab;
|
|
418
|
+
}
|
|
419
|
+
});
|
|
420
|
+
Object.defineProperty(exports, "BmCustomizedDropdown", {
|
|
421
|
+
enumerable: true,
|
|
422
|
+
get: function get() {
|
|
423
|
+
return _dropdownItems.BmCustomizedDropdown;
|
|
424
|
+
}
|
|
425
|
+
});
|
|
426
|
+
Object.defineProperty(exports, "BmDisplayTime", {
|
|
427
|
+
enumerable: true,
|
|
428
|
+
get: function get() {
|
|
429
|
+
return _chat.BmDisplayTime;
|
|
430
|
+
}
|
|
431
|
+
});
|
|
432
|
+
Object.defineProperty(exports, "BmDropDownItem", {
|
|
433
|
+
enumerable: true,
|
|
434
|
+
get: function get() {
|
|
435
|
+
return _dropdownItems.BmDropDownItem;
|
|
436
|
+
}
|
|
437
|
+
});
|
|
438
|
+
Object.defineProperty(exports, "BmDropDownMenu", {
|
|
439
|
+
enumerable: true,
|
|
440
|
+
get: function get() {
|
|
441
|
+
return _dropdownItems.BmDropDownMenu;
|
|
442
|
+
}
|
|
443
|
+
});
|
|
444
|
+
Object.defineProperty(exports, "BmDropdown", {
|
|
445
|
+
enumerable: true,
|
|
446
|
+
get: function get() {
|
|
447
|
+
return _dropdown.BmDropdown;
|
|
448
|
+
}
|
|
449
|
+
});
|
|
450
|
+
Object.defineProperty(exports, "BmDropdownIcon", {
|
|
451
|
+
enumerable: true,
|
|
452
|
+
get: function get() {
|
|
453
|
+
return _iconStyles.BmDropdownIcon;
|
|
454
|
+
}
|
|
455
|
+
});
|
|
456
|
+
Object.defineProperty(exports, "BmDropdownInfo", {
|
|
457
|
+
enumerable: true,
|
|
458
|
+
get: function get() {
|
|
459
|
+
return _infoAccordion.BmDropdownInfo;
|
|
460
|
+
}
|
|
461
|
+
});
|
|
462
|
+
Object.defineProperty(exports, "BmDropupIcon", {
|
|
463
|
+
enumerable: true,
|
|
464
|
+
get: function get() {
|
|
465
|
+
return _iconStyles.BmDropupIcon;
|
|
466
|
+
}
|
|
467
|
+
});
|
|
468
|
+
Object.defineProperty(exports, "BmEmojiIcon", {
|
|
469
|
+
enumerable: true,
|
|
470
|
+
get: function get() {
|
|
471
|
+
return _iconStyles.BmEmojiIcon;
|
|
472
|
+
}
|
|
473
|
+
});
|
|
474
|
+
Object.defineProperty(exports, "BmErrorIcon", {
|
|
475
|
+
enumerable: true,
|
|
476
|
+
get: function get() {
|
|
477
|
+
return _iconStyles.BmErrorIcon;
|
|
478
|
+
}
|
|
479
|
+
});
|
|
480
|
+
Object.defineProperty(exports, "BmFileChat", {
|
|
481
|
+
enumerable: true,
|
|
482
|
+
get: function get() {
|
|
483
|
+
return _chat.BmFileChat;
|
|
484
|
+
}
|
|
485
|
+
});
|
|
486
|
+
Object.defineProperty(exports, "BmFileText", {
|
|
487
|
+
enumerable: true,
|
|
488
|
+
get: function get() {
|
|
489
|
+
return _chat.BmFileText;
|
|
490
|
+
}
|
|
491
|
+
});
|
|
492
|
+
Object.defineProperty(exports, "BmFileWrapper", {
|
|
493
|
+
enumerable: true,
|
|
494
|
+
get: function get() {
|
|
495
|
+
return _chat.BmFileWrapper;
|
|
496
|
+
}
|
|
497
|
+
});
|
|
498
|
+
Object.defineProperty(exports, "BmFooterButtons", {
|
|
499
|
+
enumerable: true,
|
|
500
|
+
get: function get() {
|
|
501
|
+
return _noteModalFooter.BmFooterButtons;
|
|
502
|
+
}
|
|
503
|
+
});
|
|
504
|
+
Object.defineProperty(exports, "BmFooterLeft", {
|
|
505
|
+
enumerable: true,
|
|
506
|
+
get: function get() {
|
|
507
|
+
return _index2.BmFooterLeft;
|
|
508
|
+
}
|
|
509
|
+
});
|
|
510
|
+
Object.defineProperty(exports, "BmFooterRight", {
|
|
511
|
+
enumerable: true,
|
|
512
|
+
get: function get() {
|
|
513
|
+
return _index2.BmFooterRight;
|
|
514
|
+
}
|
|
515
|
+
});
|
|
516
|
+
Object.defineProperty(exports, "BmIcon", {
|
|
517
|
+
enumerable: true,
|
|
518
|
+
get: function get() {
|
|
519
|
+
return _customerInfo.BmIcon;
|
|
520
|
+
}
|
|
521
|
+
});
|
|
522
|
+
Object.defineProperty(exports, "BmIcons", {
|
|
523
|
+
enumerable: true,
|
|
524
|
+
get: function get() {
|
|
525
|
+
return _iconStyles.BmIcons;
|
|
526
|
+
}
|
|
527
|
+
});
|
|
528
|
+
Object.defineProperty(exports, "BmImage", {
|
|
529
|
+
enumerable: true,
|
|
530
|
+
get: function get() {
|
|
531
|
+
return _chat.BmImage;
|
|
532
|
+
}
|
|
533
|
+
});
|
|
534
|
+
Object.defineProperty(exports, "BmImageChat", {
|
|
535
|
+
enumerable: true,
|
|
536
|
+
get: function get() {
|
|
537
|
+
return _chat.BmImageChat;
|
|
538
|
+
}
|
|
539
|
+
});
|
|
540
|
+
Object.defineProperty(exports, "BmImageFileName", {
|
|
541
|
+
enumerable: true,
|
|
542
|
+
get: function get() {
|
|
543
|
+
return _chat.BmImageFileName;
|
|
544
|
+
}
|
|
545
|
+
});
|
|
546
|
+
Object.defineProperty(exports, "BmImageWrapper", {
|
|
547
|
+
enumerable: true,
|
|
548
|
+
get: function get() {
|
|
549
|
+
return _chat.BmImageWrapper;
|
|
550
|
+
}
|
|
551
|
+
});
|
|
552
|
+
Object.defineProperty(exports, "BmInfoAccordiconMenu", {
|
|
553
|
+
enumerable: true,
|
|
554
|
+
get: function get() {
|
|
555
|
+
return _infoAccordion.BmInfoAccordiconMenu;
|
|
556
|
+
}
|
|
557
|
+
});
|
|
558
|
+
Object.defineProperty(exports, "BmInfoContent", {
|
|
559
|
+
enumerable: true,
|
|
560
|
+
get: function get() {
|
|
561
|
+
return _infoAccordion.BmInfoContent;
|
|
562
|
+
}
|
|
563
|
+
});
|
|
564
|
+
Object.defineProperty(exports, "BmInfoContentItem", {
|
|
565
|
+
enumerable: true,
|
|
566
|
+
get: function get() {
|
|
567
|
+
return _infoAccordion.BmInfoContentItem;
|
|
568
|
+
}
|
|
569
|
+
});
|
|
570
|
+
Object.defineProperty(exports, "BmInfoContentLabel", {
|
|
571
|
+
enumerable: true,
|
|
572
|
+
get: function get() {
|
|
573
|
+
return _infoAccordion.BmInfoContentLabel;
|
|
574
|
+
}
|
|
575
|
+
});
|
|
576
|
+
Object.defineProperty(exports, "BmInfoContentValue", {
|
|
577
|
+
enumerable: true,
|
|
578
|
+
get: function get() {
|
|
579
|
+
return _infoAccordion.BmInfoContentValue;
|
|
580
|
+
}
|
|
581
|
+
});
|
|
582
|
+
Object.defineProperty(exports, "BmInfoHeader", {
|
|
583
|
+
enumerable: true,
|
|
584
|
+
get: function get() {
|
|
585
|
+
return _infoAccordion.BmInfoHeader;
|
|
586
|
+
}
|
|
587
|
+
});
|
|
588
|
+
Object.defineProperty(exports, "BmInfoHeaderText", {
|
|
589
|
+
enumerable: true,
|
|
590
|
+
get: function get() {
|
|
591
|
+
return _infoAccordion.BmInfoHeaderText;
|
|
592
|
+
}
|
|
593
|
+
});
|
|
594
|
+
Object.defineProperty(exports, "BmInfoHeaderWrapper", {
|
|
595
|
+
enumerable: true,
|
|
596
|
+
get: function get() {
|
|
597
|
+
return _infoAccordion.BmInfoHeaderWrapper;
|
|
598
|
+
}
|
|
599
|
+
});
|
|
600
|
+
Object.defineProperty(exports, "BmInfoNote", {
|
|
601
|
+
enumerable: true,
|
|
602
|
+
get: function get() {
|
|
603
|
+
return _infoNote.BmInfoNote;
|
|
604
|
+
}
|
|
605
|
+
});
|
|
606
|
+
Object.defineProperty(exports, "BmInfoTabWrapper", {
|
|
607
|
+
enumerable: true,
|
|
608
|
+
get: function get() {
|
|
609
|
+
return _customerInfo.BmInfoTabWrapper;
|
|
610
|
+
}
|
|
611
|
+
});
|
|
612
|
+
Object.defineProperty(exports, "BmInformation", {
|
|
613
|
+
enumerable: true,
|
|
614
|
+
get: function get() {
|
|
615
|
+
return _infoAccordion.BmInformation;
|
|
616
|
+
}
|
|
617
|
+
});
|
|
618
|
+
Object.defineProperty(exports, "BmInput", {
|
|
619
|
+
enumerable: true,
|
|
620
|
+
get: function get() {
|
|
621
|
+
return _input.BmInput;
|
|
622
|
+
}
|
|
623
|
+
});
|
|
624
|
+
Object.defineProperty(exports, "BmLabelInfo", {
|
|
625
|
+
enumerable: true,
|
|
626
|
+
get: function get() {
|
|
627
|
+
return _labelsInfo.BmLabelInfo;
|
|
628
|
+
}
|
|
629
|
+
});
|
|
630
|
+
Object.defineProperty(exports, "BmLabels", {
|
|
631
|
+
enumerable: true,
|
|
632
|
+
get: function get() {
|
|
633
|
+
return _labelsInfo.BmLabels;
|
|
634
|
+
}
|
|
635
|
+
});
|
|
636
|
+
Object.defineProperty(exports, "BmLeftTabIcon", {
|
|
637
|
+
enumerable: true,
|
|
638
|
+
get: function get() {
|
|
639
|
+
return _tabs.BmLeftTabIcon;
|
|
640
|
+
}
|
|
641
|
+
});
|
|
642
|
+
Object.defineProperty(exports, "BmListHeader", {
|
|
643
|
+
enumerable: true,
|
|
644
|
+
get: function get() {
|
|
645
|
+
return _listheader.BmListHeader;
|
|
646
|
+
}
|
|
647
|
+
});
|
|
648
|
+
Object.defineProperty(exports, "BmLoader", {
|
|
649
|
+
enumerable: true,
|
|
650
|
+
get: function get() {
|
|
651
|
+
return _loaders.BmLoader;
|
|
652
|
+
}
|
|
653
|
+
});
|
|
654
|
+
Object.defineProperty(exports, "BmLogo", {
|
|
655
|
+
enumerable: true,
|
|
656
|
+
get: function get() {
|
|
657
|
+
return _logo.BmLogo;
|
|
658
|
+
}
|
|
659
|
+
});
|
|
660
|
+
Object.defineProperty(exports, "BmMainChart", {
|
|
661
|
+
enumerable: true,
|
|
662
|
+
get: function get() {
|
|
663
|
+
return _charts.BmMainChart;
|
|
664
|
+
}
|
|
665
|
+
});
|
|
666
|
+
Object.defineProperty(exports, "BmMainChartContent", {
|
|
667
|
+
enumerable: true,
|
|
668
|
+
get: function get() {
|
|
669
|
+
return _charts.BmMainChartContent;
|
|
670
|
+
}
|
|
671
|
+
});
|
|
672
|
+
Object.defineProperty(exports, "BmMainChartWrapper", {
|
|
673
|
+
enumerable: true,
|
|
674
|
+
get: function get() {
|
|
675
|
+
return _charts.BmMainChartWrapper;
|
|
676
|
+
}
|
|
677
|
+
});
|
|
678
|
+
Object.defineProperty(exports, "BmMessage", {
|
|
679
|
+
enumerable: true,
|
|
680
|
+
get: function get() {
|
|
681
|
+
return _chatInput.BmMessage;
|
|
682
|
+
}
|
|
683
|
+
});
|
|
684
|
+
Object.defineProperty(exports, "BmMessageContact", {
|
|
685
|
+
enumerable: true,
|
|
686
|
+
get: function get() {
|
|
687
|
+
return _contacts.BmMessageContact;
|
|
688
|
+
}
|
|
689
|
+
});
|
|
690
|
+
Object.defineProperty(exports, "BmMessageTab", {
|
|
691
|
+
enumerable: true,
|
|
692
|
+
get: function get() {
|
|
693
|
+
return _chatInput.BmMessageTab;
|
|
694
|
+
}
|
|
695
|
+
});
|
|
696
|
+
Object.defineProperty(exports, "BmMessageTabInput", {
|
|
697
|
+
enumerable: true,
|
|
698
|
+
get: function get() {
|
|
699
|
+
return _chatInput.BmMessageTabInput;
|
|
700
|
+
}
|
|
701
|
+
});
|
|
702
|
+
Object.defineProperty(exports, "BmMessageText", {
|
|
703
|
+
enumerable: true,
|
|
704
|
+
get: function get() {
|
|
705
|
+
return _contacts.BmMessageText;
|
|
706
|
+
}
|
|
707
|
+
});
|
|
708
|
+
Object.defineProperty(exports, "BmMoreInfo", {
|
|
709
|
+
enumerable: true,
|
|
710
|
+
get: function get() {
|
|
711
|
+
return _customerInfo.BmMoreInfo;
|
|
712
|
+
}
|
|
713
|
+
});
|
|
714
|
+
Object.defineProperty(exports, "BmNavBarProfile", {
|
|
715
|
+
enumerable: true,
|
|
716
|
+
get: function get() {
|
|
717
|
+
return _navbar.BmNavBarProfile;
|
|
718
|
+
}
|
|
719
|
+
});
|
|
720
|
+
Object.defineProperty(exports, "BmNavbar", {
|
|
721
|
+
enumerable: true,
|
|
722
|
+
get: function get() {
|
|
723
|
+
return _navbar.BmNavbar;
|
|
724
|
+
}
|
|
725
|
+
});
|
|
726
|
+
Object.defineProperty(exports, "BmNavbarItems", {
|
|
727
|
+
enumerable: true,
|
|
728
|
+
get: function get() {
|
|
729
|
+
return _navbar.BmNavbarItems;
|
|
730
|
+
}
|
|
731
|
+
});
|
|
732
|
+
Object.defineProperty(exports, "BmNavbarLogo", {
|
|
733
|
+
enumerable: true,
|
|
734
|
+
get: function get() {
|
|
735
|
+
return _navbar.BmNavbarLogo;
|
|
736
|
+
}
|
|
737
|
+
});
|
|
738
|
+
Object.defineProperty(exports, "BmNavbarSearch", {
|
|
739
|
+
enumerable: true,
|
|
740
|
+
get: function get() {
|
|
741
|
+
return _navbar.BmNavbarSearch;
|
|
742
|
+
}
|
|
743
|
+
});
|
|
744
|
+
Object.defineProperty(exports, "BmNote", {
|
|
745
|
+
enumerable: true,
|
|
746
|
+
get: function get() {
|
|
747
|
+
return _notesInfo.BmNote;
|
|
748
|
+
}
|
|
749
|
+
});
|
|
750
|
+
Object.defineProperty(exports, "BmNoteDetails", {
|
|
751
|
+
enumerable: true,
|
|
752
|
+
get: function get() {
|
|
753
|
+
return _notesInfo.BmNoteDetails;
|
|
754
|
+
}
|
|
755
|
+
});
|
|
756
|
+
Object.defineProperty(exports, "BmNoteFooter", {
|
|
757
|
+
enumerable: true,
|
|
758
|
+
get: function get() {
|
|
759
|
+
return _notesInfo.BmNoteFooter;
|
|
760
|
+
}
|
|
761
|
+
});
|
|
762
|
+
Object.defineProperty(exports, "BmNoteInfo", {
|
|
763
|
+
enumerable: true,
|
|
764
|
+
get: function get() {
|
|
765
|
+
return _notesInfo.BmNoteInfo;
|
|
766
|
+
}
|
|
767
|
+
});
|
|
768
|
+
Object.defineProperty(exports, "BmOverviewCards", {
|
|
769
|
+
enumerable: true,
|
|
770
|
+
get: function get() {
|
|
771
|
+
return _reportsBody.BmOverviewCards;
|
|
772
|
+
}
|
|
773
|
+
});
|
|
774
|
+
Object.defineProperty(exports, "BmOverviewCharts", {
|
|
775
|
+
enumerable: true,
|
|
776
|
+
get: function get() {
|
|
777
|
+
return _reportsBody.BmOverviewCharts;
|
|
778
|
+
}
|
|
779
|
+
});
|
|
780
|
+
Object.defineProperty(exports, "BmPreviousAgent", {
|
|
781
|
+
enumerable: true,
|
|
782
|
+
get: function get() {
|
|
783
|
+
return _modalBody.BmPreviousAgent;
|
|
784
|
+
}
|
|
785
|
+
});
|
|
786
|
+
Object.defineProperty(exports, "BmPreviousAgentContent", {
|
|
787
|
+
enumerable: true,
|
|
788
|
+
get: function get() {
|
|
789
|
+
return _modalBody.BmPreviousAgentContent;
|
|
790
|
+
}
|
|
791
|
+
});
|
|
792
|
+
Object.defineProperty(exports, "BmPreviousAgentIcon", {
|
|
793
|
+
enumerable: true,
|
|
794
|
+
get: function get() {
|
|
795
|
+
return _modalBody.BmPreviousAgentIcon;
|
|
796
|
+
}
|
|
797
|
+
});
|
|
798
|
+
Object.defineProperty(exports, "BmPreviousAgentMessage", {
|
|
799
|
+
enumerable: true,
|
|
800
|
+
get: function get() {
|
|
801
|
+
return _modalBody.BmPreviousAgentMessage;
|
|
802
|
+
}
|
|
803
|
+
});
|
|
804
|
+
Object.defineProperty(exports, "BmPreviousAgentName", {
|
|
805
|
+
enumerable: true,
|
|
806
|
+
get: function get() {
|
|
807
|
+
return _modalBody.BmPreviousAgentName;
|
|
808
|
+
}
|
|
809
|
+
});
|
|
810
|
+
Object.defineProperty(exports, "BmPreviousAgentTitle", {
|
|
811
|
+
enumerable: true,
|
|
812
|
+
get: function get() {
|
|
813
|
+
return _modalBody.BmPreviousAgentTitle;
|
|
814
|
+
}
|
|
815
|
+
});
|
|
816
|
+
Object.defineProperty(exports, "BmPreviousAgentWrapper", {
|
|
817
|
+
enumerable: true,
|
|
818
|
+
get: function get() {
|
|
819
|
+
return _modalBody.BmPreviousAgentWrapper;
|
|
820
|
+
}
|
|
821
|
+
});
|
|
822
|
+
Object.defineProperty(exports, "BmProgressBar", {
|
|
823
|
+
enumerable: true,
|
|
824
|
+
get: function get() {
|
|
825
|
+
return _progressbar.BmProgressBar;
|
|
826
|
+
}
|
|
827
|
+
});
|
|
828
|
+
Object.defineProperty(exports, "BmQuickReplyIcon", {
|
|
829
|
+
enumerable: true,
|
|
830
|
+
get: function get() {
|
|
831
|
+
return _iconStyles.BmQuickReplyIcon;
|
|
832
|
+
}
|
|
833
|
+
});
|
|
834
|
+
Object.defineProperty(exports, "BmReportsBody", {
|
|
835
|
+
enumerable: true,
|
|
836
|
+
get: function get() {
|
|
837
|
+
return _reportsBody.BmReportsBody;
|
|
838
|
+
}
|
|
839
|
+
});
|
|
840
|
+
Object.defineProperty(exports, "BmReportsButton", {
|
|
841
|
+
enumerable: true,
|
|
842
|
+
get: function get() {
|
|
843
|
+
return _buttons2.BmReportsButton;
|
|
844
|
+
}
|
|
845
|
+
});
|
|
846
|
+
Object.defineProperty(exports, "BmReportsButtons", {
|
|
847
|
+
enumerable: true,
|
|
848
|
+
get: function get() {
|
|
849
|
+
return _title.BmReportsButtons;
|
|
850
|
+
}
|
|
851
|
+
});
|
|
852
|
+
Object.defineProperty(exports, "BmReportsHeader", {
|
|
853
|
+
enumerable: true,
|
|
854
|
+
get: function get() {
|
|
855
|
+
return _title.BmReportsHeader;
|
|
856
|
+
}
|
|
857
|
+
});
|
|
858
|
+
Object.defineProperty(exports, "BmReportsHeaderText", {
|
|
859
|
+
enumerable: true,
|
|
860
|
+
get: function get() {
|
|
861
|
+
return _infoHeader.BmReportsHeaderText;
|
|
862
|
+
}
|
|
863
|
+
});
|
|
864
|
+
Object.defineProperty(exports, "BmReportsInfoHeader", {
|
|
865
|
+
enumerable: true,
|
|
866
|
+
get: function get() {
|
|
867
|
+
return _infoHeader.BmReportsInfoHeader;
|
|
868
|
+
}
|
|
869
|
+
});
|
|
870
|
+
Object.defineProperty(exports, "BmReportsTitle", {
|
|
871
|
+
enumerable: true,
|
|
872
|
+
get: function get() {
|
|
873
|
+
return _title.BmReportsTitle;
|
|
874
|
+
}
|
|
875
|
+
});
|
|
876
|
+
Object.defineProperty(exports, "BmRightTabIcon", {
|
|
877
|
+
enumerable: true,
|
|
878
|
+
get: function get() {
|
|
879
|
+
return _tabs.BmRightTabIcon;
|
|
880
|
+
}
|
|
881
|
+
});
|
|
882
|
+
Object.defineProperty(exports, "BmRouteLink", {
|
|
883
|
+
enumerable: true,
|
|
884
|
+
get: function get() {
|
|
885
|
+
return _Link.BmRouteLink;
|
|
886
|
+
}
|
|
887
|
+
});
|
|
888
|
+
Object.defineProperty(exports, "BmRowLabel", {
|
|
889
|
+
enumerable: true,
|
|
890
|
+
get: function get() {
|
|
891
|
+
return _rowLabels.BmRowLabel;
|
|
892
|
+
}
|
|
893
|
+
});
|
|
894
|
+
Object.defineProperty(exports, "BmSearch", {
|
|
895
|
+
enumerable: true,
|
|
896
|
+
get: function get() {
|
|
897
|
+
return _search.BmSearch;
|
|
898
|
+
}
|
|
899
|
+
});
|
|
900
|
+
Object.defineProperty(exports, "BmSearchIcon", {
|
|
901
|
+
enumerable: true,
|
|
902
|
+
get: function get() {
|
|
903
|
+
return _iconStyles.BmSearchIcon;
|
|
904
|
+
}
|
|
905
|
+
});
|
|
906
|
+
Object.defineProperty(exports, "BmSegment", {
|
|
907
|
+
enumerable: true,
|
|
908
|
+
get: function get() {
|
|
909
|
+
return _index3.BmSegment;
|
|
910
|
+
}
|
|
911
|
+
});
|
|
912
|
+
Object.defineProperty(exports, "BmSegmentCard", {
|
|
913
|
+
enumerable: true,
|
|
914
|
+
get: function get() {
|
|
915
|
+
return _index3.BmSegmentCard;
|
|
916
|
+
}
|
|
917
|
+
});
|
|
918
|
+
Object.defineProperty(exports, "BmSegmentCheckBox", {
|
|
919
|
+
enumerable: true,
|
|
920
|
+
get: function get() {
|
|
921
|
+
return _index3.BmSegmentCheckBox;
|
|
922
|
+
}
|
|
923
|
+
});
|
|
924
|
+
Object.defineProperty(exports, "BmSegmentCompleteContent", {
|
|
925
|
+
enumerable: true,
|
|
926
|
+
get: function get() {
|
|
927
|
+
return _index3.BmSegmentCompleteContent;
|
|
928
|
+
}
|
|
929
|
+
});
|
|
930
|
+
Object.defineProperty(exports, "BmSegmentCompleteIcon", {
|
|
931
|
+
enumerable: true,
|
|
932
|
+
get: function get() {
|
|
933
|
+
return _index3.BmSegmentCompleteIcon;
|
|
934
|
+
}
|
|
935
|
+
});
|
|
936
|
+
Object.defineProperty(exports, "BmSegmentCreateContent", {
|
|
937
|
+
enumerable: true,
|
|
938
|
+
get: function get() {
|
|
939
|
+
return _index3.BmSegmentCreateContent;
|
|
940
|
+
}
|
|
941
|
+
});
|
|
942
|
+
Object.defineProperty(exports, "BmSegmentSelector", {
|
|
943
|
+
enumerable: true,
|
|
944
|
+
get: function get() {
|
|
945
|
+
return _index3.BmSegmentSelector;
|
|
946
|
+
}
|
|
947
|
+
});
|
|
948
|
+
Object.defineProperty(exports, "BmSend", {
|
|
949
|
+
enumerable: true,
|
|
950
|
+
get: function get() {
|
|
951
|
+
return _chatInput.BmSend;
|
|
952
|
+
}
|
|
953
|
+
});
|
|
954
|
+
Object.defineProperty(exports, "BmSideBar", {
|
|
955
|
+
enumerable: true,
|
|
956
|
+
get: function get() {
|
|
957
|
+
return _sidebar.BmSideBar;
|
|
958
|
+
}
|
|
959
|
+
});
|
|
960
|
+
Object.defineProperty(exports, "BmSideBarBtnIcon", {
|
|
961
|
+
enumerable: true,
|
|
962
|
+
get: function get() {
|
|
963
|
+
return _sidebar.BmSideBarBtnIcon;
|
|
964
|
+
}
|
|
965
|
+
});
|
|
966
|
+
Object.defineProperty(exports, "BmSideBarSearch", {
|
|
967
|
+
enumerable: true,
|
|
968
|
+
get: function get() {
|
|
969
|
+
return _sidebar.BmSideBarSearch;
|
|
970
|
+
}
|
|
971
|
+
});
|
|
972
|
+
Object.defineProperty(exports, "BmSideBarTab", {
|
|
973
|
+
enumerable: true,
|
|
974
|
+
get: function get() {
|
|
975
|
+
return _sidebar.BmSideBarTab;
|
|
976
|
+
}
|
|
977
|
+
});
|
|
978
|
+
Object.defineProperty(exports, "BmSuccessIcon", {
|
|
979
|
+
enumerable: true,
|
|
980
|
+
get: function get() {
|
|
981
|
+
return _iconStyles.BmSuccessIcon;
|
|
982
|
+
}
|
|
983
|
+
});
|
|
984
|
+
Object.defineProperty(exports, "BmSupport", {
|
|
985
|
+
enumerable: true,
|
|
986
|
+
get: function get() {
|
|
987
|
+
return _iconStyles.BmSupport;
|
|
988
|
+
}
|
|
989
|
+
});
|
|
990
|
+
Object.defineProperty(exports, "BmTab", {
|
|
991
|
+
enumerable: true,
|
|
992
|
+
get: function get() {
|
|
993
|
+
return _tabs.BmTab;
|
|
994
|
+
}
|
|
995
|
+
});
|
|
996
|
+
Object.defineProperty(exports, "BmTabItem", {
|
|
997
|
+
enumerable: true,
|
|
998
|
+
get: function get() {
|
|
999
|
+
return _tabs.BmTabItem;
|
|
1000
|
+
}
|
|
1001
|
+
});
|
|
1002
|
+
Object.defineProperty(exports, "BmTabText", {
|
|
1003
|
+
enumerable: true,
|
|
1004
|
+
get: function get() {
|
|
1005
|
+
return _tabs.BmTabText;
|
|
1006
|
+
}
|
|
1007
|
+
});
|
|
1008
|
+
Object.defineProperty(exports, "BmTabWrapper", {
|
|
1009
|
+
enumerable: true,
|
|
1010
|
+
get: function get() {
|
|
1011
|
+
return _tabs.BmTabWrapper;
|
|
1012
|
+
}
|
|
1013
|
+
});
|
|
1014
|
+
Object.defineProperty(exports, "BmTag", {
|
|
1015
|
+
enumerable: true,
|
|
1016
|
+
get: function get() {
|
|
1017
|
+
return _tags.BmTag;
|
|
1018
|
+
}
|
|
1019
|
+
});
|
|
1020
|
+
Object.defineProperty(exports, "BmTagIcon", {
|
|
1021
|
+
enumerable: true,
|
|
1022
|
+
get: function get() {
|
|
1023
|
+
return _iconStyles.BmTagIcon;
|
|
1024
|
+
}
|
|
1025
|
+
});
|
|
1026
|
+
Object.defineProperty(exports, "BmUnreadMessage", {
|
|
1027
|
+
enumerable: true,
|
|
1028
|
+
get: function get() {
|
|
1029
|
+
return _contacts.BmUnreadMessage;
|
|
1030
|
+
}
|
|
1031
|
+
});
|
|
1032
|
+
Object.defineProperty(exports, "BmUserChat", {
|
|
1033
|
+
enumerable: true,
|
|
1034
|
+
get: function get() {
|
|
1035
|
+
return _chat.BmUserChat;
|
|
1036
|
+
}
|
|
1037
|
+
});
|
|
1038
|
+
Object.defineProperty(exports, "CardTitle", {
|
|
1039
|
+
enumerable: true,
|
|
1040
|
+
get: function get() {
|
|
1041
|
+
return _cards.CardTitle;
|
|
1042
|
+
}
|
|
1043
|
+
});
|
|
1044
|
+
Object.defineProperty(exports, "CardTitleText", {
|
|
1045
|
+
enumerable: true,
|
|
1046
|
+
get: function get() {
|
|
1047
|
+
return _cards.CardTitleText;
|
|
1048
|
+
}
|
|
1049
|
+
});
|
|
1050
|
+
Object.defineProperty(exports, "CardTitleWrapper", {
|
|
1051
|
+
enumerable: true,
|
|
1052
|
+
get: function get() {
|
|
1053
|
+
return _cards.CardTitleWrapper;
|
|
1054
|
+
}
|
|
1055
|
+
});
|
|
1056
|
+
Object.defineProperty(exports, "Close", {
|
|
1057
|
+
enumerable: true,
|
|
1058
|
+
get: function get() {
|
|
1059
|
+
return _noteModalHeader.Close;
|
|
1060
|
+
}
|
|
1061
|
+
});
|
|
1062
|
+
Object.defineProperty(exports, "CloseModal", {
|
|
1063
|
+
enumerable: true,
|
|
1064
|
+
get: function get() {
|
|
1065
|
+
return _noteModalHeader.CloseModal;
|
|
1066
|
+
}
|
|
1067
|
+
});
|
|
1068
|
+
Object.defineProperty(exports, "CloseNote", {
|
|
1069
|
+
enumerable: true,
|
|
1070
|
+
get: function get() {
|
|
1071
|
+
return _infoHeader.CloseNote;
|
|
1072
|
+
}
|
|
1073
|
+
});
|
|
1074
|
+
Object.defineProperty(exports, "CopyToClipBoard", {
|
|
1075
|
+
enumerable: true,
|
|
1076
|
+
get: function get() {
|
|
1077
|
+
return _iconStyles.CopyToClipBoard;
|
|
1078
|
+
}
|
|
1079
|
+
});
|
|
1080
|
+
Object.defineProperty(exports, "FileIcons", {
|
|
1081
|
+
enumerable: true,
|
|
1082
|
+
get: function get() {
|
|
1083
|
+
return _chat.FileIcons;
|
|
1084
|
+
}
|
|
1085
|
+
});
|
|
1086
|
+
Object.defineProperty(exports, "GlobalNavbarWrapper", {
|
|
1087
|
+
enumerable: true,
|
|
1088
|
+
get: function get() {
|
|
1089
|
+
return _navbar.GlobalNavbarWrapper;
|
|
1090
|
+
}
|
|
1091
|
+
});
|
|
1092
|
+
Object.defineProperty(exports, "GlobalStyle", {
|
|
1093
|
+
enumerable: true,
|
|
1094
|
+
get: function get() {
|
|
1095
|
+
return _globalStyles.GlobalStyle;
|
|
1096
|
+
}
|
|
1097
|
+
});
|
|
1098
|
+
Object.defineProperty(exports, "HeaderText", {
|
|
1099
|
+
enumerable: true,
|
|
1100
|
+
get: function get() {
|
|
1101
|
+
return _noteModalHeader.HeaderText;
|
|
1102
|
+
}
|
|
1103
|
+
});
|
|
1104
|
+
Object.defineProperty(exports, "HeaderWrapper", {
|
|
1105
|
+
enumerable: true,
|
|
1106
|
+
get: function get() {
|
|
1107
|
+
return _noteModalHeader.HeaderWrapper;
|
|
1108
|
+
}
|
|
1109
|
+
});
|
|
1110
|
+
Object.defineProperty(exports, "Loader", {
|
|
1111
|
+
enumerable: true,
|
|
1112
|
+
get: function get() {
|
|
1113
|
+
return _loaders.Loader;
|
|
1114
|
+
}
|
|
1115
|
+
});
|
|
1116
|
+
Object.defineProperty(exports, "Main", {
|
|
1117
|
+
enumerable: true,
|
|
1118
|
+
get: function get() {
|
|
1119
|
+
return _chatwrapper.Main;
|
|
1120
|
+
}
|
|
1121
|
+
});
|
|
1122
|
+
Object.defineProperty(exports, "MainWrapper", {
|
|
1123
|
+
enumerable: true,
|
|
1124
|
+
get: function get() {
|
|
1125
|
+
return _chatwrapper.MainWrapper;
|
|
1126
|
+
}
|
|
1127
|
+
});
|
|
1128
|
+
Object.defineProperty(exports, "MessageIn", {
|
|
1129
|
+
enumerable: true,
|
|
1130
|
+
get: function get() {
|
|
1131
|
+
return _chatwrapper.MessageIn;
|
|
1132
|
+
}
|
|
1133
|
+
});
|
|
1134
|
+
Object.defineProperty(exports, "MessageOut", {
|
|
1135
|
+
enumerable: true,
|
|
1136
|
+
get: function get() {
|
|
1137
|
+
return _chatwrapper.MessageOut;
|
|
1138
|
+
}
|
|
1139
|
+
});
|
|
1140
|
+
Object.defineProperty(exports, "Modal", {
|
|
1141
|
+
enumerable: true,
|
|
1142
|
+
get: function get() {
|
|
1143
|
+
return _noteModalHeader.Modal;
|
|
1144
|
+
}
|
|
1145
|
+
});
|
|
1146
|
+
Object.defineProperty(exports, "ModalBody", {
|
|
1147
|
+
enumerable: true,
|
|
1148
|
+
get: function get() {
|
|
1149
|
+
return _noteModalBody.ModalBody;
|
|
1150
|
+
}
|
|
1151
|
+
});
|
|
1152
|
+
Object.defineProperty(exports, "ModalContent", {
|
|
1153
|
+
enumerable: true,
|
|
1154
|
+
get: function get() {
|
|
1155
|
+
return _noteModalHeader.ModalContent;
|
|
1156
|
+
}
|
|
1157
|
+
});
|
|
1158
|
+
Object.defineProperty(exports, "ModalFooter", {
|
|
1159
|
+
enumerable: true,
|
|
1160
|
+
get: function get() {
|
|
1161
|
+
return _noteModalFooter.ModalFooter;
|
|
1162
|
+
}
|
|
1163
|
+
});
|
|
1164
|
+
Object.defineProperty(exports, "ModalHeader", {
|
|
1165
|
+
enumerable: true,
|
|
1166
|
+
get: function get() {
|
|
1167
|
+
return _noteModalHeader.ModalHeader;
|
|
1168
|
+
}
|
|
1169
|
+
});
|
|
1170
|
+
Object.defineProperty(exports, "ModalWrapper", {
|
|
1171
|
+
enumerable: true,
|
|
1172
|
+
get: function get() {
|
|
1173
|
+
return _noteModalHeader.ModalWrapper;
|
|
1174
|
+
}
|
|
1175
|
+
});
|
|
1176
|
+
Object.defineProperty(exports, "OldBmNavbar", {
|
|
1177
|
+
enumerable: true,
|
|
1178
|
+
get: function get() {
|
|
1179
|
+
return _navbar.OldBmNavbar;
|
|
1180
|
+
}
|
|
1181
|
+
});
|
|
1182
|
+
Object.defineProperty(exports, "Overlay", {
|
|
1183
|
+
enumerable: true,
|
|
1184
|
+
get: function get() {
|
|
1185
|
+
return _noteModalHeader.Overlay;
|
|
1186
|
+
}
|
|
1187
|
+
});
|
|
1188
|
+
|
|
1189
|
+
var _avatars = require("./avatars");
|
|
1190
|
+
|
|
1191
|
+
var _buttonAlertIcons = require("./buttonAlertIcons");
|
|
1192
|
+
|
|
1193
|
+
var _buttonIconsOnly = require("./buttonIconsOnly");
|
|
1194
|
+
|
|
1195
|
+
var _buttons = require("./buttons");
|
|
1196
|
+
|
|
1197
|
+
var _checkboxToggler = require("./checkboxToggler");
|
|
1198
|
+
|
|
1199
|
+
var _dropdown = require("./dropdown");
|
|
1200
|
+
|
|
1201
|
+
var _input = require("./input");
|
|
1202
|
+
|
|
1203
|
+
var _logo = require("./logo");
|
|
1204
|
+
|
|
1205
|
+
var _search = require("./search");
|
|
1206
|
+
|
|
1207
|
+
var _Accordicon = require("./Accordicon");
|
|
1208
|
+
|
|
1209
|
+
var _Link = require("./Link");
|
|
1210
|
+
|
|
1211
|
+
var _tabs = require("./tabs");
|
|
1212
|
+
|
|
1213
|
+
var _tags = require("./tags");
|
|
1214
|
+
|
|
1215
|
+
var _navbar = require("./navbar");
|
|
1216
|
+
|
|
1217
|
+
var _iconStyles = require("./iconStyles");
|
|
1218
|
+
|
|
1219
|
+
var _loaders = require("./loaders");
|
|
1220
|
+
|
|
1221
|
+
var _globalStyles = require("./globalStyles");
|
|
1222
|
+
|
|
1223
|
+
var _chat = require("./Chats/chat");
|
|
1224
|
+
|
|
1225
|
+
var _chatInput = require("./Chats/chatInput");
|
|
1226
|
+
|
|
1227
|
+
var _chatwrapper = require("./Chats/chatwrapper");
|
|
1228
|
+
|
|
1229
|
+
var _sidebar = require("./sidebar");
|
|
1230
|
+
|
|
1231
|
+
var _contacts = require("./contacts");
|
|
1232
|
+
|
|
1233
|
+
var _customerInfo = require("../components/CustomerInfo/customerInfo");
|
|
1234
|
+
|
|
1235
|
+
var _customerInfoBar = require("../components/CustomerInfo/customerInfoBar");
|
|
1236
|
+
|
|
1237
|
+
var _dropdownButton = require("./dropdownButton");
|
|
1238
|
+
|
|
1239
|
+
var _dropdownItems = require("./dropdownItems");
|
|
1240
|
+
|
|
1241
|
+
var _progressbar = require("../components/progressbar");
|
|
1242
|
+
|
|
1243
|
+
var _infoAccordion = require("../components/CustomerInfo/infoAccordion");
|
|
1244
|
+
|
|
1245
|
+
var _chatHeader = require("./chatHeader");
|
|
1246
|
+
|
|
1247
|
+
var _wrapper = require("./wrapper");
|
|
1248
|
+
|
|
1249
|
+
var _noteModalHeader = require("./Modals/noteModalHeader");
|
|
1250
|
+
|
|
1251
|
+
var _noteModalBody = require("./Modals/noteModalBody");
|
|
1252
|
+
|
|
1253
|
+
var _noteModalFooter = require("./Modals/noteModalFooter");
|
|
1254
|
+
|
|
1255
|
+
var _buttons2 = require("./Reports/buttons");
|
|
1256
|
+
|
|
1257
|
+
var _cards = require("./Reports/cards");
|
|
1258
|
+
|
|
1259
|
+
var _reportsBody = require("./Reports/reportsBody");
|
|
1260
|
+
|
|
1261
|
+
var _title = require("./Reports/title");
|
|
1262
|
+
|
|
1263
|
+
var _infoHeader = require("./Reports/infoHeader");
|
|
1264
|
+
|
|
1265
|
+
var _charts = require("./Reports/charts");
|
|
1266
|
+
|
|
1267
|
+
var _modalBody = require("./Modals/modalBody");
|
|
1268
|
+
|
|
1269
|
+
var _listheader = require("./Lists/listheader");
|
|
1270
|
+
|
|
1271
|
+
var _rowLabels = require("./Lists/rowLabels");
|
|
1272
|
+
|
|
1273
|
+
var _index = require("./SuperFluid/Content/index");
|
|
1274
|
+
|
|
1275
|
+
var _index2 = require("./SuperFluid/ContentTitle.js/index.js");
|
|
1276
|
+
|
|
1277
|
+
var _index3 = require("./SuperFluid/SegmentCard/index");
|
|
1278
|
+
|
|
1279
|
+
var _infoNote = require("./infoNote");
|
|
1280
|
+
|
|
1281
|
+
var _checkbox = require("./checkbox");
|
|
1282
|
+
|
|
1283
|
+
var _notesInfo = require("./CustomerInfo/notesInfo");
|
|
1284
|
+
|
|
1285
|
+
var _labelsInfo = require("./CustomerInfo/labelsInfo");
|