@mohamed-karawia/library 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (539) hide show
  1. package/.github/workflows/chromatic.yml +26 -0
  2. package/.storybook/main.js +21 -0
  3. package/.storybook/middleware.js +28 -0
  4. package/.storybook/preview.js +9 -0
  5. package/CHANGELOG.md +66 -0
  6. package/LICENSE +21 -0
  7. package/README.md +23 -0
  8. package/README.old.md +3 -0
  9. package/build-storybook.log +2704 -0
  10. package/dist/index.js +311 -0
  11. package/dist/stories/API/API.js +48 -0
  12. package/dist/stories/API/API.stories.js +24 -0
  13. package/dist/stories/Agora/Call/Call.js +316 -0
  14. package/dist/stories/Agora/Chat/Chat.js +107 -0
  15. package/dist/stories/Agora/Chat/Chat.stories.js +24 -0
  16. package/dist/stories/Agora/Chat/Components/ChatItem/ChatItem.js +34 -0
  17. package/dist/stories/Agora/Chat/Components/ChatRoom/ChatRoom.js +199 -0
  18. package/dist/stories/Agora/Controls/Controls.js +80 -0
  19. package/dist/stories/Agora/Preview/PreviewCamera.js +247 -0
  20. package/dist/stories/Agora/Preview/ShareScreen.js +119 -0
  21. package/dist/stories/Agora/Room/Room.js +114 -0
  22. package/dist/stories/Agora/Room/Room.stories.js +24 -0
  23. package/dist/stories/Buttons/Buttons/Buttons.js +59 -0
  24. package/dist/stories/Buttons/Buttons/Buttons.stories.js +39 -0
  25. package/dist/stories/Buttons/ReactModal/ReactModal.js +94 -0
  26. package/dist/stories/Buttons/ReactModal/ReactModal.stories.js +30 -0
  27. package/dist/stories/Buttons/ReactModal/ReactModalDemo.js +17 -0
  28. package/dist/stories/Chat/Chat.js +76 -0
  29. package/dist/stories/Chat/Chat.stories.js +76 -0
  30. package/dist/stories/Common Inputs/CheckboxGroup/CheckboxGroup.js +59 -0
  31. package/dist/stories/Common Inputs/CheckboxGroup/CheckboxGroup.stories.js +58 -0
  32. package/dist/stories/Common Inputs/CustomAutoComplete/CustomAutoComplete.js +93 -0
  33. package/dist/stories/Common Inputs/CustomAutoComplete/CustomAutoComplete.stories.js +56 -0
  34. package/dist/stories/Common Inputs/CustomDropzone/CustomDropZone.js +88 -0
  35. package/dist/stories/Common Inputs/CustomDropzone/CustomDropzone.stories.js +47 -0
  36. package/dist/stories/Common Inputs/CustomSelect/CustomSelect.js +92 -0
  37. package/dist/stories/Common Inputs/CustomSelect/CustomSelect.stories.js +61 -0
  38. package/dist/stories/Common Inputs/CustomTextarea/CustomTextarea.js +65 -0
  39. package/dist/stories/Common Inputs/CustomTextarea/CustomTextarea.stories.js +48 -0
  40. package/dist/stories/Common Inputs/DatePicker/DatePicker.js +104 -0
  41. package/dist/stories/Common Inputs/DatePicker/DatePicker.stories.js +60 -0
  42. package/dist/stories/Common Inputs/DatePicker/SingleDatePicker.js +97 -0
  43. package/dist/stories/Common Inputs/DropZone.js +148 -0
  44. package/dist/stories/Common Inputs/EditorComponent/EditorComponent.js +84 -0
  45. package/dist/stories/Common Inputs/EditorComponent/EditorComponent.stories.js +62 -0
  46. package/dist/stories/Common Inputs/EditorComponent/constants.js +41 -0
  47. package/dist/stories/Common Inputs/Formik/InputField/InputField.js +35 -0
  48. package/dist/stories/Common Inputs/Formik/InputField/InputField.stories.js +43 -0
  49. package/dist/stories/Common Inputs/Formik/RadioField/RadioField.js +54 -0
  50. package/dist/stories/Common Inputs/Formik/RadioField/RadioField.stories.js +60 -0
  51. package/dist/stories/Common Inputs/RadioInput/RadioInput.js +115 -0
  52. package/dist/stories/Common Inputs/RadioInput/RadioInput.stories.js +50 -0
  53. package/dist/stories/Common Inputs/RichTextInput/Components/Emoji/Emoji.js +31 -0
  54. package/dist/stories/Common Inputs/RichTextInput/Components/Gif/Gif.js +88 -0
  55. package/dist/stories/Common Inputs/RichTextInput/RichTextInput.js +278 -0
  56. package/dist/stories/Common Inputs/RichTextInput/RichTextInput.stories.js +51 -0
  57. package/dist/stories/Common Inputs/TextField/TextField.js +65 -0
  58. package/dist/stories/Common Inputs/TextField/TextField.stories.js +48 -0
  59. package/dist/stories/Containers/BaseMaterial.js +65 -0
  60. package/dist/stories/Containers/BaseMaterial.stories.js +24 -0
  61. package/dist/stories/Containers/WidgetExample/WidgetBody.js +17 -0
  62. package/dist/stories/Containers/WidgetExample/WidgetBody.stories.js +24 -0
  63. package/dist/stories/Containers/WidgetExample/WidgetExample.js +23 -0
  64. package/dist/stories/Containers/WidgetExample/WidgetExample.stories.js +24 -0
  65. package/dist/stories/Containers/WidgetExample/WidgetHead.js +17 -0
  66. package/dist/stories/Containers/WidgetExample/WidgetHead.stories.js +24 -0
  67. package/dist/stories/Enrollment/Admin/CreateForm/CreateForm.js +83 -0
  68. package/dist/stories/Enrollment/Admin/CreateForm/CreateForm.stories.js +22 -0
  69. package/dist/stories/Enrollment/Admin/DetailedForm/DetailedForm.js +81 -0
  70. package/dist/stories/Enrollment/Admin/DetailedForm/DetailedForm.stories.js +42 -0
  71. package/dist/stories/Enrollment/Admin/ViewForms/ViewForms.js +46 -0
  72. package/dist/stories/Enrollment/Admin/ViewForms/ViewForms.stories.js +65 -0
  73. package/dist/stories/Enrollment/Guest/FillForm/FillForm.js +64 -0
  74. package/dist/stories/Enrollment/Guest/FillForm/FillForm.stories.js +48 -0
  75. package/dist/stories/Events/CreateEvent/CreateEvent.js +110 -0
  76. package/dist/stories/Events/CreateEvent/CreateEvent.stories.js +30 -0
  77. package/dist/stories/Events/Event/Event.js +94 -0
  78. package/dist/stories/Events/Event/Event.stories.js +33 -0
  79. package/dist/stories/Events/EventsList/EventsList.js +135 -0
  80. package/dist/stories/Events/EventsList/EventsList.stories.js +44 -0
  81. package/dist/stories/Forms/AddPhoto/AddPhoto.js +101 -0
  82. package/dist/stories/Forms/AddPhoto/AddPhoto.stories.js +47 -0
  83. package/dist/stories/Forms/AddSong/AddSong.js +98 -0
  84. package/dist/stories/Forms/AddSong/AddSong.stories.js +37 -0
  85. package/dist/stories/Forms/AddVideo/AddVideo.js +103 -0
  86. package/dist/stories/Forms/AddVideo/AddVideo.stories.js +33 -0
  87. package/dist/stories/Forms/Create-Profile/CreateProfile.js +229 -0
  88. package/dist/stories/Forms/Create-Profile/CreateProfile.stories.js +49 -0
  89. package/dist/stories/Forms/Create-Profile/subcomponents/LogoUploader.js +54 -0
  90. package/dist/stories/Forms/Create-Profile/subcomponents/LogoUploader.stories.js +42 -0
  91. package/dist/stories/Forms/Create-Profile/subcomponents/ProfilePhoto.js +49 -0
  92. package/dist/stories/Forms/Create-Profile/subcomponents/ProfilePhoto.stories.js +41 -0
  93. package/dist/stories/Forms/Create-Profile/subcomponents/ResetBtn.js +41 -0
  94. package/dist/stories/Forms/Create-Profile/subcomponents/ResetBtn.stories.js +32 -0
  95. package/dist/stories/Forms/CreateAlbum/CreateAlbum.js +95 -0
  96. package/dist/stories/Forms/CreateAlbum/CreateAlbum.stories.js +47 -0
  97. package/dist/stories/Forms/CreateAnnouncementForm/CreateAnnouncementForm.js +84 -0
  98. package/dist/stories/Forms/CreateAnnouncementForm/CreateAnnouncementForm.stories.js +58 -0
  99. package/dist/stories/Forms/CreateMusicAlbum/CreateMusicAlbum.js +100 -0
  100. package/dist/stories/Forms/CreateMusicAlbum/CreateMusicAlbum.stories.js +47 -0
  101. package/dist/stories/Forms/CreateProfile/CreateProfile.js +383 -0
  102. package/dist/stories/Forms/CreateProfile/CreateProfile.stories.js +24 -0
  103. package/dist/stories/Forms/CreateProfile-3/CreateProfile.js +324 -0
  104. package/dist/stories/Forms/CreateProfile-3/CreateProfile.stories.js +24 -0
  105. package/dist/stories/Forms/CreateUser/CreateUser.js +27 -0
  106. package/dist/stories/Forms/CreateUser/CreateUser.stories.js +26 -0
  107. package/dist/stories/Forms/CreateVideoAlbum/CreateVideoAlbum.js +84 -0
  108. package/dist/stories/Forms/CreateVideoAlbum/CreateVideoAlbum.stories.js +37 -0
  109. package/dist/stories/Forms/Form/Form.js +35 -0
  110. package/dist/stories/Forms/Form/Form.stories.js +24 -0
  111. package/dist/stories/Forms/NewProfile/NewProfile.js +450 -0
  112. package/dist/stories/Forms/NewProfile/NewProfile.stories.js +24 -0
  113. package/dist/stories/Layout/Body/Body.js +30 -0
  114. package/dist/stories/Layout/Body/Body.stories.js +30 -0
  115. package/dist/stories/Layout/Center/Center.js +26 -0
  116. package/dist/stories/Layout/Center/Center.stories.js +24 -0
  117. package/dist/stories/Layout/Head/Head.js +24 -0
  118. package/dist/stories/Layout/Head/Head.stories.js +24 -0
  119. package/dist/stories/Layout/Left/Left.js +28 -0
  120. package/dist/stories/Layout/Left/Left.stories.js +24 -0
  121. package/dist/stories/Layout/Right/Right.js +27 -0
  122. package/dist/stories/Layout/Right/Right.stories.js +24 -0
  123. package/dist/stories/Library/CreateFolder/CreateFolder.js +87 -0
  124. package/dist/stories/Library/CreateFolder/CreateFolder.stories.js +45 -0
  125. package/dist/stories/Library/Folders/Folders.js +126 -0
  126. package/dist/stories/Library/Folders/Folders.stories.js +55 -0
  127. package/dist/stories/Library/Notes/Notes.js +135 -0
  128. package/dist/stories/Library/Notes/Notes.stories.js +42 -0
  129. package/dist/stories/Library/ViewNote/ViewNote.js +30 -0
  130. package/dist/stories/Library/ViewNote/ViewNote.stories.js +24 -0
  131. package/dist/stories/Misc/Thumbnail/Thumbnail.js +118 -0
  132. package/dist/stories/Music Album/ViewAlbum/ViewAlbum.js +131 -0
  133. package/dist/stories/Music Album/ViewAlbum/ViewAlbum.stories.js +115 -0
  134. package/dist/stories/Music Album/ViewAlbums/ViewAlbums.js +149 -0
  135. package/dist/stories/Music Album/ViewAlbums/ViewAlbums.stories.js +107 -0
  136. package/dist/stories/Navbar/Navbar.js +346 -0
  137. package/dist/stories/Navbar/Navbar.stories.js +41 -0
  138. package/dist/stories/Pages/Blank/Blank.js +36 -0
  139. package/dist/stories/Pages/Blank/Blank.stories.js +24 -0
  140. package/dist/stories/Pages/Centered/Centered.js +34 -0
  141. package/dist/stories/Pages/Centered/Centered.stories.js +24 -0
  142. package/dist/stories/Pages/Chat/Chat.js +86 -0
  143. package/dist/stories/Pages/Chat/Chat.stories.js +74 -0
  144. package/dist/stories/Pages/Enrollment/DetailedForm/DetailedForm.js +96 -0
  145. package/dist/stories/Pages/Enrollment/DetailedForm/DetailedForm.stories.js +22 -0
  146. package/dist/stories/Pages/Enrollment/FillForm/FillForm.js +102 -0
  147. package/dist/stories/Pages/Enrollment/FillForm/FillForm.stories.js +22 -0
  148. package/dist/stories/Pages/Enrollment/Forms/Forms.js +125 -0
  149. package/dist/stories/Pages/Enrollment/Forms/Forms.stories.js +22 -0
  150. package/dist/stories/Pages/Events/Event/Event.js +89 -0
  151. package/dist/stories/Pages/Events/Event/Event.stories.js +22 -0
  152. package/dist/stories/Pages/Events/Events/Events.js +125 -0
  153. package/dist/stories/Pages/Events/Events/Events.stories.js +22 -0
  154. package/dist/stories/Pages/Library/Folders/Library.js +136 -0
  155. package/dist/stories/Pages/Library/Folders/Library.stories.js +22 -0
  156. package/dist/stories/Pages/Library/Notes/Notes.js +123 -0
  157. package/dist/stories/Pages/Library/Notes/Notes.stories.js +22 -0
  158. package/dist/stories/Pages/Music/MusicAlbum/Music.js +211 -0
  159. package/dist/stories/Pages/Music/MusicAlbum/Music.stories.js +22 -0
  160. package/dist/stories/Pages/Music/MusicAlbums/MusicAlbums.js +155 -0
  161. package/dist/stories/Pages/Music/MusicAlbums/MusicAlbums.stories.js +22 -0
  162. package/dist/stories/Pages/Photos/Album/Album.js +164 -0
  163. package/dist/stories/Pages/Photos/Album/Album.stories.js +22 -0
  164. package/dist/stories/Pages/Photos/Albums/Albums.js +151 -0
  165. package/dist/stories/Pages/Photos/Albums/Albums.stories.js +22 -0
  166. package/dist/stories/Pages/Video/DetailedVideo/DetailedVideo.js +112 -0
  167. package/dist/stories/Pages/Video/DetailedVideo/DetailedVideo.stories.js +22 -0
  168. package/dist/stories/Pages/Video/VideoAlbum/Video.js +216 -0
  169. package/dist/stories/Pages/Video/VideoAlbum/Video.stories.js +22 -0
  170. package/dist/stories/Pages/ViewWorld/ViewWorld.js +244 -0
  171. package/dist/stories/Pages/ViewWorld/ViewWorld.stories.js +264 -0
  172. package/dist/stories/Pages/ViewWorld/constatnts.js +172 -0
  173. package/dist/stories/Photo Album/DetailedPhoto/DetailedPhoto.js +24 -0
  174. package/dist/stories/Photo Album/DetailedPhoto/DetailedPhoto.stories.js +32 -0
  175. package/dist/stories/Photo Album/ViewAlbum/ViewAlbum.js +236 -0
  176. package/dist/stories/Photo Album/ViewAlbum/ViewAlbum.stories.js +115 -0
  177. package/dist/stories/Photo Album/ViewAlbums/ViewAlbums.js +156 -0
  178. package/dist/stories/Photo Album/ViewAlbums/ViewAlbums.stories.js +102 -0
  179. package/dist/stories/Reusable Components/Cards/Card-style-1/CardStyle1.js +67 -0
  180. package/dist/stories/Reusable Components/Cards/Card-style-1/CardStyle1.stories.js +35 -0
  181. package/dist/stories/Reusable Components/Cards/Card-style-10/CardStyle10.js +81 -0
  182. package/dist/stories/Reusable Components/Cards/Card-style-10/CardStyle10.stories.js +37 -0
  183. package/dist/stories/Reusable Components/Cards/Card-style-11/CardStyle11.js +67 -0
  184. package/dist/stories/Reusable Components/Cards/Card-style-11/CardStyle11.stories.js +40 -0
  185. package/dist/stories/Reusable Components/Cards/Card-style-2/CardStyle2.js +67 -0
  186. package/dist/stories/Reusable Components/Cards/Card-style-2/CardStyle2.stories.js +37 -0
  187. package/dist/stories/Reusable Components/Cards/Card-style-3/CardStyle3.js +65 -0
  188. package/dist/stories/Reusable Components/Cards/Card-style-3/CardStyle3.stories.js +34 -0
  189. package/dist/stories/Reusable Components/Cards/Card-style-4/CardStyle4.js +66 -0
  190. package/dist/stories/Reusable Components/Cards/Card-style-4/CardStyle4.stories.js +39 -0
  191. package/dist/stories/Reusable Components/Cards/Card-style-6/CardStyle6.js +93 -0
  192. package/dist/stories/Reusable Components/Cards/Card-style-6/CardStyle6.stories.js +27 -0
  193. package/dist/stories/Reusable Components/Cards/Card-style-7/CardStyle7.js +88 -0
  194. package/dist/stories/Reusable Components/Cards/Card-style-7/CardStyle7.stories.js +37 -0
  195. package/dist/stories/Reusable Components/Cards/Card-style-8/CardStyle8.js +86 -0
  196. package/dist/stories/Reusable Components/Cards/Card-style-8/CardStyle8.stories.js +44 -0
  197. package/dist/stories/Reusable Components/Cards/Card-style-9/CardStyle9.js +67 -0
  198. package/dist/stories/Reusable Components/Cards/Card-style-9/CardStyle9.stories.js +27 -0
  199. package/dist/stories/Reusable Components/Cards/Card.js +102 -0
  200. package/dist/stories/Reusable Components/Cards/Card.stories.js +132 -0
  201. package/dist/stories/Reusable Components/Cards/globalCardStyles.js +70 -0
  202. package/dist/stories/Reusable Components/Controls/Controls.js +128 -0
  203. package/dist/stories/Reusable Components/Controls/Controls.stories.js +49 -0
  204. package/dist/stories/Reusable Components/Gallery/Gallery.js +120 -0
  205. package/dist/stories/Reusable Components/Gallery/Gallery.stories.js +56 -0
  206. package/dist/stories/Reusable Components/Lists/Cards/ListCard-1.js +1 -0
  207. package/dist/stories/Reusable Components/Lists/Cards/ListCard-1.stories.js +1 -0
  208. package/dist/stories/Reusable Components/Lists/List.js +1 -0
  209. package/dist/stories/Reusable Components/Lists/List.stories.js +1 -0
  210. package/dist/stories/Reusable Components/Mention/Mention.js +72 -0
  211. package/dist/stories/Reusable Components/Mention/Mention.stories.js +66 -0
  212. package/dist/stories/Reusable Components/ReactModal/ReactModal.js +83 -0
  213. package/dist/stories/Reusable Components/ReusableForm/ReusableForm.js +100 -0
  214. package/dist/stories/Reusable Components/ReusableForm/ReusableForm.stories.js +207 -0
  215. package/dist/stories/Reusable Components/ReusableHeader/ReusableHeader.js +64 -0
  216. package/dist/stories/Reusable Components/ReusableHeader/ReusableHeader.stories.js +35 -0
  217. package/dist/stories/Reusable Components/ReusableList/ReusableList.js +92 -0
  218. package/dist/stories/Reusable Components/ReusableList/ReusableList.stories.js +84 -0
  219. package/dist/stories/Reusable Components/SearchCard/SearchCard.js +81 -0
  220. package/dist/stories/Reusable Components/SearchCard/SearchCard.stories.js +24 -0
  221. package/dist/stories/Reusable Components/SpaceContainer/SpaceContainer.js +48 -0
  222. package/dist/stories/Reusable Components/SpaceContainer/SpaceContainer.stories.js +80 -0
  223. package/dist/stories/Reusable Components/Spinner/Spinner.js +28 -0
  224. package/dist/stories/Reusable Components/Spinner/Spinner.stories.js +22 -0
  225. package/dist/stories/Reusable Components/WidgetContainer/WidgetContainer.js +51 -0
  226. package/dist/stories/Reusable Components/WidgetContainer/WidgetContainer.stories.js +80 -0
  227. package/dist/stories/Reusable Components/commonStyles.js +54 -0
  228. package/dist/stories/Reusable Components/fakeData.js +112 -0
  229. package/dist/stories/Spaces/WelcomeSpace/WelcomeSpace.js +74 -0
  230. package/dist/stories/Spaces/WelcomeSpace/WelcomeSpace.stories.js +24 -0
  231. package/dist/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.js +151 -0
  232. package/dist/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.stories.js +101 -0
  233. package/dist/stories/VideoAlbum/Comments/Comments.js +58 -0
  234. package/dist/stories/VideoAlbum/Comments/Comments.stories.js +45 -0
  235. package/dist/stories/VideoAlbum/VideoPlayer/VideoPlayer.js +235 -0
  236. package/dist/stories/VideoAlbum/VideoPlayer/VideoPlayer.stories.js +149 -0
  237. package/dist/stories/VideoAlbum/VideoSpace/VideoSpace.js +110 -0
  238. package/dist/stories/VideoAlbum/VideoSpace/VideoSpace.stories.js +49 -0
  239. package/dist/stories/VideoAlbum/ViewAlbum/ViewAlbum.js +150 -0
  240. package/dist/stories/VideoAlbum/ViewAlbum/ViewAlbum.stories.js +113 -0
  241. package/dist/stories/Widgets/LogoWidget/LogoWidget.js +32 -0
  242. package/dist/stories/Widgets/LogoWidget/LogoWidget.stories.js +26 -0
  243. package/dist/stories/Widgets/MusicPlayer/MusicPlayer.js +49 -0
  244. package/dist/stories/Widgets/MusicPlayer/MusicPlayer.stories.js +44 -0
  245. package/dist/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.js +93 -0
  246. package/dist/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.stories.js +52 -0
  247. package/dist/stories/Widgets/SpacesList/SpacesList.js +28 -0
  248. package/dist/stories/Widgets/SpacesList/SpacesList.stories.js +52 -0
  249. package/dist/stories/Widgets/SpacesList/SpacesListItem.js +50 -0
  250. package/dist/stories/Widgets/SpacesList/SpacesListItem.stories.js +24 -0
  251. package/dist/stories/helpers/util.js +178 -0
  252. package/package.json +131 -0
  253. package/public/favicon.ico +0 -0
  254. package/public/index.html +43 -0
  255. package/public/logo192.png +0 -0
  256. package/public/logo512.png +0 -0
  257. package/public/manifest.json +25 -0
  258. package/public/robots.txt +3 -0
  259. package/src/assets/add-svgrepo-com.svg +36 -0
  260. package/src/assets/basket-svgrepo-com.svg +42 -0
  261. package/src/assets/bell-svgrepo-com.svg +44 -0
  262. package/src/assets/compass-svgrepo-com.svg +54 -0
  263. package/src/assets/home-svgrepo-com.svg +42 -0
  264. package/src/assets/medal-svgrepo-com.svg +53 -0
  265. package/src/assets/search-svgrepo-com.svg +42 -0
  266. package/src/assets/settings-svgrepo-com.svg +47 -0
  267. package/src/index.js +95 -0
  268. package/src/stories/API/API.jsx +47 -0
  269. package/src/stories/API/API.stories.js +10 -0
  270. package/src/stories/Agora/Call/Call.jsx +213 -0
  271. package/src/stories/Agora/Chat/Chat.jsx +130 -0
  272. package/src/stories/Agora/Chat/Chat.stories.jsx +10 -0
  273. package/src/stories/Agora/Chat/Components/ChatItem/ChatItem.jsx +38 -0
  274. package/src/stories/Agora/Chat/Components/ChatRoom/ChatRoom.jsx +167 -0
  275. package/src/stories/Agora/Controls/Controls.jsx +56 -0
  276. package/src/stories/Agora/Preview/PreviewCamera.jsx +259 -0
  277. package/src/stories/Agora/Preview/ShareScreen.jsx +58 -0
  278. package/src/stories/Agora/Room/Room.jsx +85 -0
  279. package/src/stories/Agora/Room/Room.stories.jsx +10 -0
  280. package/src/stories/Buttons/Buttons/Buttons.jsx +57 -0
  281. package/src/stories/Buttons/Buttons/Buttons.stories.jsx +24 -0
  282. package/src/stories/Buttons/ReactModal/ReactModal.jsx +81 -0
  283. package/src/stories/Buttons/ReactModal/ReactModal.stories.jsx +18 -0
  284. package/src/stories/Buttons/ReactModal/ReactModalDemo.jsx +12 -0
  285. package/src/stories/Chat/Chat.jsx +74 -0
  286. package/src/stories/Chat/Chat.stories.jsx +59 -0
  287. package/src/stories/Common Inputs/CheckboxGroup/CheckboxGroup.jsx +70 -0
  288. package/src/stories/Common Inputs/CheckboxGroup/CheckboxGroup.stories.jsx +32 -0
  289. package/src/stories/Common Inputs/CustomAutoComplete/CustomAutoComplete.jsx +98 -0
  290. package/src/stories/Common Inputs/CustomAutoComplete/CustomAutoComplete.stories.jsx +35 -0
  291. package/src/stories/Common Inputs/CustomDropzone/CustomDropZone.jsx +115 -0
  292. package/src/stories/Common Inputs/CustomDropzone/CustomDropzone.stories.jsx +26 -0
  293. package/src/stories/Common Inputs/CustomSelect/CustomSelect.jsx +89 -0
  294. package/src/stories/Common Inputs/CustomSelect/CustomSelect.stories.jsx +36 -0
  295. package/src/stories/Common Inputs/CustomTextarea/CustomTextarea.jsx +66 -0
  296. package/src/stories/Common Inputs/CustomTextarea/CustomTextarea.stories.jsx +31 -0
  297. package/src/stories/Common Inputs/DatePicker/DatePicker.jsx +105 -0
  298. package/src/stories/Common Inputs/DatePicker/DatePicker.stories.jsx +47 -0
  299. package/src/stories/Common Inputs/DatePicker/SingleDatePicker.jsx +91 -0
  300. package/src/stories/Common Inputs/DropZone.jsx +79 -0
  301. package/src/stories/Common Inputs/EditorComponent/EditorComponent.jsx +54 -0
  302. package/src/stories/Common Inputs/EditorComponent/EditorComponent.stories.jsx +60 -0
  303. package/src/stories/Common Inputs/EditorComponent/constants.js +26 -0
  304. package/src/stories/Common Inputs/Formik/InputField/InputField.jsx +24 -0
  305. package/src/stories/Common Inputs/Formik/InputField/InputField.stories.jsx +27 -0
  306. package/src/stories/Common Inputs/Formik/RadioField/RadioField.jsx +55 -0
  307. package/src/stories/Common Inputs/Formik/RadioField/RadioField.stories.jsx +41 -0
  308. package/src/stories/Common Inputs/RadioInput/RadioInput.jsx +108 -0
  309. package/src/stories/Common Inputs/RadioInput/RadioInput.stories.js +30 -0
  310. package/src/stories/Common Inputs/RichTextInput/Components/Emoji/Emoji.jsx +16 -0
  311. package/src/stories/Common Inputs/RichTextInput/Components/Gif/Gif.jsx +64 -0
  312. package/src/stories/Common Inputs/RichTextInput/RichTextInput.jsx +331 -0
  313. package/src/stories/Common Inputs/RichTextInput/RichTextInput.stories.js +45 -0
  314. package/src/stories/Common Inputs/TextField/TextField.jsx +66 -0
  315. package/src/stories/Common Inputs/TextField/TextField.stories.jsx +31 -0
  316. package/src/stories/Containers/BaseMaterial.jsx +58 -0
  317. package/src/stories/Containers/BaseMaterial.stories.js +10 -0
  318. package/src/stories/Containers/WidgetExample/WidgetBody.jsx +9 -0
  319. package/src/stories/Containers/WidgetExample/WidgetBody.stories.js +10 -0
  320. package/src/stories/Containers/WidgetExample/WidgetExample.jsx +19 -0
  321. package/src/stories/Containers/WidgetExample/WidgetExample.stories.js +10 -0
  322. package/src/stories/Containers/WidgetExample/WidgetHead.jsx +9 -0
  323. package/src/stories/Containers/WidgetExample/WidgetHead.stories.js +10 -0
  324. package/src/stories/Enrollment/Admin/CreateForm/CreateForm.jsx +62 -0
  325. package/src/stories/Enrollment/Admin/CreateForm/CreateForm.stories.jsx +8 -0
  326. package/src/stories/Enrollment/Admin/DetailedForm/DetailedForm.jsx +98 -0
  327. package/src/stories/Enrollment/Admin/DetailedForm/DetailedForm.stories.jsx +36 -0
  328. package/src/stories/Enrollment/Admin/ViewForms/ViewForms.jsx +40 -0
  329. package/src/stories/Enrollment/Admin/ViewForms/ViewForms.stories.jsx +66 -0
  330. package/src/stories/Enrollment/Guest/FillForm/FillForm.jsx +61 -0
  331. package/src/stories/Enrollment/Guest/FillForm/FillForm.stories.jsx +27 -0
  332. package/src/stories/Events/CreateEvent/CreateEvent.jsx +96 -0
  333. package/src/stories/Events/CreateEvent/CreateEvent.stories.jsx +19 -0
  334. package/src/stories/Events/Event/Event.jsx +113 -0
  335. package/src/stories/Events/Event/Event.stories.jsx +21 -0
  336. package/src/stories/Events/EventsList/EventsList.jsx +117 -0
  337. package/src/stories/Events/EventsList/EventsList.stories.jsx +25 -0
  338. package/src/stories/Forms/AddPhoto/AddPhoto.jsx +85 -0
  339. package/src/stories/Forms/AddPhoto/AddPhoto.stories.jsx +37 -0
  340. package/src/stories/Forms/AddSong/AddSong.jsx +86 -0
  341. package/src/stories/Forms/AddSong/AddSong.stories.jsx +26 -0
  342. package/src/stories/Forms/AddVideo/AddVideo.jsx +78 -0
  343. package/src/stories/Forms/AddVideo/AddVideo.stories.jsx +20 -0
  344. package/src/stories/Forms/Create-Profile/CreateProfile.jsx +278 -0
  345. package/src/stories/Forms/Create-Profile/CreateProfile.stories.jsx +36 -0
  346. package/src/stories/Forms/Create-Profile/subcomponents/LogoUploader.jsx +63 -0
  347. package/src/stories/Forms/Create-Profile/subcomponents/LogoUploader.stories.jsx +27 -0
  348. package/src/stories/Forms/Create-Profile/subcomponents/ProfilePhoto.jsx +58 -0
  349. package/src/stories/Forms/Create-Profile/subcomponents/ProfilePhoto.stories.jsx +26 -0
  350. package/src/stories/Forms/Create-Profile/subcomponents/ResetBtn.jsx +21 -0
  351. package/src/stories/Forms/Create-Profile/subcomponents/ResetBtn.stories.jsx +18 -0
  352. package/src/stories/Forms/CreateAlbum/CreateAlbum.jsx +82 -0
  353. package/src/stories/Forms/CreateAlbum/CreateAlbum.stories.jsx +37 -0
  354. package/src/stories/Forms/CreateAnnouncementForm/CreateAnnouncementForm.jsx +63 -0
  355. package/src/stories/Forms/CreateAnnouncementForm/CreateAnnouncementForm.stories.jsx +44 -0
  356. package/src/stories/Forms/CreateMusicAlbum/CreateMusicAlbum.jsx +87 -0
  357. package/src/stories/Forms/CreateMusicAlbum/CreateMusicAlbum.stories.jsx +38 -0
  358. package/src/stories/Forms/CreateProfile/CreateProfile.jsx +556 -0
  359. package/src/stories/Forms/CreateProfile/CreateProfile.stories.js +10 -0
  360. package/src/stories/Forms/CreateProfile-3/CreateProfile.jsx +488 -0
  361. package/src/stories/Forms/CreateProfile-3/CreateProfile.stories.js +10 -0
  362. package/src/stories/Forms/CreateUser/CreateUser.jsx +13 -0
  363. package/src/stories/Forms/CreateUser/CreateUser.stories.js +10 -0
  364. package/src/stories/Forms/CreateVideoAlbum/CreateVideoAlbum.jsx +78 -0
  365. package/src/stories/Forms/CreateVideoAlbum/CreateVideoAlbum.stories.jsx +23 -0
  366. package/src/stories/Forms/Form/Form.jsx +34 -0
  367. package/src/stories/Forms/Form/Form.stories.js +10 -0
  368. package/src/stories/Forms/NewProfile/NewProfile.jsx +464 -0
  369. package/src/stories/Forms/NewProfile/NewProfile.stories.jsx +10 -0
  370. package/src/stories/Forms/NewProfile/presets.json +9 -0
  371. package/src/stories/Layout/Body/Body.jsx +24 -0
  372. package/src/stories/Layout/Body/Body.stories.js +26 -0
  373. package/src/stories/Layout/Center/Center.jsx +16 -0
  374. package/src/stories/Layout/Center/Center.stories.js +14 -0
  375. package/src/stories/Layout/Head/Head.jsx +15 -0
  376. package/src/stories/Layout/Head/Head.stories.js +10 -0
  377. package/src/stories/Layout/Left/Left.jsx +21 -0
  378. package/src/stories/Layout/Left/Left.stories.js +14 -0
  379. package/src/stories/Layout/Right/Right.jsx +17 -0
  380. package/src/stories/Layout/Right/Right.stories.js +14 -0
  381. package/src/stories/Library/CreateFolder/CreateFolder.jsx +78 -0
  382. package/src/stories/Library/CreateFolder/CreateFolder.stories.jsx +32 -0
  383. package/src/stories/Library/Folders/Folders.jsx +117 -0
  384. package/src/stories/Library/Folders/Folders.stories.jsx +34 -0
  385. package/src/stories/Library/Notes/Notes.jsx +117 -0
  386. package/src/stories/Library/Notes/Notes.stories.jsx +24 -0
  387. package/src/stories/Library/ViewNote/ViewNote.jsx +25 -0
  388. package/src/stories/Library/ViewNote/ViewNote.stories.jsx +16 -0
  389. package/src/stories/Misc/Thumbnail/Thumbnail.jsx +79 -0
  390. package/src/stories/Music Album/ViewAlbum/ViewAlbum.jsx +111 -0
  391. package/src/stories/Music Album/ViewAlbum/ViewAlbum.stories.jsx +60 -0
  392. package/src/stories/Music Album/ViewAlbums/ViewAlbums.jsx +134 -0
  393. package/src/stories/Music Album/ViewAlbums/ViewAlbums.stories.jsx +57 -0
  394. package/src/stories/Navbar/Navbar.jsx +350 -0
  395. package/src/stories/Navbar/Navbar.stories.js +25 -0
  396. package/src/stories/Pages/Blank/Blank.jsx +32 -0
  397. package/src/stories/Pages/Blank/Blank.stories.js +10 -0
  398. package/src/stories/Pages/Centered/Centered.jsx +31 -0
  399. package/src/stories/Pages/Centered/Centered.stories.js +14 -0
  400. package/src/stories/Pages/Chat/Chat.jsx +82 -0
  401. package/src/stories/Pages/Chat/Chat.stories.jsx +53 -0
  402. package/src/stories/Pages/Enrollment/DetailedForm/DetailedForm.jsx +102 -0
  403. package/src/stories/Pages/Enrollment/DetailedForm/DetailedForm.stories.jsx +8 -0
  404. package/src/stories/Pages/Enrollment/FillForm/FillForm.jsx +96 -0
  405. package/src/stories/Pages/Enrollment/FillForm/FillForm.stories.jsx +8 -0
  406. package/src/stories/Pages/Enrollment/Forms/Forms.jsx +129 -0
  407. package/src/stories/Pages/Enrollment/Forms/Forms.stories.jsx +8 -0
  408. package/src/stories/Pages/Events/Event/Event.jsx +88 -0
  409. package/src/stories/Pages/Events/Event/Event.stories.jsx +8 -0
  410. package/src/stories/Pages/Events/Events/Events.jsx +110 -0
  411. package/src/stories/Pages/Events/Events/Events.stories.jsx +8 -0
  412. package/src/stories/Pages/Library/Folders/Library.jsx +118 -0
  413. package/src/stories/Pages/Library/Folders/Library.stories.jsx +8 -0
  414. package/src/stories/Pages/Library/Notes/Notes.jsx +109 -0
  415. package/src/stories/Pages/Library/Notes/Notes.stories.jsx +8 -0
  416. package/src/stories/Pages/Music/MusicAlbum/Music.jsx +159 -0
  417. package/src/stories/Pages/Music/MusicAlbum/Music.stories.jsx +8 -0
  418. package/src/stories/Pages/Music/MusicAlbums/MusicAlbums.jsx +138 -0
  419. package/src/stories/Pages/Music/MusicAlbums/MusicAlbums.stories.jsx +8 -0
  420. package/src/stories/Pages/Photos/Album/Album.jsx +120 -0
  421. package/src/stories/Pages/Photos/Album/Album.stories.jsx +8 -0
  422. package/src/stories/Pages/Photos/Albums/Albums.jsx +144 -0
  423. package/src/stories/Pages/Photos/Albums/Albums.stories.jsx +8 -0
  424. package/src/stories/Pages/Video/DetailedVideo/DetailedVideo.jsx +91 -0
  425. package/src/stories/Pages/Video/DetailedVideo/DetailedVideo.stories.jsx +8 -0
  426. package/src/stories/Pages/Video/VideoAlbum/Video.jsx +166 -0
  427. package/src/stories/Pages/Video/VideoAlbum/Video.stories.jsx +8 -0
  428. package/src/stories/Pages/ViewWorld/ViewWorld.jsx +193 -0
  429. package/src/stories/Pages/ViewWorld/ViewWorld.stories.js +270 -0
  430. package/src/stories/Pages/ViewWorld/constatnts.js +158 -0
  431. package/src/stories/Pages/ViewWorld/styles.json +18 -0
  432. package/src/stories/Photo Album/DetailedPhoto/DetailedPhoto.jsx +17 -0
  433. package/src/stories/Photo Album/DetailedPhoto/DetailedPhoto.stories.jsx +20 -0
  434. package/src/stories/Photo Album/ViewAlbum/ViewAlbum.jsx +250 -0
  435. package/src/stories/Photo Album/ViewAlbum/ViewAlbum.stories.jsx +60 -0
  436. package/src/stories/Photo Album/ViewAlbums/ViewAlbums.jsx +146 -0
  437. package/src/stories/Photo Album/ViewAlbums/ViewAlbums.stories.jsx +59 -0
  438. package/src/stories/Reusable Components/Cards/Card-style-1/CardStyle1.jsx +74 -0
  439. package/src/stories/Reusable Components/Cards/Card-style-1/CardStyle1.stories.jsx +22 -0
  440. package/src/stories/Reusable Components/Cards/Card-style-10/CardStyle10.jsx +94 -0
  441. package/src/stories/Reusable Components/Cards/Card-style-10/CardStyle10.stories.jsx +21 -0
  442. package/src/stories/Reusable Components/Cards/Card-style-11/CardStyle11.jsx +79 -0
  443. package/src/stories/Reusable Components/Cards/Card-style-11/CardStyle11.stories.jsx +21 -0
  444. package/src/stories/Reusable Components/Cards/Card-style-2/CardStyle2.jsx +75 -0
  445. package/src/stories/Reusable Components/Cards/Card-style-2/CardStyle2.stories.jsx +24 -0
  446. package/src/stories/Reusable Components/Cards/Card-style-3/CardStyle3.jsx +61 -0
  447. package/src/stories/Reusable Components/Cards/Card-style-3/CardStyle3.stories.jsx +22 -0
  448. package/src/stories/Reusable Components/Cards/Card-style-4/CardStyle4.jsx +67 -0
  449. package/src/stories/Reusable Components/Cards/Card-style-4/CardStyle4.stories.jsx +25 -0
  450. package/src/stories/Reusable Components/Cards/Card-style-6/CardStyle6.jsx +117 -0
  451. package/src/stories/Reusable Components/Cards/Card-style-6/CardStyle6.stories.jsx +9 -0
  452. package/src/stories/Reusable Components/Cards/Card-style-7/CardStyle7.jsx +126 -0
  453. package/src/stories/Reusable Components/Cards/Card-style-7/CardStyle7.stories.jsx +23 -0
  454. package/src/stories/Reusable Components/Cards/Card-style-8/CardStyle8.jsx +113 -0
  455. package/src/stories/Reusable Components/Cards/Card-style-8/CardStyle8.stories.jsx +29 -0
  456. package/src/stories/Reusable Components/Cards/Card-style-9/CardStyle9.jsx +86 -0
  457. package/src/stories/Reusable Components/Cards/Card-style-9/CardStyle9.stories.jsx +14 -0
  458. package/src/stories/Reusable Components/Cards/Card.jsx +119 -0
  459. package/src/stories/Reusable Components/Cards/Card.stories.jsx +118 -0
  460. package/src/stories/Reusable Components/Cards/globalCardStyles.js +54 -0
  461. package/src/stories/Reusable Components/Controls/Controls.jsx +137 -0
  462. package/src/stories/Reusable Components/Controls/Controls.stories.jsx +24 -0
  463. package/src/stories/Reusable Components/Gallery/Gallery.jsx +110 -0
  464. package/src/stories/Reusable Components/Gallery/Gallery.stories.jsx +43 -0
  465. package/src/stories/Reusable Components/Lists/Cards/ListCard-1.jsx +0 -0
  466. package/src/stories/Reusable Components/Lists/Cards/ListCard-1.stories.js +0 -0
  467. package/src/stories/Reusable Components/Lists/List.jsx +0 -0
  468. package/src/stories/Reusable Components/Lists/List.stories.js +0 -0
  469. package/src/stories/Reusable Components/Mention/Mention.jsx +69 -0
  470. package/src/stories/Reusable Components/Mention/Mention.stories.jsx +55 -0
  471. package/src/stories/Reusable Components/ReactModal/ReactModal.jsx +76 -0
  472. package/src/stories/Reusable Components/ReusableForm/ReusableForm.jsx +121 -0
  473. package/src/stories/Reusable Components/ReusableForm/ReusableForm.stories.jsx +167 -0
  474. package/src/stories/Reusable Components/ReusableHeader/ReusableHeader.jsx +76 -0
  475. package/src/stories/Reusable Components/ReusableHeader/ReusableHeader.stories.jsx +22 -0
  476. package/src/stories/Reusable Components/ReusableList/ReusableList.jsx +103 -0
  477. package/src/stories/Reusable Components/ReusableList/ReusableList.stories.jsx +70 -0
  478. package/src/stories/Reusable Components/SearchCard/SearchCard.jsx +89 -0
  479. package/src/stories/Reusable Components/SearchCard/SearchCard.stories.js +10 -0
  480. package/src/stories/Reusable Components/SpaceContainer/SpaceContainer.jsx +48 -0
  481. package/src/stories/Reusable Components/SpaceContainer/SpaceContainer.stories.jsx +78 -0
  482. package/src/stories/Reusable Components/Spinner/Spinner.jsx +82 -0
  483. package/src/stories/Reusable Components/Spinner/Spinner.stories.jsx +8 -0
  484. package/src/stories/Reusable Components/WidgetContainer/WidgetContainer.jsx +59 -0
  485. package/src/stories/Reusable Components/WidgetContainer/WidgetContainer.stories.jsx +61 -0
  486. package/src/stories/Reusable Components/commonStyles.js +47 -0
  487. package/src/stories/Reusable Components/fakeData.js +95 -0
  488. package/src/stories/Spaces/WelcomeSpace/WelcomeSpace.jsx +102 -0
  489. package/src/stories/Spaces/WelcomeSpace/WelcomeSpace.stories.js +10 -0
  490. package/src/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.jsx +130 -0
  491. package/src/stories/VideoAlbum/AlbumsGallery/AlbumsGallery.stories.jsx +59 -0
  492. package/src/stories/VideoAlbum/Comments/Comments.jsx +58 -0
  493. package/src/stories/VideoAlbum/Comments/Comments.stories.jsx +18 -0
  494. package/src/stories/VideoAlbum/VideoPlayer/VideoPlayer.jsx +214 -0
  495. package/src/stories/VideoAlbum/VideoPlayer/VideoPlayer.stories.jsx +82 -0
  496. package/src/stories/VideoAlbum/VideoSpace/VideoSpace.jsx +101 -0
  497. package/src/stories/VideoAlbum/VideoSpace/VideoSpace.stories.jsx +23 -0
  498. package/src/stories/VideoAlbum/ViewAlbum/ViewAlbum.jsx +131 -0
  499. package/src/stories/VideoAlbum/ViewAlbum/ViewAlbum.stories.jsx +57 -0
  500. package/src/stories/Widgets/LogoWidget/LogoWidget.jsx +21 -0
  501. package/src/stories/Widgets/LogoWidget/LogoWidget.stories.js +12 -0
  502. package/src/stories/Widgets/MusicPlayer/MusicPlayer.jsx +64 -0
  503. package/src/stories/Widgets/MusicPlayer/MusicPlayer.stories.jsx +23 -0
  504. package/src/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.jsx +107 -0
  505. package/src/stories/Widgets/MusicPlayerWidget/MusicPlayerWidget.stories.jsx +33 -0
  506. package/src/stories/Widgets/SpacesList/SpacesList.jsx +16 -0
  507. package/src/stories/Widgets/SpacesList/SpacesList.stories.jsx +27 -0
  508. package/src/stories/Widgets/SpacesList/SpacesListItem.jsx +75 -0
  509. package/src/stories/Widgets/SpacesList/SpacesListItem.stories.jsx +10 -0
  510. package/src/stories/assets/camera.svg +1 -0
  511. package/src/stories/assets/code-brackets.svg +1 -0
  512. package/src/stories/assets/colors.svg +1 -0
  513. package/src/stories/assets/comments.svg +1 -0
  514. package/src/stories/assets/direction.svg +1 -0
  515. package/src/stories/assets/flow.svg +1 -0
  516. package/src/stories/assets/images/album1.jpg +0 -0
  517. package/src/stories/assets/images/album2.jpg +0 -0
  518. package/src/stories/assets/images/album3.jpg +0 -0
  519. package/src/stories/assets/images/album4.jpg +0 -0
  520. package/src/stories/assets/images/album5.jpg +0 -0
  521. package/src/stories/assets/images/album6.jpg +0 -0
  522. package/src/stories/assets/images/art.jpg +0 -0
  523. package/src/stories/assets/images/dance.jpg +0 -0
  524. package/src/stories/assets/images/football.jpg +0 -0
  525. package/src/stories/assets/images/music.jpg +0 -0
  526. package/src/stories/assets/images/music1.jpg +0 -0
  527. package/src/stories/assets/images/music2.jpg +0 -0
  528. package/src/stories/assets/images/music3.jpg +0 -0
  529. package/src/stories/assets/images/music4.jpg +0 -0
  530. package/src/stories/assets/images/music5.jpg +0 -0
  531. package/src/stories/assets/images/music6.jpg +0 -0
  532. package/src/stories/assets/images/reset.png +0 -0
  533. package/src/stories/assets/images/robotics.jpg +0 -0
  534. package/src/stories/assets/images/tennis.jpg +0 -0
  535. package/src/stories/assets/plugin.svg +1 -0
  536. package/src/stories/assets/repo.svg +1 -0
  537. package/src/stories/assets/reset.svg +1 -0
  538. package/src/stories/assets/stackalt.svg +1 -0
  539. package/src/stories/helpers/util.js +66 -0
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.default = void 0;
9
+
10
+ var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/taggedTemplateLiteral"));
11
+
12
+ var _react = _interopRequireDefault(require("react"));
13
+
14
+ var _styledComponents = _interopRequireDefault(require("styled-components"));
15
+
16
+ var _templateObject, _templateObject2, _templateObject3, _templateObject4;
17
+
18
+ var SpacesListItem = function SpacesListItem(props) {
19
+ return /*#__PURE__*/_react.default.createElement(Container, {
20
+ padding: props.padding,
21
+ background: props.background,
22
+ marginTop: props.marginTop
23
+ }, /*#__PURE__*/_react.default.createElement(LockIcon, null, "#"), /*#__PURE__*/_react.default.createElement(SpaceName, null, props.spaceName), /*#__PURE__*/_react.default.createElement(EditIcon, null, "Edit"), /*#__PURE__*/_react.default.createElement(InviteIcon, null, "Invite"), /*#__PURE__*/_react.default.createElement(AddIcon, null, "Add"));
24
+ };
25
+
26
+ var LockIcon = (0, _styledComponents.default)('span')({});
27
+ var SpaceName = (0, _styledComponents.default)('span')({
28
+ marginLeft: 5,
29
+ width: '100%'
30
+ });
31
+
32
+ var EditIcon = _styledComponents.default.span(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n visibility: hidden;\n"])));
33
+
34
+ var InviteIcon = _styledComponents.default.span(_templateObject2 || (_templateObject2 = (0, _taggedTemplateLiteral2.default)(["\n visibility: hidden;\n"])));
35
+
36
+ var AddIcon = _styledComponents.default.span(_templateObject3 || (_templateObject3 = (0, _taggedTemplateLiteral2.default)(["\n visibility: hidden;\n"])));
37
+
38
+ var Container = _styledComponents.default.li(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2.default)(["\n display: flex;\n border-radius: 3px;\n font-size: 14px;\n background: ", ";\n padding: ", "px;\n margin-top: ", "px;\n flex-direction: row;\n :hover {\n background: silver;\n cursor: pointer;\n }\n &:hover ", " {\n visibility: visible;\n }\n &:hover ", " {\n visibility: visible;\n }\n &:hover ", " {\n visibility: visible;\n }\n"])), function (props) {
39
+ return props.background || 'transparent';
40
+ }, function (props) {
41
+ return props.padding || 5;
42
+ }, function (props) {
43
+ return props.marginTop || 0;
44
+ }, EditIcon, InviteIcon, AddIcon);
45
+
46
+ SpacesListItem.defaultProps = {
47
+ spaceName: 'SpaceName'
48
+ };
49
+ var _default = SpacesListItem;
50
+ exports.default = _default;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.Default = exports.default = void 0;
9
+
10
+ var _react = _interopRequireDefault(require("react"));
11
+
12
+ var _SpacesListItem = _interopRequireDefault(require("./SpacesListItem"));
13
+
14
+ var _default = {
15
+ title: 'Widgets/SpacesList/Item',
16
+ component: _SpacesListItem.default
17
+ };
18
+ exports.default = _default;
19
+
20
+ var Default = function Default(args) {
21
+ return /*#__PURE__*/_react.default.createElement(_SpacesListItem.default, args);
22
+ };
23
+
24
+ exports.Default = Default;
@@ -0,0 +1,178 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.getWidgetType = exports.getCardStyle = exports.addObjectToArray = exports.deleteFromArrayByIndex = exports.stringSearch = void 0;
9
+
10
+ var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/toConsumableArray"));
11
+
12
+ var _CardStyle = _interopRequireDefault(require("../Reusable Components/Cards/Card-style-1/CardStyle1"));
13
+
14
+ var _CardStyle2 = _interopRequireDefault(require("../Reusable Components/Cards/Card-style-2/CardStyle2"));
15
+
16
+ var _CardStyle3 = _interopRequireDefault(require("../Reusable Components/Cards/Card-style-3/CardStyle3"));
17
+
18
+ var _CardStyle4 = _interopRequireDefault(require("../Reusable Components/Cards/Card-style-4/CardStyle4"));
19
+
20
+ var _CardStyle5 = _interopRequireDefault(require("../Reusable Components/Cards/Card-style-6/CardStyle6"));
21
+
22
+ var _CardStyle6 = _interopRequireDefault(require("../Reusable Components/Cards/Card-style-7/CardStyle7"));
23
+
24
+ var _CardStyle7 = _interopRequireDefault(require("../Reusable Components/Cards/Card-style-8/CardStyle8"));
25
+
26
+ var _CardStyle8 = _interopRequireDefault(require("../Reusable Components/Cards/Card-style-9/CardStyle9"));
27
+
28
+ var _CardStyle9 = _interopRequireDefault(require("../Reusable Components/Cards/Card-style-10/CardStyle10"));
29
+
30
+ var _CardStyle10 = _interopRequireDefault(require("../Reusable Components/Cards/Card-style-11/CardStyle11"));
31
+
32
+ var _ReusableList = _interopRequireDefault(require("../Reusable Components/ReusableList/ReusableList"));
33
+
34
+ var _MusicPlayerWidget = _interopRequireDefault(require("../Widgets/MusicPlayerWidget/MusicPlayerWidget"));
35
+
36
+ var _LogoWidget = _interopRequireDefault(require("../Widgets/LogoWidget/LogoWidget"));
37
+
38
+ var _VideoPlayer = _interopRequireDefault(require("../VideoAlbum/VideoPlayer/VideoPlayer"));
39
+
40
+ // Cards
41
+ // Widgets
42
+ var stringSearch = function stringSearch(str, word) {
43
+ str = str.toUpperCase();
44
+ word = word.toUpperCase();
45
+ var count = 0;
46
+
47
+ for (var i = 0; i < str.length; i++) {
48
+ for (var j = 0; j < word.length; j++) {
49
+ if (word[j] !== str[i + j]) break;
50
+ if (j === word.length - 1) count++;
51
+ }
52
+ }
53
+
54
+ return count;
55
+ };
56
+
57
+ exports.stringSearch = stringSearch;
58
+
59
+ var deleteFromArrayByIndex = function deleteFromArrayByIndex(arr, index) {
60
+ var arrayAfterDelete = (0, _toConsumableArray2.default)(arr);
61
+ arrayAfterDelete.splice(index, 1);
62
+ return arrayAfterDelete;
63
+ };
64
+
65
+ exports.deleteFromArrayByIndex = deleteFromArrayByIndex;
66
+
67
+ var addObjectToArray = function addObjectToArray(arr, obj) {
68
+ var newArray = [].concat((0, _toConsumableArray2.default)(arr), [obj]);
69
+ return newArray;
70
+ };
71
+
72
+ exports.addObjectToArray = addObjectToArray;
73
+
74
+ var getCardStyle = function getCardStyle(cardProps, cardType, customCardStyles, cardControls, index, clicked, cardIconClicked) {
75
+ var cardTypes = {
76
+ 'card-style-1': /*#__PURE__*/React.createElement(_CardStyle.default, Object.assign({
77
+ key: index
78
+ }, cardProps, customCardStyles, {
79
+ cardControls: cardControls
80
+ })),
81
+ 'card-style-2': /*#__PURE__*/React.createElement(_CardStyle2.default, Object.assign({
82
+ key: index
83
+ }, cardProps, customCardStyles, {
84
+ cardControls: cardControls
85
+ })),
86
+ 'card-style-3': /*#__PURE__*/React.createElement(_CardStyle3.default, Object.assign({
87
+ key: index
88
+ }, cardProps, customCardStyles, {
89
+ cardControls: cardControls
90
+ })),
91
+ 'card-style-4': /*#__PURE__*/React.createElement(_CardStyle4.default, Object.assign({
92
+ key: index
93
+ }, cardProps, customCardStyles, {
94
+ cardControls: cardControls
95
+ })),
96
+ 'card-style-6': /*#__PURE__*/React.createElement(_CardStyle5.default, Object.assign({
97
+ key: index
98
+ }, cardProps, customCardStyles, {
99
+ cardControls: cardControls,
100
+ cardClicked: function cardClicked() {
101
+ return clicked(index);
102
+ },
103
+ iconClicked: function iconClicked(action) {
104
+ return cardIconClicked(action, index);
105
+ }
106
+ })),
107
+ 'card-style-7': /*#__PURE__*/React.createElement(_CardStyle6.default, Object.assign({
108
+ key: index
109
+ }, cardProps, customCardStyles, {
110
+ cardControls: cardControls,
111
+ cardClicked: function cardClicked() {
112
+ return clicked(index);
113
+ },
114
+ iconClicked: function iconClicked(action) {
115
+ return cardIconClicked(action, index);
116
+ }
117
+ })),
118
+ 'card-style-8': /*#__PURE__*/React.createElement(_CardStyle7.default, Object.assign({
119
+ key: index
120
+ }, cardProps, customCardStyles, {
121
+ cardControls: cardControls,
122
+ cardClicked: function cardClicked() {
123
+ return clicked(index);
124
+ },
125
+ iconClicked: function iconClicked(action) {
126
+ return cardIconClicked(action, index);
127
+ }
128
+ })),
129
+ 'card-style-9': /*#__PURE__*/React.createElement(_CardStyle8.default, Object.assign({
130
+ key: index
131
+ }, cardProps, customCardStyles, {
132
+ cardControls: cardControls,
133
+ cardClicked: function cardClicked() {
134
+ return clicked(index);
135
+ },
136
+ iconClicked: function iconClicked(action) {
137
+ return cardIconClicked(action, index);
138
+ }
139
+ })),
140
+ 'card-style-10': /*#__PURE__*/React.createElement(_CardStyle9.default, Object.assign({
141
+ key: index
142
+ }, cardProps, customCardStyles, {
143
+ cardControls: cardControls,
144
+ cardClicked: function cardClicked() {
145
+ return clicked(index);
146
+ },
147
+ iconClicked: function iconClicked(action) {
148
+ return cardIconClicked(action, index);
149
+ }
150
+ })),
151
+ 'card-style-11': /*#__PURE__*/React.createElement(_CardStyle10.default, Object.assign({
152
+ key: index
153
+ }, cardProps, customCardStyles, {
154
+ cardControls: cardControls,
155
+ cardClicked: function cardClicked() {
156
+ return clicked(index);
157
+ },
158
+ iconClicked: function iconClicked(action) {
159
+ return cardIconClicked(action, index);
160
+ }
161
+ }))
162
+ };
163
+ return cardTypes[cardType];
164
+ };
165
+
166
+ exports.getCardStyle = getCardStyle;
167
+
168
+ var getWidgetType = function getWidgetType(widgetType, props) {
169
+ var widgetTypes = {
170
+ 'list': /*#__PURE__*/React.createElement(_ReusableList.default, props),
171
+ 'music player': /*#__PURE__*/React.createElement(_MusicPlayerWidget.default, props),
172
+ 'logo': /*#__PURE__*/React.createElement(_LogoWidget.default, props),
173
+ 'video player': /*#__PURE__*/React.createElement(_VideoPlayer.default, props)
174
+ };
175
+ return widgetTypes[widgetType];
176
+ };
177
+
178
+ exports.getWidgetType = getWidgetType;
package/package.json ADDED
@@ -0,0 +1,131 @@
1
+ {
2
+ "name": "@mohamed-karawia/library",
3
+ "babel": {
4
+ "presets": [
5
+ [
6
+ "react-app",
7
+ {
8
+ "absoluteRuntime": false
9
+ }
10
+ ]
11
+ ]
12
+ },
13
+ "version": "0.1.0",
14
+ "private": false,
15
+ "dependencies": {
16
+ "@babel/cli": "^7.16.7",
17
+ "@babel/runtime": "^7.15.4",
18
+ "@editorjs/header": "^2.6.1",
19
+ "@editorjs/table": "^2.0.1",
20
+ "@giphy/js-fetch-api": "^4.1.2",
21
+ "@giphy/react-components": "^5.3.1",
22
+ "@testing-library/jest-dom": "^5.11.4",
23
+ "@testing-library/react": "^11.1.0",
24
+ "@testing-library/user-event": "^12.1.10",
25
+ "agora-access-token": "^2.0.4",
26
+ "agora-rtc-react": "github:AgoraIO-Community/agora-rtc-react#v1.0.1",
27
+ "agora-rtm-sdk": "^1.4.3",
28
+ "axios": "^0.21.4",
29
+ "cross-env": "^7.0.3",
30
+ "emoji-mart": "^3.0.1",
31
+ "express": "^4.17.1",
32
+ "formik": "^2.2.9",
33
+ "moment": "^2.29.1",
34
+ "rc-slider": "^9.7.5",
35
+ "react": "^16.14.0",
36
+ "react-async-hook": "^4.0.0",
37
+ "react-autocomplete": "^1.8.1",
38
+ "react-dates": "^21.8.0",
39
+ "react-dom": "^16.14.0",
40
+ "react-dropzone": "^11.4.0",
41
+ "react-dropzone-component": "^3.2.0",
42
+ "react-dropzone-uploader": "^2.11.0",
43
+ "react-h5-audio-player": "^3.7.1",
44
+ "react-icons": "^4.2.0",
45
+ "react-jinke-music-player": "^4.24.1",
46
+ "react-mentions": "^4.3.0",
47
+ "react-modal": "^3.14.3",
48
+ "react-player": "^2.9.0",
49
+ "react-resize-observer": "^1.1.1",
50
+ "react-scripts": "4.0.1",
51
+ "react-select": "^4.3.1",
52
+ "react-time-seek-slider": "^1.1.0",
53
+ "react-with-direction": "^1.3.1",
54
+ "storybook-addon-mock": "^1.6.0",
55
+ "styled-components": "^5.3.1",
56
+ "web-vitals": "^1.0.1",
57
+ "yup": "^0.32.9"
58
+ },
59
+ "scripts": {
60
+ "start": "react-scripts start",
61
+ "build": "cross-env BABEL_ENV=production babel src -d dist",
62
+ "test": "react-scripts test",
63
+ "eject": "react-scripts eject",
64
+ "storybook": "start-storybook -p 6006 -s public",
65
+ "build-storybook": "build-storybook -s public"
66
+ },
67
+ "eslintConfig": {
68
+ "extends": [
69
+ "react-app",
70
+ "react-app/jest"
71
+ ],
72
+ "overrides": [
73
+ {
74
+ "files": [
75
+ "**/*.stories.*"
76
+ ],
77
+ "rules": {
78
+ "import/no-anonymous-default-export": "off"
79
+ }
80
+ }
81
+ ]
82
+ },
83
+ "browserslist": {
84
+ "production": [
85
+ ">0.2%",
86
+ "not dead",
87
+ "not op_mini all"
88
+ ],
89
+ "development": [
90
+ "last 1 chrome version",
91
+ "last 1 firefox version",
92
+ "last 1 safari version"
93
+ ]
94
+ },
95
+ "devDependencies": {
96
+ "@editorjs/editorjs": "^2.22.2",
97
+ "@editorjs/image": "^2.6.1",
98
+ "@editorjs/marker": "^1.2.2",
99
+ "@editorjs/paragraph": "^2.8.0",
100
+ "@editorjs/simple-image": "^1.4.1",
101
+ "@geometricpanda/storybook-addon-badges": "^0.0.4",
102
+ "@storybook/addon-a11y": "^6.3.8",
103
+ "@storybook/addon-actions": "^6.3.8",
104
+ "@storybook/addon-essentials": "^6.3.7",
105
+ "@storybook/addon-links": "^6.3.8",
106
+ "@storybook/addon-storysource": "^6.3.7",
107
+ "@storybook/node-logger": "^6.3.7",
108
+ "@storybook/preset-create-react-app": "^3.2.0",
109
+ "@storybook/react": "^6.3.7",
110
+ "chromatic": "^5.9.2",
111
+ "react-editor-js": "^1.10.0",
112
+ "storybook-addon-designs": "^6.1.0",
113
+ "storybook-dark-mode": "^1.0.8",
114
+ "storybook-formik": "^2.1.8"
115
+ },
116
+ "optionalDependencies": {
117
+ "fsevents": "^2.3.2"
118
+ },
119
+ "description": "In order to get the Storybook development enviornment going on your machine first `clone` this repo and `cd` to the project.",
120
+ "main": "dist/index.js",
121
+ "repository": {
122
+ "type": "git",
123
+ "url": "git+https://github.com/collectiveness/react-storybook.git"
124
+ },
125
+ "author": "",
126
+ "license": "ISC",
127
+ "bugs": {
128
+ "url": "https://github.com/collectiveness/react-storybook/issues"
129
+ },
130
+ "homepage": "https://github.com/collectiveness/react-storybook#readme"
131
+ }
Binary file
@@ -0,0 +1,43 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
7
+ <meta name="theme-color" content="#000000" />
8
+ <meta
9
+ name="description"
10
+ content="Web site created using create-react-app"
11
+ />
12
+ <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
13
+ <!--
14
+ manifest.json provides metadata used when your web app is installed on a
15
+ user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
16
+ -->
17
+ <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
18
+ <!--
19
+ Notice the use of %PUBLIC_URL% in the tags above.
20
+ It will be replaced with the URL of the `public` folder during the build.
21
+ Only files inside the `public` folder can be referenced from the HTML.
22
+
23
+ Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
24
+ work correctly both with client-side routing and a non-root public URL.
25
+ Learn how to configure a non-root public URL by running `npm run build`.
26
+ -->
27
+ <title>React App</title>
28
+ </head>
29
+ <body>
30
+ <noscript>You need to enable JavaScript to run this app.</noscript>
31
+ <div id="root"></div>
32
+ <!--
33
+ This HTML file is a template.
34
+ If you open it directly in the browser, you will see an empty page.
35
+
36
+ You can add webfonts, meta tags, or analytics to this file.
37
+ The build step will place the bundled scripts into the <body> tag.
38
+
39
+ To begin the development, run `npm start` or `yarn start`.
40
+ To create a production bundle, use `npm run build` or `yarn build`.
41
+ -->
42
+ </body>
43
+ </html>
Binary file
Binary file
@@ -0,0 +1,25 @@
1
+ {
2
+ "short_name": "React App",
3
+ "name": "Create React App Sample",
4
+ "icons": [
5
+ {
6
+ "src": "favicon.ico",
7
+ "sizes": "64x64 32x32 24x24 16x16",
8
+ "type": "image/x-icon"
9
+ },
10
+ {
11
+ "src": "logo192.png",
12
+ "type": "image/png",
13
+ "sizes": "192x192"
14
+ },
15
+ {
16
+ "src": "logo512.png",
17
+ "type": "image/png",
18
+ "sizes": "512x512"
19
+ }
20
+ ],
21
+ "start_url": ".",
22
+ "display": "standalone",
23
+ "theme_color": "#000000",
24
+ "background_color": "#ffffff"
25
+ }
@@ -0,0 +1,3 @@
1
+ # https://www.robotstxt.org/robotstxt.html
2
+ User-agent: *
3
+ Disallow:
@@ -0,0 +1,36 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 60 60" style="enable-background:new 0 0 60 60;" xml:space="preserve">
5
+ <path d="M0,0v60h60V0H0z M51,32H32v19h-4V32H9v-4h19V9h4v19h19V32z"/>
6
+ <g>
7
+ </g>
8
+ <g>
9
+ </g>
10
+ <g>
11
+ </g>
12
+ <g>
13
+ </g>
14
+ <g>
15
+ </g>
16
+ <g>
17
+ </g>
18
+ <g>
19
+ </g>
20
+ <g>
21
+ </g>
22
+ <g>
23
+ </g>
24
+ <g>
25
+ </g>
26
+ <g>
27
+ </g>
28
+ <g>
29
+ </g>
30
+ <g>
31
+ </g>
32
+ <g>
33
+ </g>
34
+ <g>
35
+ </g>
36
+ </svg>
@@ -0,0 +1,42 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 60 60" style="enable-background:new 0 0 60 60;" xml:space="preserve">
6
+ <g>
7
+ <path d="M2,55.434C2,57.951,4.048,60,6.566,60h46.867C55.952,60,58,57.951,58,55.434V28H2V55.434z"/>
8
+ <path d="M52.401,19L46.573,5.159C46.021,3.848,44.745,3,43.321,3h-1.463c-0.447-1.72-2-3-3.858-3H22c-1.858,0-3.411,1.28-3.858,3
9
+ h-1.463c-1.423,0-2.7,0.848-3.252,2.159L7.599,19H0v8h60v-8H52.401z M9.769,19l5.501-13.065C15.509,5.367,16.062,5,16.679,5h1.463
10
+ c0.447,1.72,2,3,3.858,3h16c1.858,0,3.411-1.28,3.858-3h1.463c0.617,0,1.169,0.367,1.408,0.935L50.231,19H9.769z"/>
11
+ </g>
12
+ <g>
13
+ </g>
14
+ <g>
15
+ </g>
16
+ <g>
17
+ </g>
18
+ <g>
19
+ </g>
20
+ <g>
21
+ </g>
22
+ <g>
23
+ </g>
24
+ <g>
25
+ </g>
26
+ <g>
27
+ </g>
28
+ <g>
29
+ </g>
30
+ <g>
31
+ </g>
32
+ <g>
33
+ </g>
34
+ <g>
35
+ </g>
36
+ <g>
37
+ </g>
38
+ <g>
39
+ </g>
40
+ <g>
41
+ </g>
42
+ </svg>
@@ -0,0 +1,44 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 489.8 489.8" style="enable-background:new 0 0 489.8 489.8;" xml:space="preserve">
5
+ <g>
6
+ <g>
7
+ <g>
8
+ <path d="M245.05,489.8c34.6,0,63-28,63-63h-126C182.05,461.8,210.45,489.8,245.05,489.8z"/>
9
+ <path d="M369.05,124c0-68.4-55.6-124-124-124l0,0c-68.4,0-124,55.6-124,124v88.3c0,80.5-31.9,137.6-89,194.8h425.7
10
+ c-56.8-56.8-89-114.3-89-194.8V124H369.05z"/>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ <g>
15
+ </g>
16
+ <g>
17
+ </g>
18
+ <g>
19
+ </g>
20
+ <g>
21
+ </g>
22
+ <g>
23
+ </g>
24
+ <g>
25
+ </g>
26
+ <g>
27
+ </g>
28
+ <g>
29
+ </g>
30
+ <g>
31
+ </g>
32
+ <g>
33
+ </g>
34
+ <g>
35
+ </g>
36
+ <g>
37
+ </g>
38
+ <g>
39
+ </g>
40
+ <g>
41
+ </g>
42
+ <g>
43
+ </g>
44
+ </svg>
@@ -0,0 +1,54 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 402.251 402.251" style="enable-background:new 0 0 402.251 402.251;" xml:space="preserve">
5
+ <g>
6
+ <g>
7
+ <polygon style="fill:#010002;" points="205.404,212.802 220.136,227.535 268.981,149.219 190.672,198.07 "/>
8
+ <polygon style="fill:#010002;" points="182.234,206.507 133.384,284.823 211.699,235.972 196.967,221.24 "/>
9
+ <path style="fill:#010002;" d="M363.854,128.461c-8.509-15.615-19.172-29.882-31.702-42.407
10
+ c-12.524-12.53-26.791-23.193-42.401-31.702c-10.174-5.543-20.86-10.096-31.881-13.628V5.967c0-3.294-2.667-5.967-5.967-5.967
11
+ H150.467c-3.294,0-5.967,2.673-5.967,5.967v34.691c-27.716,8.867-53.117,24.231-74.282,45.396
12
+ c-72.217,72.217-72.217,189.723,0,261.946c34.984,34.984,81.501,54.251,130.973,54.251S297.174,382.984,332.164,348
13
+ C389.834,290.318,402.871,200.039,363.854,128.461z M156.428,11.928h89.503v25.365c-14.649-3.646-29.673-5.49-44.752-5.49
14
+ c-1.474,0-2.948,0.101-4.421,0.131c-1.868,0.042-3.735,0.078-5.591,0.173c-1.414,0.078-2.822,0.203-4.236,0.31
15
+ c-2.25,0.167-4.499,0.37-6.731,0.621c-1.038,0.119-2.071,0.245-3.103,0.376c-3.013,0.388-6.015,0.853-8.992,1.384
16
+ c-0.298,0.054-0.597,0.101-0.889,0.155c-3.622,0.668-7.22,1.408-10.782,2.285V11.928H156.428z M292.741,133.688L226.288,240.22
17
+ c-0.006,0.006-0.012,0.006-0.012,0.012c-0.215,0.34-0.567,0.555-0.841,0.847c-0.346,0.358-0.621,0.776-1.044,1.038
18
+ c-0.006,0-0.006,0.006-0.012,0.012l-106.533,66.453c-0.973,0.609-2.071,0.901-3.156,0.901c-1.545,0-3.073-0.597-4.225-1.748
19
+ c-1.963-1.963-2.315-5.024-0.847-7.375l66.453-106.532c0-0.006,0.006-0.006,0.012-0.012c0.233-0.376,0.621-0.627,0.937-0.943
20
+ s0.567-0.698,0.943-0.937c0.006,0,0.006-0.006,0.012-0.012l106.532-66.453c2.357-1.462,5.406-1.122,7.375,0.847
21
+ C293.857,128.27,294.209,131.331,292.741,133.688z"/>
22
+ </g>
23
+ </g>
24
+ <g>
25
+ </g>
26
+ <g>
27
+ </g>
28
+ <g>
29
+ </g>
30
+ <g>
31
+ </g>
32
+ <g>
33
+ </g>
34
+ <g>
35
+ </g>
36
+ <g>
37
+ </g>
38
+ <g>
39
+ </g>
40
+ <g>
41
+ </g>
42
+ <g>
43
+ </g>
44
+ <g>
45
+ </g>
46
+ <g>
47
+ </g>
48
+ <g>
49
+ </g>
50
+ <g>
51
+ </g>
52
+ <g>
53
+ </g>
54
+ </svg>