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