beem-component 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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} +13 -7
  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 +74 -1160
  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 +7 -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} +6 -5
  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} +4 -4
  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 -448
  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,104 @@
1
+ /*
2
+ object-assign
3
+ (c) Sindre Sorhus
4
+ @license MIT
5
+ */
6
+
7
+ /*!
8
+ * Fuse.js v3.6.1 - Lightweight fuzzy-search (http://fusejs.io)
9
+ *
10
+ * Copyright (c) 2012-2017 Kirollos Risk (http://kiro.me)
11
+ * All Rights Reserved. Apache Software License 2.0
12
+ *
13
+ * http://www.apache.org/licenses/LICENSE-2.0
14
+ */
15
+
16
+ /*!
17
+ * https://github.com/es-shims/es5-shim
18
+ * @license es5-shim Copyright 2009-2020 by contributors, MIT License
19
+ * see https://github.com/es-shims/es5-shim/blob/master/LICENSE
20
+ */
21
+
22
+ /*!
23
+ * https://github.com/paulmillr/es6-shim
24
+ * @license es6-shim Copyright 2013-2016 by Paul Miller (http://paulmillr.com)
25
+ * and contributors, MIT License
26
+ * es6-shim: v0.35.4
27
+ * see https://github.com/paulmillr/es6-shim/blob/0.35.3/LICENSE
28
+ * Details and documentation:
29
+ * https://github.com/paulmillr/es6-shim/
30
+ */
31
+
32
+ /*!
33
+ * isobject <https://github.com/jonschlinkert/isobject>
34
+ *
35
+ * Copyright (c) 2014-2017, Jon Schlinkert.
36
+ * Released under the MIT License.
37
+ */
38
+
39
+ /**
40
+ * React Router DOM v6.1.1
41
+ *
42
+ * Copyright (c) Remix Software Inc.
43
+ *
44
+ * This source code is licensed under the MIT license found in the
45
+ * LICENSE.md file in the root directory of this source tree.
46
+ *
47
+ * @license MIT
48
+ */
49
+
50
+ /**
51
+ * React Router v6.1.1
52
+ *
53
+ * Copyright (c) Remix Software Inc.
54
+ *
55
+ * This source code is licensed under the MIT license found in the
56
+ * LICENSE.md file in the root directory of this source tree.
57
+ *
58
+ * @license MIT
59
+ */
60
+
61
+ /** @license React v0.20.2
62
+ * scheduler.production.min.js
63
+ *
64
+ * Copyright (c) Facebook, Inc. and its affiliates.
65
+ *
66
+ * This source code is licensed under the MIT license found in the
67
+ * LICENSE file in the root directory of this source tree.
68
+ */
69
+
70
+ /** @license React v16.13.1
71
+ * react-is.production.min.js
72
+ *
73
+ * Copyright (c) Facebook, Inc. and its affiliates.
74
+ *
75
+ * This source code is licensed under the MIT license found in the
76
+ * LICENSE file in the root directory of this source tree.
77
+ */
78
+
79
+ /** @license React v17.0.2
80
+ * react-dom.production.min.js
81
+ *
82
+ * Copyright (c) Facebook, Inc. and its affiliates.
83
+ *
84
+ * This source code is licensed under the MIT license found in the
85
+ * LICENSE file in the root directory of this source tree.
86
+ */
87
+
88
+ /** @license React v17.0.2
89
+ * react-is.production.min.js
90
+ *
91
+ * Copyright (c) Facebook, Inc. and its affiliates.
92
+ *
93
+ * This source code is licensed under the MIT license found in the
94
+ * LICENSE file in the root directory of this source tree.
95
+ */
96
+
97
+ /** @license React v17.0.2
98
+ * react.production.min.js
99
+ *
100
+ * Copyright (c) Facebook, Inc. and its affiliates.
101
+ *
102
+ * This source code is licensed under the MIT license found in the
103
+ * LICENSE file in the root directory of this source tree.
104
+ */