beem-component 1.0.0 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (222) hide show
  1. package/.storybook/favicon.ico +0 -0
  2. package/.storybook/logo-blue.png +0 -0
  3. package/.storybook/main.js +15 -0
  4. package/.storybook/manager-head.html +14 -0
  5. package/.storybook/manager.js +6 -0
  6. package/.storybook/preview.js +10 -0
  7. package/.storybook/theme.js +10 -0
  8. package/Dockerfile +30 -0
  9. package/Jenkinsfile +73 -0
  10. package/build-storybook.log +14621 -0
  11. package/dist/assets/beem.jpeg +0 -0
  12. package/dist/components/{Accordion.js → Accordion/Accordion.js} +12 -6
  13. package/dist/components/Accordion/Accordion.stories.js +86 -0
  14. package/dist/components/{avatars.js → Avatars/avatars.js} +31 -11
  15. package/dist/components/Avatars/avatars.stories.js +69 -0
  16. package/dist/components/Buttons/Stories/basicbutton.stories.js +67 -0
  17. package/dist/components/Buttons/Stories/buttonAlertIcons.stories.js +65 -0
  18. package/dist/components/Buttons/Stories/buttonIconsOnly.stories.js +65 -0
  19. package/dist/components/{buttonAlertIcons.js → Buttons/buttonAlertIcons.js} +17 -9
  20. package/dist/components/{buttonIconsOnly.js → Buttons/buttonIconsOnly.js} +13 -4
  21. package/dist/components/{buttons.js → Buttons/buttons.js} +11 -10
  22. package/dist/components/{Reports → Cards}/cards.js +9 -24
  23. package/dist/components/Cards/cards.stories.js +61 -0
  24. package/dist/components/Chats/chat.js +1 -1
  25. package/dist/components/Chats/chatInput.js +1 -1
  26. package/dist/components/Chats/chatwrapper.js +1 -1
  27. package/dist/components/Lists/listBox.js +41 -0
  28. package/dist/components/Lists/listBox.stories.js +78 -0
  29. package/dist/components/Lists/listHeader.stories.js +58 -0
  30. package/dist/components/Lists/listheader.js +17 -12
  31. package/dist/components/Lists/rowLabels.js +34 -16
  32. package/dist/components/Lists/rowLabels.stories.js +85 -0
  33. package/dist/components/{loaders.js → Loader/loader.js} +13 -7
  34. package/dist/components/Loader/loader.stories.js +52 -0
  35. package/dist/components/{Reports/buttons.js → MainWrapper/index.js} +5 -3
  36. package/dist/components/Modals/modal copy.js +160 -0
  37. package/dist/components/Modals/modal.js +166 -0
  38. package/dist/components/Modals/modals.stories.js +117 -0
  39. package/dist/components/{infoNote.js → NoteBar.js/noteBar.js} +23 -19
  40. package/dist/components/NoteBar.js/noteBar.stories.js +66 -0
  41. package/dist/components/PerformanceIndicator/performaceIndicator.stories.js +66 -0
  42. package/dist/components/PerformanceIndicator/performanceIndicator.js +68 -0
  43. package/dist/components/Pills/pills.js +126 -0
  44. package/dist/components/Pills/pills.stories.js +110 -0
  45. package/dist/components/{progressbar.js → ProgressBar/progressbar.js} +8 -2
  46. package/dist/components/ProgressBar/progressbar.stories.js +45 -0
  47. package/dist/components/{Link.js → RouteLink/link.js} +3 -3
  48. package/dist/components/RouteLink/link.stories.js +29 -0
  49. package/dist/components/SuperFluid/ContentTitle.js/index.js +1 -1
  50. package/dist/components/SuperFluid/SegmentCard/index.js +1 -1
  51. package/dist/components/Tabs/tabs.js +85 -0
  52. package/dist/components/Tabs/tabs.stories.js +59 -0
  53. package/dist/components/breakpoints.js +18 -0
  54. package/dist/components/chatHeader.js +1 -1
  55. package/dist/components/checkboxToggler.js +2 -2
  56. package/dist/components/colors.js +5 -3
  57. package/dist/components/contacts.js +1 -1
  58. package/dist/components/dropdown.js +1 -1
  59. package/dist/components/dropdownButton.js +3 -3
  60. package/dist/components/dropdownItems.js +1 -1
  61. package/dist/components/example.js +47 -0
  62. package/dist/components/iconStyles.js +69 -119
  63. package/dist/components/index-copy.js +1285 -0
  64. package/dist/components/index.js +80 -1155
  65. package/dist/components/input.js +9 -3
  66. package/dist/components/logo.js +1 -1
  67. package/dist/components/navbar.js +1 -1
  68. package/dist/components/sidebar.js +2 -2
  69. package/dist/components/tabs.js +1 -1
  70. package/dist/components/text.js +1 -1
  71. package/dist/components/typography.js +1 -1
  72. package/nginx.conf +17 -0
  73. package/package.json +29 -11
  74. package/public/favicon.ico +0 -0
  75. package/public/index.html +1 -1
  76. package/src/App.js +10 -29
  77. package/src/examples/Navbar.js +1 -1
  78. package/src/lib/assets/beem.jpeg +0 -0
  79. package/src/lib/components/{Accordion.js → Accordion/Accordion.js} +5 -4
  80. package/src/lib/components/Accordion/Accordion.stories.js +63 -0
  81. package/src/lib/components/{avatars.js → Avatars/avatars.js} +24 -8
  82. package/src/lib/components/Avatars/avatars.stories.js +45 -0
  83. package/src/lib/components/Buttons/Stories/basicbutton.stories.js +51 -0
  84. package/src/lib/components/Buttons/Stories/buttonAlertIcons.stories.js +42 -0
  85. package/src/lib/components/Buttons/Stories/buttonIconsOnly.stories.js +49 -0
  86. package/src/lib/components/{buttonAlertIcons.js → Buttons/buttonAlertIcons.js} +20 -9
  87. package/src/lib/components/{buttonIconsOnly.js → Buttons/buttonIconsOnly.js} +12 -2
  88. package/src/lib/components/{buttons.js → Buttons/buttons.js} +10 -10
  89. package/src/lib/components/{Reports → Cards}/cards.js +10 -18
  90. package/src/lib/components/Cards/cards.stories.js +52 -0
  91. package/src/lib/components/Lists/listBox.js +34 -0
  92. package/src/lib/components/Lists/listBox.stories.js +47 -0
  93. package/src/lib/components/Lists/listHeader.stories.js +36 -0
  94. package/src/lib/components/Lists/listheader.js +17 -11
  95. package/src/lib/components/Lists/rowLabels.js +47 -16
  96. package/src/lib/components/Lists/rowLabels.stories.js +59 -0
  97. package/src/lib/components/{loaders.js → Loader/loader.js} +18 -7
  98. package/src/lib/components/Loader/loader.stories.js +30 -0
  99. package/src/lib/components/MainWrapper/index.js +7 -0
  100. package/src/lib/components/Modals/modal copy.js +159 -0
  101. package/src/lib/components/Modals/modal.js +152 -0
  102. package/src/lib/components/Modals/modals.stories.js +82 -0
  103. package/src/lib/components/{infoNote.js → NoteBar.js/noteBar.js} +24 -25
  104. package/src/lib/components/NoteBar.js/noteBar.stories.js +40 -0
  105. package/src/lib/components/PerformanceIndicator/performaceIndicator.stories.js +40 -0
  106. package/src/lib/components/PerformanceIndicator/performanceIndicator.js +56 -0
  107. package/src/lib/components/Pills/pills.js +91 -0
  108. package/src/lib/components/Pills/pills.stories.js +74 -0
  109. package/src/lib/components/{progressbar.js → ProgressBar/progressbar.js} +8 -1
  110. package/src/lib/components/ProgressBar/progressbar.stories.js +26 -0
  111. package/src/lib/components/{Link.js → RouteLink/link.js} +5 -5
  112. package/src/lib/components/RouteLink/link.stories.js +21 -0
  113. package/src/lib/components/Tabs/tabs.js +84 -0
  114. package/src/lib/components/Tabs/tabs.stories.js +36 -0
  115. package/src/lib/components/breakpoints.js +11 -0
  116. package/src/lib/components/colors.js +2 -0
  117. package/src/lib/components/dropdownButton.js +2 -2
  118. package/src/lib/components/example.js +30 -0
  119. package/src/lib/components/iconStyles.js +46 -101
  120. package/src/lib/components/index-copy.js +468 -0
  121. package/src/lib/components/index.js +39 -446
  122. package/src/lib/components/input.js +8 -2
  123. package/src/lib/components/sidebar.js +1 -1
  124. package/storybook-static/0.00c62ec79c260aedbb98.manager.bundle.js +2 -0
  125. package/storybook-static/0.00c62ec79c260aedbb98.manager.bundle.js.LICENSE.txt +8 -0
  126. package/storybook-static/0.96c45dd8.iframe.bundle.js +1 -0
  127. package/storybook-static/1.dc6acfa9.iframe.bundle.js +3 -0
  128. package/storybook-static/1.dc6acfa9.iframe.bundle.js.LICENSE.txt +8 -0
  129. package/storybook-static/1.dc6acfa9.iframe.bundle.js.map +1 -0
  130. package/storybook-static/1.dc7dcdaec2def2f224fd.manager.bundle.js +1 -0
  131. package/storybook-static/2.24353ddc.iframe.bundle.js +1 -0
  132. package/storybook-static/3.8bb2173c.iframe.bundle.js +1 -0
  133. package/storybook-static/5.0779e3847d325dece216.manager.bundle.js +1 -0
  134. package/storybook-static/6.8bd405c2576206749a16.manager.bundle.js +2 -0
  135. package/storybook-static/6.8bd405c2576206749a16.manager.bundle.js.LICENSE.txt +12 -0
  136. package/storybook-static/7.9d4ba19cf58425e7ff0d.manager.bundle.js +1 -0
  137. package/storybook-static/7.f0cfc757.iframe.bundle.js +1 -0
  138. package/storybook-static/8.91de97de.iframe.bundle.js +3 -0
  139. package/storybook-static/8.91de97de.iframe.bundle.js.LICENSE.txt +12 -0
  140. package/storybook-static/8.91de97de.iframe.bundle.js.map +1 -0
  141. package/storybook-static/8.b4e9ec0ec7648e02a923.manager.bundle.js +1 -0
  142. package/storybook-static/9.40ec65d6.iframe.bundle.js +1 -0
  143. package/storybook-static/asset-manifest.json +30 -0
  144. package/storybook-static/favicon.ico +0 -0
  145. package/storybook-static/iframe.html +348 -0
  146. package/storybook-static/index.html +110 -0
  147. package/storybook-static/main.3c8d8027.iframe.bundle.js +1 -0
  148. package/storybook-static/main.3e5804fe56d1f580b088.manager.bundle.js +1 -0
  149. package/storybook-static/runtime~main.d3a18d6a.iframe.bundle.js +1 -0
  150. package/storybook-static/runtime~main.ff106120648356c6069d.manager.bundle.js +1 -0
  151. package/storybook-static/static/css/main.b44a190d.chunk.css +4 -0
  152. package/storybook-static/static/css/main.b44a190d.chunk.css.map +1 -0
  153. package/storybook-static/static/media/OpenSans-Regular.1b0809d5.ttf +0 -0
  154. package/storybook-static/static/media/PoppinsBold.1eae2d48.woff2 +0 -0
  155. package/storybook-static/static/media/PoppinsBold.53ff6749.eot +0 -0
  156. package/storybook-static/static/media/PoppinsBold.53ff971f.ttf +0 -0
  157. package/storybook-static/static/media/PoppinsBold.850fc4f3.svg +3066 -0
  158. package/storybook-static/static/media/PoppinsBold.b33c148b.woff +0 -0
  159. package/storybook-static/static/media/PoppinsMedium.0ba26f6c.woff +0 -0
  160. package/storybook-static/static/media/PoppinsMedium.49b46ace.eot +0 -0
  161. package/storybook-static/static/media/PoppinsMedium.57a99fa8.woff2 +0 -0
  162. package/storybook-static/static/media/PoppinsMedium.b7e43707.svg +3103 -0
  163. package/storybook-static/static/media/PoppinsMedium.c98dddbd.ttf +0 -0
  164. package/storybook-static/static/media/PoppinsRegular.13b9af9c.eot +0 -0
  165. package/storybook-static/static/media/PoppinsRegular.43e9b50d.svg +3138 -0
  166. package/storybook-static/static/media/PoppinsRegular.4a4d5420.woff +0 -0
  167. package/storybook-static/static/media/PoppinsRegular.9a7cc7ec.woff2 +0 -0
  168. package/storybook-static/static/media/PoppinsRegular.e1bc9021.ttf +0 -0
  169. package/storybook-static/static/media/PoppinsSemiBold.5692c77f.ttf +0 -0
  170. package/storybook-static/static/media/PoppinsSemiBold.80138c67.woff +0 -0
  171. package/storybook-static/static/media/PoppinsSemiBold.c442695a.eot +0 -0
  172. package/storybook-static/static/media/PoppinsSemiBold.e1948d56.svg +3098 -0
  173. package/storybook-static/static/media/PoppinsSemiBold.f27050e2.woff2 +0 -0
  174. package/storybook-static/static/media/logo-blue.bfc5ba6d.png +0 -0
  175. package/storybook-static/vendors~main.1750028c2d68e574fb1d.manager.bundle.js +2 -0
  176. package/storybook-static/vendors~main.1750028c2d68e574fb1d.manager.bundle.js.LICENSE.txt +104 -0
  177. package/storybook-static/vendors~main.7fe78cc2.iframe.bundle.js +3 -0
  178. package/storybook-static/vendors~main.7fe78cc2.iframe.bundle.js.LICENSE.txt +122 -0
  179. package/storybook-static/vendors~main.7fe78cc2.iframe.bundle.js.map +1 -0
  180. package/dist/assets/content_copy_black.svg +0 -1
  181. package/dist/assets/profile-pic.jpg +0 -0
  182. package/dist/components/Accordicon.js +0 -51
  183. package/dist/components/CustomerInfo/customerInfo.js +0 -89
  184. package/dist/components/CustomerInfo/customerInfoBar.js +0 -24
  185. package/dist/components/CustomerInfo/infoAccordion.js +0 -78
  186. package/dist/components/CustomerInfo/labelsInfo.js +0 -37
  187. package/dist/components/CustomerInfo/notesInfo.js +0 -39
  188. package/dist/components/Modals/modalBody.js +0 -61
  189. package/dist/components/Modals/noteModalBody.js +0 -20
  190. package/dist/components/Modals/noteModalFooter.js +0 -24
  191. package/dist/components/Modals/noteModalHeader.js +0 -93
  192. package/dist/components/Reports/charts.js +0 -70
  193. package/dist/components/Reports/infoHeader.js +0 -65
  194. package/dist/components/Reports/reportsBody.js +0 -28
  195. package/dist/components/Reports/title.js +0 -28
  196. package/dist/components/performanceIndicator.js +0 -41
  197. package/dist/components/pills.js +0 -73
  198. package/src/App1.js +0 -229
  199. package/src/CHAT.js +0 -170
  200. package/src/Complete.js +0 -48
  201. package/src/CreateSegments.js +0 -48
  202. package/src/FileUploadSFL.js +0 -110
  203. package/src/examples/CustomerInfo.js +0 -248
  204. package/src/lib/assets/content_copy_black.svg +0 -1
  205. package/src/lib/assets/profile-pic.jpg +0 -0
  206. package/src/lib/components/Accordicon.js +0 -43
  207. package/src/lib/components/CustomerInfo/customerInfo.js +0 -91
  208. package/src/lib/components/CustomerInfo/customerInfoBar.js +0 -23
  209. package/src/lib/components/CustomerInfo/infoAccordion.js +0 -96
  210. package/src/lib/components/CustomerInfo/labelsInfo.js +0 -37
  211. package/src/lib/components/CustomerInfo/notesInfo.js +0 -61
  212. package/src/lib/components/Modals/modalBody.js +0 -66
  213. package/src/lib/components/Modals/noteModalBody.js +0 -10
  214. package/src/lib/components/Modals/noteModalFooter.js +0 -16
  215. package/src/lib/components/Modals/noteModalHeader.js +0 -103
  216. package/src/lib/components/Reports/buttons.js +0 -5
  217. package/src/lib/components/Reports/charts.js +0 -79
  218. package/src/lib/components/Reports/infoHeader.js +0 -63
  219. package/src/lib/components/Reports/reportsBody.js +0 -29
  220. package/src/lib/components/Reports/title.js +0 -19
  221. package/src/lib/components/performanceIndicator.js +0 -27
  222. package/src/lib/components/pills.js +0 -65
