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