@@ -0,0 +1,122 @@
1
+ /*
2
+ object-assign
3
+ (c) Sindre Sorhus
4
+ @license MIT
5
+ */
6
+
7
+ /*!
8
+ * The buffer module from node.js, for the browser.
9
+ *
10
+ * @author Feross Aboukhadijeh <feross@feross.org> <http://feross.org>
11
+ * @license MIT
12
+ */
13
+
14
+ /*!
15
+ * escape-html
16
+ * Copyright(c) 2012-2013 TJ Holowaychuk
17
+ * Copyright(c) 2015 Andreas Lubbe
18
+ * Copyright(c) 2015 Tiancheng "Timothy" Gu
19
+ * MIT Licensed
20
+ */
21
+
22
+ /*!
23
+ * https://github.com/es-shims/es5-shim
24
+ * @license es5-shim Copyright 2009-2020 by contributors, MIT License
25
+ * see https://github.com/es-shims/es5-shim/blob/master/LICENSE
26
+ */
27
+
28
+ /*!
29
+ * https://github.com/paulmillr/es6-shim
30
+ * @license es6-shim Copyright 2013-2016 by Paul Miller (http://paulmillr.com)
31
+ * and contributors, MIT License
32
+ * es6-shim: v0.35.4
33
+ * see https://github.com/paulmillr/es6-shim/blob/0.35.3/LICENSE
34
+ * Details and documentation:
35
+ * https://github.com/paulmillr/es6-shim/
36
+ */
37
+
38
+ /*!
39
+ * is-plain-object <https://github.com/jonschlinkert/is-plain-object>
40
+ *
41
+ * Copyright (c) 2014-2017, Jon Schlinkert.
42
+ * Released under the MIT License.
43
+ */
44
+
45
+ /*!
46
+ * isobject <https://github.com/jonschlinkert/isobject>
47
+ *
48
+ * Copyright (c) 2014-2017, Jon Schlinkert.
49
+ * Released under the MIT License.
50
+ */
51
+
52
+ /**
53
+ * A better abstraction over CSS.
54
+ *
55
+ * @copyright Oleg Isonen (Slobodskoi) / Isonen 2014-present
56
+ * @website https://github.com/cssinjs/jss
57
+ * @license MIT
58
+ */
59
+
60
+ /** @license MUI v5.2.0
61
+ *
62
+ * This source code is licensed under the MIT license found in the
63
+ * LICENSE file in the root directory of this source tree.
64
+ */
65
+
66
+ /** @license React v0.20.2
67
+ * scheduler.production.min.js
68
+ *
69
+ * Copyright (c) Facebook, Inc. and its affiliates.
70
+ *
71
+ * This source code is licensed under the MIT license found in the
72
+ * LICENSE file in the root directory of this source tree.
73
+ */
74
+
75
+ /** @license React v16.13.1
76
+ * react-is.production.min.js
77
+ *
78
+ * Copyright (c) Facebook, Inc. and its affiliates.
79
+ *
80
+ * This source code is licensed under the MIT license found in the
81
+ * LICENSE file in the root directory of this source tree.
82
+ */
83
+
84
+ /** @license React v17.0.2
85
+ * react-dom.production.min.js
86
+ *
87
+ * Copyright (c) Facebook, Inc. and its affiliates.
88
+ *
89
+ * This source code is licensed under the MIT license found in the
90
+ * LICENSE file in the root directory of this source tree.
91
+ */
92
+
93
+ /** @license React v17.0.2
94
+ * react-is.production.min.js
95
+ *
96
+ * Copyright (c) Facebook, Inc. and its affiliates.
97
+ *
98
+ * This source code is licensed under the MIT license found in the
99
+ * LICENSE file in the root directory of this source tree.
100
+ */
101
+
102
+ /** @license React v17.0.2
103
+ * react-jsx-runtime.production.min.js
104
+ *
105
+ * Copyright (c) Facebook, Inc. and its affiliates.
106
+ *
107
+ * This source code is licensed under the MIT license found in the
108
+ * LICENSE file in the root directory of this source tree.
109
+ */
110
+
111
+ /** @license React v17.0.2
112
+ * react.production.min.js
113
+ *
114
+ * Copyright (c) Facebook, Inc. and its affiliates.
115
+ *
116
+ * This source code is licensed under the MIT license found in the
117
+ * LICENSE file in the root directory of this source tree.
118
+ */
119
+
120
+ //! stable.js 0.1.8, https://github.com/Two-Screen/stable
121
+
122
+ //! © 2018 Angry Bytes and contributors. MIT licensed.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vendors~main.7fe78cc2.iframe.bundle.js","sources":[],"mappings":";A","sourceRoot":""}
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="#000000"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z"/></svg>
Binary file
@@ -1,51 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.BmAccordicon = exports.BmAccordiconDetails = exports.BmAccordiconMenu = void 0;
7
-
8
- var _react = _interopRequireDefault(require("react"));
9
-
10
- var _styledComponents = _interopRequireDefault(require("styled-components"));
11
-
12
- var _colors = require("./colors");
13
-
14
- var _iconStyles = require("./iconStyles");
15
-
16
- var _excluded = ["children", "isOpen", "dropdown", "trailingIcon"];
17
-
18
- var _templateObject, _templateObject2;
19
-
20
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21
-
22
- function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
23
-
24
- function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
25
-
26
- function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
27
-
28
- var BmAccordiconMenu = _styledComponents.default.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n ", "\n padding: 0.571rem 1.143rem;\n background: ", ";\n box-shadow: ", ";\n > *:not(:last-child) {\n margin-right: 0.5rem;\n }\n"])), ""
29
- /* justify-content: space-between; */
30
- , _colors.BmPrimaryWhite, function (isOpen) {
31
- if (isOpen) return "inset 0rem 0.071rem 0rem ".concat(_colors.BmGrey400);
32
- return "inset 0rem -0.071rem 0rem ".concat(_colors.BmGrey400, ", inset 0rem 0.071rem 0rem ").concat(_colors.BmGrey400, ";");
33
- });
34
-
35
- exports.BmAccordiconMenu = BmAccordiconMenu;
36
-
37
- var BmAccordiconDetails = _styledComponents.default.div(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: space-between;\n width: 100%;\n"])));
38
-
39
- exports.BmAccordiconDetails = BmAccordiconDetails;
40
-
41
- var BmAccordicon = function BmAccordicon(_ref) {
42
- var children = _ref.children,
43
- isOpen = _ref.isOpen,
44
- dropdown = _ref.dropdown,
45
- trailingIcon = _ref.trailingIcon,
46
- rest = _objectWithoutProperties(_ref, _excluded);
47
-
48
- return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(BmAccordiconMenu, rest, dropdown && (isOpen ? /*#__PURE__*/_react.default.createElement(_iconStyles.BmDropupIcon, rest) : /*#__PURE__*/_react.default.createElement(_iconStyles.BmDropdownIcon, rest)), /*#__PURE__*/_react.default.createElement(BmAccordiconDetails, null, children)));
49
- };
50
-
51
- exports.BmAccordicon = BmAccordicon;
@@ -1,89 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.BmCustomerInfoTab = exports.BmCustomerIcons = exports.BmIcon = exports.BmInfoTabWrapper = exports.BmBtnTag = exports.BmMoreInfo = exports.BmCustomerInfoName = exports.BmCustomer = exports.BmCustomerInfoHeader = exports.BmCustomerDetails = void 0;
7
-
8
- var _react = _interopRequireDefault(require("react"));
9
-
10
- var _styledComponents = _interopRequireDefault(require("styled-components"));
11
-
12
- var _colors = require("../colors");
13
-
14
- var _iconStyles = require("../iconStyles");
15
-
16
- var _MoreVert = _interopRequireDefault(require("@material-ui/icons/MoreVert"));
17
-
18
- var _buttonIconsOnly = require("../buttonIconsOnly");
19
-
20
- var _excluded = ["icon", "children"];
21
-
22
- var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8;
23
-
24
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
25
-
26
- function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
27
-
28
- function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
29
-
30
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
31
-
32
- function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
33
-
34
- // Outer Box
35
- var BmCustomerDetails = _styledComponents.default.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n background: ", ";\n border-bottom: 0.071rem solid ", ";\n padding: 1.714rem;\n"])), _colors.BmPrimaryWhite, _colors.BmGrey400); // Customer Info Header Wrapper
36
-
37
-
38
- exports.BmCustomerDetails = BmCustomerDetails;
39
-
40
- var BmCustomerInfoHeader = _styledComponents.default.div(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n max-width: 100%;\n width: 100%;\n"]))); // Customer Name Wrapper
41
-
42
-
43
- exports.BmCustomerInfoHeader = BmCustomerInfoHeader;
44
-
45
- var BmCustomer = _styledComponents.default.div(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n"])));
46
-
47
- exports.BmCustomer = BmCustomer;
48
-
49
- var BmCustomerInfoName = _styledComponents.default.h2(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["\n color: ", ";\n"])), _colors.BmPrimaryBlack);
50
-
51
- exports.BmCustomerInfoName = BmCustomerInfoName;
52
-
53
- var BmMoreInfo = function BmMoreInfo(props) {
54
- return /*#__PURE__*/_react.default.createElement(_iconStyles.BmButtonIcon, _extends({
55
- icon: /*#__PURE__*/_react.default.createElement(_MoreVert.default, null),
56
- color: "".concat(_colors.BmSecondaryGrey)
57
- }, props));
58
- }; // Tag Details
59
-
60
-
61
- exports.BmMoreInfo = BmMoreInfo;
62
-
63
- var BmBtnTag = _styledComponents.default.h4(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["\n text-align: center;\n color: ", ";\n margin: 0.571rem 0rem;\n"])), _colors.BmPrimaryBlack);
64
-
65
- exports.BmBtnTag = BmBtnTag;
66
-
67
- var BmInfoTabWrapper = _styledComponents.default.div(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: center;\n padding: 0rem;\n"])));
68
-
69
- exports.BmInfoTabWrapper = BmInfoTabWrapper;
70
-
71
- var BmIcon = _styledComponents.default.div(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n padding: 0rem 1.714rem;\n justify-content: space-between;\n"])));
72
-
73
- exports.BmIcon = BmIcon;
74
-
75
- var BmCustomerIcons = _styledComponents.default.div(_templateObject8 || (_templateObject8 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n margin-top: 1.143rem;\n flex-wrap: wrap;\n"])));
76
-
77
- exports.BmCustomerIcons = BmCustomerIcons;
78
-
79
- var BmCustomerInfoTab = function BmCustomerInfoTab(_ref) {
80
- var icon = _ref.icon,
81
- children = _ref.children,
82
- rest = _objectWithoutProperties(_ref, _excluded);
83
-
84
- return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(BmInfoTabWrapper, null, icon && /*#__PURE__*/_react.default.createElement(_buttonIconsOnly.BmBtnIcon, _extends({
85
- icon: icon
86
- }, rest)), /*#__PURE__*/_react.default.createElement(BmBtnTag, rest, children)));
87
- };
88
-
89
- exports.BmCustomerInfoTab = BmCustomerInfoTab;
@@ -1,24 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.BmCustomerInfoAccordicon = exports.BmCustomerBar = void 0;
7
-
8
- var _styledComponents = _interopRequireDefault(require("styled-components"));
9
-
10
- var _colors = require("../colors");
11
-
12
- var _templateObject, _templateObject2;
13
-
14
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
-
16
- function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
17
-
18
- var BmCustomerBar = _styledComponents.default.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n background: ", ";\n border: 0.071rem solid ", ";\n max-height: 100%;\n height: 100%;\n overflow: auto;\n max-width: 30%;\n width: 30%;\n"])), _colors.BmPrimaryWhite, _colors.BmGrey400);
19
-
20
- exports.BmCustomerBar = BmCustomerBar;
21
-
22
- var BmCustomerInfoAccordicon = _styledComponents.default.div(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n margin: 0rem;\n overflow: auto; \n height: 40vh;\n"])));
23
-
24
- exports.BmCustomerInfoAccordicon = BmCustomerInfoAccordicon;
@@ -1,78 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.BmInfoContentValue = exports.BmInfoContentLabel = exports.BmInfoContentItem = exports.BmInfoContent = exports.BmInfoHeader = exports.BmInfoHeaderWrapper = exports.BmDropdownInfo = exports.BmInfoHeaderText = exports.BmInformation = exports.BmInfoAccordiconMenu = void 0;
7
-
8
- var _react = _interopRequireDefault(require("react"));
9
-
10
- var _styledComponents = _interopRequireDefault(require("styled-components"));
11
-
12
- var _colors = require("../colors");
13
-
14
- var _iconStyles = require("../iconStyles");
15
-
16
- var _excluded = ["children", "isOpen"];
17
-
18
- var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9;
19
-
20
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21
-
22
- function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
23
-
24
- function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
25
-
26
- function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
27
-
28
- var BmInfoAccordiconMenu = _styledComponents.default.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n"])));
29
-
30
- exports.BmInfoAccordiconMenu = BmInfoAccordiconMenu;
31
-
32
- var BmInformation = _styledComponents.default.div(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n cursor: pointer;\n"])));
33
-
34
- exports.BmInformation = BmInformation;
35
-
36
- var BmInfoHeaderText = _styledComponents.default.h3(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n color: ", ";\n"])), _colors.BmPrimaryBlack);
37
-
38
- exports.BmInfoHeaderText = BmInfoHeaderText;
39
-
40
- var BmDropdownInfo = _styledComponents.default.div(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["\n margin-right: 0.571rem;\n"])));
41
-
42
- exports.BmDropdownInfo = BmDropdownInfo;
43
-
44
- var BmInfoHeaderWrapper = _styledComponents.default.div(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n padding: 0.571rem 1.143rem;\n background: ", ";\n box-shadow: ", ";\n"])), _colors.BmPrimaryWhite, function (isOpen) {
45
- if (isOpen) return "inset 0rem 0.071rem 0rem ".concat(_colors.BmGrey400);
46
- return "inset 0rem -0.071rem 0rem ".concat(_colors.BmGrey400, ", inset 0rem 0.071rem 0rem ").concat(_colors.BmGrey400, ";");
47
- });
48
-
49
- exports.BmInfoHeaderWrapper = BmInfoHeaderWrapper;
50
-
51
- var BmInfoHeader = function BmInfoHeader(_ref) {
52
- var children = _ref.children,
53
- isOpen = _ref.isOpen,
54
- rest = _objectWithoutProperties(_ref, _excluded);
55
-
56
- return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(BmInfoHeaderWrapper, rest, /*#__PURE__*/_react.default.createElement(BmDropdownInfo, rest, isOpen ? /*#__PURE__*/_react.default.createElement(_iconStyles.BmDropupIcon, rest) : /*#__PURE__*/_react.default.createElement(_iconStyles.BmDropdownIcon, rest)), /*#__PURE__*/_react.default.createElement(BmInfoHeaderText, rest, children)));
57
- };
58
-
59
- exports.BmInfoHeader = BmInfoHeader;
60
-
61
- var BmInfoContent = _styledComponents.default.div(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral(["\n display: ", "};\n flex-direction: column;\n justify-content: space-between;\n padding: 0rem 1.143rem 1.143rem;\n"])), function (_ref2) {
62
- var isOpen = _ref2.isOpen;
63
- return isOpen ? "flex" : "none";
64
- });
65
-
66
- exports.BmInfoContent = BmInfoContent;
67
-
68
- var BmInfoContentItem = _styledComponents.default.div(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n max-width: 100%;\n margin-bottom: 0.571rem;\n"])));
69
-
70
- exports.BmInfoContentItem = BmInfoContentItem;
71
-
72
- var BmInfoContentLabel = _styledComponents.default.h4(_templateObject8 || (_templateObject8 = _taggedTemplateLiteral(["\n color: ", ";\n margin: 0rem;\n text-align: left;\n width: 50%;\n overflow: hidden;\n text-overflow: ellipsis;\n"])), _colors.BmPrimaryBlack);
73
-
74
- exports.BmInfoContentLabel = BmInfoContentLabel;
75
-
76
- var BmInfoContentValue = _styledComponents.default.input(_templateObject9 || (_templateObject9 = _taggedTemplateLiteral(["\n text-align: right;\n color: ", ";\n width: 40%;\n overflow: hidden;\n text-overflow: ellipsis;\n border: none;\n &:visited,\n &:active,\n &:hover,\n &:focus {\n outline: none !important;\n text-decoration: none;\n color: ", ";\n }\n background: transparent;\n"])), _colors.BmSecondaryGrey, _colors.BmPrimaryBlack);
77
-
78
- exports.BmInfoContentValue = BmInfoContentValue;
@@ -1,37 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.BmLabelInfo = exports.BmColorLabelPicker = exports.BmColorLabel = exports.BmLabels = exports.BmAddLabel = void 0;
7
-
8
- var _styledComponents = _interopRequireDefault(require("styled-components"));
9
-
10
- var _input = require("../input");
11
-
12
- var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5;
13
-
14
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
-
16
- function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
17
-
18
- var BmAddLabel = (0, _styledComponents.default)(_input.BmInput)(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n width: 100%;\n margin-bottom: 0.5rem;\n"])));
19
- exports.BmAddLabel = BmAddLabel;
20
-
21
- var BmLabels = _styledComponents.default.div(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n width: 100%;\n flex-wrap: wrap;\n"])));
22
-
23
- exports.BmLabels = BmLabels;
24
-
25
- var BmColorLabel = _styledComponents.default.div(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n"])));
26
-
27
- exports.BmColorLabel = BmColorLabel;
28
-
29
- var BmColorLabelPicker = _styledComponents.default.div(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["\n width: 1.429rem;\n height: 1.429rem;\n border-radius: 50%;\n margin: 0.5rem;\n background: ", ";\n"])), function (props) {
30
- return props.color ? props.color : "green";
31
- });
32
-
33
- exports.BmColorLabelPicker = BmColorLabelPicker;
34
-
35
- var BmLabelInfo = _styledComponents.default.div(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n width: 100%;\n > *:not(:first-child) {\n margin-top: 1.143rem;\n }\n"])));
36
-
37
- exports.BmLabelInfo = BmLabelInfo;
@@ -1,39 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.BmNoteFooter = exports.BmNoteDetails = exports.BmNote = exports.BmNoteInfo = exports.BmAddNote = void 0;
7
-
8
- var _styledComponents = _interopRequireDefault(require("styled-components"));
9
-
10
- var _colors = require("../colors");
11
-
12
- var _input = require("../input");
13
-
14
- var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5;
15
-
16
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
17
-
18
- function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
19
-
20
- var BmAddNote = (0, _styledComponents.default)(_input.BmInputField)(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n padding: 1rem 1.143rem;\n display: flex;\n color: ", ";\n background: ", ";\n flex-grow: 1;\n border: none !important;\n &:visited,\n &:active,\n &:hover,\n &:focus {\n outline: none !important;\n text-decoration: none !important;\n }\n"])), _colors.BmSecondaryGrey, _colors.BmGrey100);
21
- exports.BmAddNote = BmAddNote;
22
-
23
- var BmNoteInfo = _styledComponents.default.div(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n width: 100%;\n ", "\n"])), ""
24
- /* margin: 0rem 1.143rem; */
25
- );
26
-
27
- exports.BmNoteInfo = BmNoteInfo;
28
-
29
- var BmNote = _styledComponents.default.div(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n padding: 1rem 1.143rem;\n margin-top: 1.143rem;\n p {\n color: ", ";\n }\n\n border: 0.071rem solid ", ";\n border-radius: 0.21875rem;\n"])), _colors.BmSecondaryGrey, _colors.BmGrey400);
30
-
31
- exports.BmNote = BmNote;
32
-
33
- var BmNoteDetails = _styledComponents.default.div(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n margin-top: 0.857rem;\n width: 50%;\n"])));
34
-
35
- exports.BmNoteDetails = BmNoteDetails;
36
-
37
- var BmNoteFooter = _styledComponents.default.div(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n margin-top: 0.857rem;\n width: 100%;\n > * {\n &:last-child {\n margin-left: auto;\n }\n }\n"])));
38
-
39
- exports.BmNoteFooter = BmNoteFooter;
@@ -1,61 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.BmPreviousAgentMessage = exports.BmPreviousAgentName = exports.BmPreviousAgent = exports.BmPreviousAgentIcon = exports.BmPreviousAgentContent = exports.BmPreviousAgentTitle = exports.BmPreviousAgentWrapper = exports.BmAgentButton = exports.BmAgentPill = exports.BmAgentName = exports.BmAgentSearch = void 0;
7
-
8
- var _styledComponents = _interopRequireDefault(require("styled-components"));
9
-
10
- var _avatars = require("../avatars");
11
-
12
- var _buttons = require("../buttons");
13
-
14
- var _colors = require("../colors");
15
-
16
- var _pills = require("../pills");
17
-
18
- var _search = require("../search");
19
-
20
- var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11;
21
-
22
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
23
-
24
- function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
25
-
26
- var BmAgentSearch = (0, _styledComponents.default)(_search.BmSearch)(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n width: 20vw;\n max-width: 20vw;\n display: flex-end;\n"])));
27
- exports.BmAgentSearch = BmAgentSearch;
28
-
29
- var BmAgentName = _styledComponents.default.p(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n color: ", ";\n margin-top: 1.714rem;\n"])), _colors.BmPrimaryBlack);
30
-
31
- exports.BmAgentName = BmAgentName;
32
- var BmAgentPill = (0, _styledComponents.default)(_pills.BmPill)(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n margin-top: 0.571rem;\n"])));
33
- exports.BmAgentPill = BmAgentPill;
34
- var BmAgentButton = (0, _styledComponents.default)(_buttons.BmButton)(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["\n margin-top: 1.143rem;\n"])));
35
- exports.BmAgentButton = BmAgentButton;
36
-
37
- var BmPreviousAgentWrapper = _styledComponents.default.div(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n padding: 0rem;\n margin: 1.714rem 0rem;\n width: 100%;\n"])));
38
-
39
- exports.BmPreviousAgentWrapper = BmPreviousAgentWrapper;
40
-
41
- var BmPreviousAgentTitle = _styledComponents.default.p(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral(["\n color: ", ";\n display: flex;\n"])), _colors.BmPrimaryBlack);
42
-
43
- exports.BmPreviousAgentTitle = BmPreviousAgentTitle;
44
-
45
- var BmPreviousAgentContent = _styledComponents.default.div(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n padding: 0rem;\n margin-top: 0.571rem;\n width: 100%;\n"])));
46
-
47
- exports.BmPreviousAgentContent = BmPreviousAgentContent;
48
- var BmPreviousAgentIcon = (0, _styledComponents.default)(_avatars.BmAvatar)(_templateObject8 || (_templateObject8 = _taggedTemplateLiteral(["\n margin-right: 1.143rem;\n"])));
49
- exports.BmPreviousAgentIcon = BmPreviousAgentIcon;
50
-
51
- var BmPreviousAgent = _styledComponents.default.div(_templateObject9 || (_templateObject9 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n"])));
52
-
53
- exports.BmPreviousAgent = BmPreviousAgent;
54
-
55
- var BmPreviousAgentName = _styledComponents.default.h3(_templateObject10 || (_templateObject10 = _taggedTemplateLiteral(["\n color: ", ";\n"])), _colors.BmPrimaryBlack);
56
-
57
- exports.BmPreviousAgentName = BmPreviousAgentName;
58
-
59
- var BmPreviousAgentMessage = _styledComponents.default.p(_templateObject11 || (_templateObject11 = _taggedTemplateLiteral(["\n color: ", ";\n"])), _colors.BmPrimaryBlack);
60
-
61
- exports.BmPreviousAgentMessage = BmPreviousAgentMessage;
@@ -1,20 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.ModalBody = void 0;
7
-
8
- var _styledComponents = _interopRequireDefault(require("styled-components"));
9
-
10
- var _templateObject;
11
-
12
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
13
-
14
- function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
15
-
16
- var ModalBody = _styledComponents.default.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n ", "\n margin-top: 0.571rem;\n"])), ''
17
- /* padding: 0rem 1.143rem; */
18
- );
19
-
20
- exports.ModalBody = ModalBody;
@@ -1,24 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.BmFooterButtons = exports.ModalFooter = void 0;
7
-
8
- var _styledComponents = _interopRequireDefault(require("styled-components"));
9
-
10
- var _templateObject, _templateObject2;
11
-
12
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
13
-
14
- function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
15
-
16
- var ModalFooter = _styledComponents.default.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n padding: 1.143rem;\n margin-top: 0.571rem;\n"])));
17
-
18
- exports.ModalFooter = ModalFooter;
19
-
20
- var BmFooterButtons = _styledComponents.default.div(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n display: flex;\n margin-left: auto;\n ", "\n align-items: center;\n justify-content: space-between;\n"])), ''
21
- /* width: 50%; */
22
- );
23
-
24
- exports.BmFooterButtons = BmFooterButtons;