@zohodesk/svg 1.0.0-beta.4 → 1.0.0-beta.42

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 (363) hide show
  1. package/README.md +146 -1
  2. package/assets/Appearance/dark/mode/darkEmptyStates.module.css +37 -0
  3. package/assets/Appearance/dark/themes/blue/blueDarkCTATheme.module.css +10 -0
  4. package/assets/Appearance/dark/themes/green/greenDarkCTATheme.module.css +10 -0
  5. package/assets/Appearance/dark/themes/orange/orangeDarkCTATheme.module.css +10 -0
  6. package/assets/Appearance/dark/themes/red/redDarkCTATheme.module.css +10 -0
  7. package/assets/Appearance/dark/themes/yellow/yellowDarkCTATheme.module.css +10 -0
  8. package/assets/Appearance/default/mode/defaultEmptyStates.module.css +37 -0
  9. package/assets/Appearance/default/themes/blue/blueDefaultCTATheme.module.css +10 -0
  10. package/assets/Appearance/default/themes/green/greenDefaultCTATheme.module.css +10 -0
  11. package/assets/Appearance/default/themes/orange/orangeDefaultCTATheme.module.css +10 -0
  12. package/assets/Appearance/default/themes/red/redDefaultCTATheme.module.css +10 -0
  13. package/assets/Appearance/default/themes/yellow/yellowDefaultCTATheme.module.css +10 -0
  14. package/es/Provider.js +140 -0
  15. package/es/index.js +5 -2
  16. package/es/svg/EmptyAccounts.js +84 -40
  17. package/es/svg/EmptyActiveCalls.js +55 -47
  18. package/es/svg/EmptyActivity.js +55 -42
  19. package/es/svg/EmptyAgent.js +55 -39
  20. package/es/svg/EmptyAgentQueue.js +78 -0
  21. package/es/svg/EmptyApproval.js +78 -0
  22. package/es/svg/EmptyArchived.js +64 -39
  23. package/es/svg/EmptyAttach.js +55 -39
  24. package/es/svg/EmptyBlueprint.js +70 -39
  25. package/es/svg/EmptyBusinessHoliday.js +21 -38
  26. package/es/svg/EmptyBusinessHour.js +21 -38
  27. package/es/svg/EmptyCallHistory.js +57 -47
  28. package/es/svg/EmptyCollision.js +72 -0
  29. package/es/svg/EmptyColumn.js +78 -0
  30. package/es/svg/EmptyContact.js +55 -40
  31. package/es/svg/EmptyContract.js +68 -0
  32. package/es/svg/EmptyConversation.js +55 -39
  33. package/es/svg/EmptyCrm.js +72 -0
  34. package/es/svg/EmptyCrmNotes.js +83 -0
  35. package/es/svg/EmptyCrmPotential.js +86 -0
  36. package/es/svg/EmptyCustomDomain.js +39 -0
  37. package/es/svg/EmptyDashboard.js +62 -40
  38. package/es/svg/EmptyDepartment.js +72 -0
  39. package/es/svg/EmptyError.js +94 -0
  40. package/es/svg/EmptyFeed.js +75 -0
  41. package/es/svg/EmptyFollowers.js +73 -0
  42. package/es/svg/EmptyFrame.js +71 -0
  43. package/es/svg/EmptyFromAddress.js +21 -38
  44. package/es/svg/EmptyHappiness.js +55 -39
  45. package/es/svg/EmptyHistory.js +55 -46
  46. package/es/svg/EmptyImportHistory.js +21 -38
  47. package/es/svg/EmptyInconvenience.js +42 -0
  48. package/es/svg/EmptyInvoice.js +60 -39
  49. package/es/svg/EmptyNetwork.js +21 -38
  50. package/es/svg/EmptyNotification.js +55 -39
  51. package/es/svg/EmptyProducts.js +58 -39
  52. package/es/svg/EmptyRecycleBin.js +21 -38
  53. package/es/svg/EmptyReply.js +67 -0
  54. package/es/svg/EmptyReports.js +61 -39
  55. package/es/svg/EmptyRoles.js +21 -38
  56. package/es/svg/EmptySchedule.js +114 -0
  57. package/es/svg/EmptySearch.js +65 -39
  58. package/es/svg/EmptySkills.js +103 -45
  59. package/es/svg/EmptySla.js +67 -0
  60. package/es/svg/EmptySnippet.js +67 -47
  61. package/es/svg/EmptyStateVariables.module.css +39 -0
  62. package/es/svg/EmptyTag.js +58 -39
  63. package/es/svg/EmptyTask.js +71 -39
  64. package/es/svg/EmptyTeams.js +55 -39
  65. package/es/svg/EmptyTemplate.js +67 -40
  66. package/es/svg/EmptyTicket.js +58 -39
  67. package/es/svg/EmptyTimeEntry.js +61 -39
  68. package/es/svg/EmptyTimeline.js +72 -0
  69. package/es/svg/EmptyTopic.js +61 -39
  70. package/es/svg/EmptyUnauthorizedLogin.js +47 -0
  71. package/es/svg/EmptyWebhook.js +21 -38
  72. package/es/svg/EmptyWillBeRightBack.js +42 -0
  73. package/es/svg/ErrorInconvenience.js +113 -0
  74. package/es/svg/ErrorOopsSomethingMiss.js +114 -0
  75. package/es/svg/ErrorUnableToProcessRequest.js +114 -0
  76. package/es/svg/ErrorUnauthorizedLogin.js +113 -0
  77. package/es/svg/ErrorUrlNotFound.js +114 -0
  78. package/es/svg/ErrorWillBeRightBack.js +113 -0
  79. package/es/svg/Extensions.js +73 -0
  80. package/es/svg/Extractor.js +66 -0
  81. package/es/svg/FailureLog.js +21 -38
  82. package/es/svg/Import.js +82 -0
  83. package/es/svg/Loader.js +55 -34
  84. package/es/svg/NoRequestFound.js +22 -45
  85. package/es/svg/NotImpossible.js +79 -0
  86. package/es/svg/PageNotFound.js +24 -46
  87. package/es/svg/Predictor.js +73 -0
  88. package/es/svg/SVG.js +61 -85
  89. package/es/svg/SVG.module.css +9 -2
  90. package/es/svg/SvgLoader.js +28 -0
  91. package/es/svg/UnableToProcessRequest.js +24 -46
  92. package/es/svg/UnauthorizedLogin.js +23 -45
  93. package/es/svg/UrlNotFound.js +25 -47
  94. package/es/svg/WillBeRightBack.js +25 -47
  95. package/es/svg/ZiaAnamoly.js +67 -0
  96. package/es/svg/images/EmptyCustomDomain.svg +85 -0
  97. package/es/svg/images/EmptySkills.svg +75 -67
  98. package/es/svg/utils.js +14 -0
  99. package/lib/Provider.js +213 -0
  100. package/lib/index.js +48 -27
  101. package/lib/svg/EmptyAccounts.js +108 -36
  102. package/lib/svg/EmptyActiveCalls.js +79 -43
  103. package/lib/svg/EmptyActivity.js +79 -38
  104. package/lib/svg/EmptyAgent.js +79 -35
  105. package/lib/svg/EmptyAgentQueue.js +128 -0
  106. package/lib/svg/EmptyApproval.js +128 -0
  107. package/lib/svg/EmptyArchived.js +88 -35
  108. package/lib/svg/EmptyAttach.js +79 -35
  109. package/lib/svg/EmptyBlueprint.js +94 -35
  110. package/lib/svg/EmptyBusinessHoliday.js +47 -35
  111. package/lib/svg/EmptyBusinessHour.js +47 -35
  112. package/lib/svg/EmptyCallHistory.js +81 -43
  113. package/lib/svg/EmptyCollision.js +122 -0
  114. package/lib/svg/EmptyColumn.js +128 -0
  115. package/lib/svg/EmptyContact.js +79 -36
  116. package/lib/svg/EmptyContract.js +118 -0
  117. package/lib/svg/EmptyConversation.js +79 -35
  118. package/lib/svg/EmptyCrm.js +122 -0
  119. package/lib/svg/EmptyCrmNotes.js +133 -0
  120. package/lib/svg/EmptyCrmPotential.js +136 -0
  121. package/lib/svg/EmptyCustomDomain.js +90 -0
  122. package/lib/svg/EmptyDashboard.js +86 -36
  123. package/lib/svg/EmptyDepartment.js +122 -0
  124. package/lib/svg/EmptyError.js +144 -0
  125. package/lib/svg/EmptyFeed.js +125 -0
  126. package/lib/svg/EmptyFollowers.js +123 -0
  127. package/lib/svg/EmptyFrame.js +121 -0
  128. package/lib/svg/EmptyFromAddress.js +47 -35
  129. package/lib/svg/EmptyHappiness.js +79 -35
  130. package/lib/svg/EmptyHistory.js +79 -42
  131. package/lib/svg/EmptyImportHistory.js +47 -35
  132. package/lib/svg/EmptyInconvenience.js +91 -0
  133. package/lib/svg/EmptyInvoice.js +84 -35
  134. package/lib/svg/EmptyNetwork.js +47 -35
  135. package/lib/svg/EmptyNotification.js +79 -35
  136. package/lib/svg/EmptyProducts.js +82 -35
  137. package/lib/svg/EmptyRecycleBin.js +47 -35
  138. package/lib/svg/EmptyReply.js +117 -0
  139. package/lib/svg/EmptyReports.js +85 -35
  140. package/lib/svg/EmptyRoles.js +47 -35
  141. package/lib/svg/EmptySchedule.js +164 -0
  142. package/lib/svg/EmptySearch.js +89 -35
  143. package/lib/svg/EmptySkills.js +127 -41
  144. package/lib/svg/EmptySla.js +117 -0
  145. package/lib/svg/EmptySnippet.js +98 -50
  146. package/lib/svg/EmptyStateVariables.module.css +39 -0
  147. package/lib/svg/EmptyTag.js +82 -35
  148. package/lib/svg/EmptyTask.js +95 -35
  149. package/lib/svg/EmptyTeams.js +79 -35
  150. package/lib/svg/EmptyTemplate.js +91 -36
  151. package/lib/svg/EmptyTicket.js +82 -35
  152. package/lib/svg/EmptyTimeEntry.js +85 -35
  153. package/lib/svg/EmptyTimeline.js +122 -0
  154. package/lib/svg/EmptyTopic.js +85 -35
  155. package/lib/svg/EmptyUnauthorizedLogin.js +97 -0
  156. package/lib/svg/EmptyWebhook.js +47 -35
  157. package/lib/svg/EmptyWillBeRightBack.js +92 -0
  158. package/lib/svg/ErrorInconvenience.js +163 -0
  159. package/lib/svg/ErrorOopsSomethingMiss.js +164 -0
  160. package/lib/svg/ErrorUnableToProcessRequest.js +164 -0
  161. package/lib/svg/ErrorUnauthorizedLogin.js +163 -0
  162. package/lib/svg/ErrorUrlNotFound.js +164 -0
  163. package/lib/svg/ErrorWillBeRightBack.js +163 -0
  164. package/lib/svg/Extensions.js +123 -0
  165. package/lib/svg/Extractor.js +116 -0
  166. package/lib/svg/FailureLog.js +47 -35
  167. package/lib/svg/Import.js +132 -0
  168. package/lib/svg/Loader.js +77 -33
  169. package/lib/svg/NoRequestFound.js +47 -43
  170. package/lib/svg/NotImpossible.js +129 -0
  171. package/lib/svg/PageNotFound.js +49 -44
  172. package/lib/svg/Predictor.js +123 -0
  173. package/lib/svg/SVG.js +88 -81
  174. package/lib/svg/SVG.module.css +9 -2
  175. package/lib/svg/SvgLoader.js +66 -0
  176. package/lib/svg/UnableToProcessRequest.js +48 -43
  177. package/lib/svg/UnauthorizedLogin.js +48 -43
  178. package/lib/svg/UrlNotFound.js +49 -44
  179. package/lib/svg/WillBeRightBack.js +49 -44
  180. package/lib/svg/ZiaAnamoly.js +117 -0
  181. package/lib/svg/images/EmptyCustomDomain.svg +85 -0
  182. package/lib/svg/images/EmptySkills.svg +75 -67
  183. package/lib/svg/utils.js +26 -0
  184. package/package.json +26 -14
  185. package/.DS_Store +0 -0
  186. package/es/svg/EmptyCloud.js +0 -55
  187. package/es/svg/EmptyCloudDanger.js +0 -131
  188. package/es/svg/EmptyEdition.js +0 -56
  189. package/es/svg/Inconvenience.js +0 -65
  190. package/es/svg/InvalidUrl.js +0 -780
  191. package/es/svg/SitBack.js +0 -54
  192. package/es/svg/docs/SVG__default.docs.js +0 -605
  193. package/es/svg/images/EmptyAccounts.svg +0 -55
  194. package/es/svg/images/EmptyActiveCalls.svg +0 -57
  195. package/es/svg/images/EmptyActivity.svg +0 -85
  196. package/es/svg/images/EmptyAgent.svg +0 -52
  197. package/es/svg/images/EmptyArchived.svg +0 -38
  198. package/es/svg/images/EmptyAttach.svg +0 -39
  199. package/es/svg/images/EmptyBlueprint.svg +0 -78
  200. package/es/svg/images/EmptyCallHistory.svg +0 -46
  201. package/es/svg/images/EmptyCloud.svg +0 -38
  202. package/es/svg/images/EmptyContact.svg +0 -33
  203. package/es/svg/images/EmptyConversation.svg +0 -38
  204. package/es/svg/images/EmptyDashboard.svg +0 -42
  205. package/es/svg/images/EmptyEdition.svg +0 -76
  206. package/es/svg/images/EmptyHappiness.svg +0 -58
  207. package/es/svg/images/EmptyHistory.svg +0 -44
  208. package/es/svg/images/EmptyInvoice.svg +0 -45
  209. package/es/svg/images/EmptyNotification.svg +0 -38
  210. package/es/svg/images/EmptyProducts.svg +0 -57
  211. package/es/svg/images/EmptyReports.svg +0 -39
  212. package/es/svg/images/EmptySearch.svg +0 -37
  213. package/es/svg/images/EmptySnippet.svg +0 -46
  214. package/es/svg/images/EmptyTag.svg +0 -43
  215. package/es/svg/images/EmptyTask.svg +0 -42
  216. package/es/svg/images/EmptyTeams.svg +0 -39
  217. package/es/svg/images/EmptyTemplate.svg +0 -39
  218. package/es/svg/images/EmptyTicket.svg +0 -33
  219. package/es/svg/images/EmptyTimeEntry.svg +0 -96
  220. package/es/svg/images/EmptyTopic.svg +0 -41
  221. package/es/svg/images/Loader.svg +0 -62
  222. package/es/svg/images/SitBack.svg +0 -464
  223. package/lib/svg/EmptyCloud.js +0 -77
  224. package/lib/svg/EmptyCloudDanger.js +0 -147
  225. package/lib/svg/EmptyEdition.js +0 -78
  226. package/lib/svg/Inconvenience.js +0 -87
  227. package/lib/svg/InvalidUrl.js +0 -799
  228. package/lib/svg/SitBack.js +0 -76
  229. package/lib/svg/docs/SVG__default.docs.js +0 -765
  230. package/lib/svg/images/EmptyAccounts.svg +0 -55
  231. package/lib/svg/images/EmptyActiveCalls.svg +0 -57
  232. package/lib/svg/images/EmptyActivity.svg +0 -85
  233. package/lib/svg/images/EmptyAgent.svg +0 -52
  234. package/lib/svg/images/EmptyArchived.svg +0 -38
  235. package/lib/svg/images/EmptyAttach.svg +0 -39
  236. package/lib/svg/images/EmptyBlueprint.svg +0 -78
  237. package/lib/svg/images/EmptyCallHistory.svg +0 -46
  238. package/lib/svg/images/EmptyCloud.svg +0 -38
  239. package/lib/svg/images/EmptyContact.svg +0 -33
  240. package/lib/svg/images/EmptyConversation.svg +0 -38
  241. package/lib/svg/images/EmptyDashboard.svg +0 -42
  242. package/lib/svg/images/EmptyEdition.svg +0 -76
  243. package/lib/svg/images/EmptyHappiness.svg +0 -58
  244. package/lib/svg/images/EmptyHistory.svg +0 -44
  245. package/lib/svg/images/EmptyInvoice.svg +0 -45
  246. package/lib/svg/images/EmptyNotification.svg +0 -38
  247. package/lib/svg/images/EmptyProducts.svg +0 -57
  248. package/lib/svg/images/EmptyReports.svg +0 -39
  249. package/lib/svg/images/EmptySearch.svg +0 -37
  250. package/lib/svg/images/EmptySnippet.svg +0 -46
  251. package/lib/svg/images/EmptyTag.svg +0 -43
  252. package/lib/svg/images/EmptyTask.svg +0 -42
  253. package/lib/svg/images/EmptyTeams.svg +0 -39
  254. package/lib/svg/images/EmptyTemplate.svg +0 -39
  255. package/lib/svg/images/EmptyTicket.svg +0 -33
  256. package/lib/svg/images/EmptyTimeEntry.svg +0 -96
  257. package/lib/svg/images/EmptyTopic.svg +0 -41
  258. package/lib/svg/images/Loader.svg +0 -62
  259. package/lib/svg/images/SitBack.svg +0 -464
  260. package/src/.DS_Store +0 -0
  261. package/src/index.js +0 -6
  262. package/src/svg/.DS_Store +0 -0
  263. package/src/svg/EmptyAccounts.js +0 -30
  264. package/src/svg/EmptyActiveCalls.js +0 -36
  265. package/src/svg/EmptyActivity.js +0 -31
  266. package/src/svg/EmptyAgent.js +0 -29
  267. package/src/svg/EmptyArchived.js +0 -28
  268. package/src/svg/EmptyAttach.js +0 -29
  269. package/src/svg/EmptyBlueprint.js +0 -29
  270. package/src/svg/EmptyBusinessHoliday.js +0 -29
  271. package/src/svg/EmptyBusinessHour.js +0 -29
  272. package/src/svg/EmptyCallHistory.js +0 -36
  273. package/src/svg/EmptyCloud.js +0 -28
  274. package/src/svg/EmptyCloudDanger.js +0 -104
  275. package/src/svg/EmptyContact.js +0 -30
  276. package/src/svg/EmptyConversation.js +0 -29
  277. package/src/svg/EmptyDashboard.js +0 -29
  278. package/src/svg/EmptyEdition.js +0 -29
  279. package/src/svg/EmptyFromAddress.js +0 -29
  280. package/src/svg/EmptyHappiness.js +0 -29
  281. package/src/svg/EmptyHistory.js +0 -36
  282. package/src/svg/EmptyImportHistory.js +0 -29
  283. package/src/svg/EmptyInvoice.js +0 -29
  284. package/src/svg/EmptyNetwork.js +0 -29
  285. package/src/svg/EmptyNotification.js +0 -29
  286. package/src/svg/EmptyProducts.js +0 -29
  287. package/src/svg/EmptyRecycleBin.js +0 -29
  288. package/src/svg/EmptyReports.js +0 -29
  289. package/src/svg/EmptyRoles.js +0 -29
  290. package/src/svg/EmptySearch.js +0 -29
  291. package/src/svg/EmptySkills.js +0 -35
  292. package/src/svg/EmptySnippet.js +0 -35
  293. package/src/svg/EmptyTag.js +0 -29
  294. package/src/svg/EmptyTask.js +0 -29
  295. package/src/svg/EmptyTeams.js +0 -29
  296. package/src/svg/EmptyTemplate.js +0 -30
  297. package/src/svg/EmptyTicket.js +0 -29
  298. package/src/svg/EmptyTimeEntry.js +0 -29
  299. package/src/svg/EmptyTopic.js +0 -29
  300. package/src/svg/EmptyWebhook.js +0 -29
  301. package/src/svg/FailureLog.js +0 -29
  302. package/src/svg/Inconvenience.js +0 -38
  303. package/src/svg/InvalidUrl.js +0 -755
  304. package/src/svg/Loader.js +0 -27
  305. package/src/svg/NoRequestFound.js +0 -38
  306. package/src/svg/PageNotFound.js +0 -38
  307. package/src/svg/SVG.js +0 -88
  308. package/src/svg/SVG.module.css +0 -19
  309. package/src/svg/SitBack.js +0 -29
  310. package/src/svg/UnableToProcessRequest.js +0 -38
  311. package/src/svg/UnauthorizedLogin.js +0 -38
  312. package/src/svg/UrlNotFound.js +0 -38
  313. package/src/svg/WillBeRightBack.js +0 -38
  314. package/src/svg/docs/SVG__default.docs.js +0 -289
  315. package/src/svg/images/EmptyAccounts.svg +0 -55
  316. package/src/svg/images/EmptyActiveCalls.svg +0 -57
  317. package/src/svg/images/EmptyActivity.svg +0 -85
  318. package/src/svg/images/EmptyAgent.svg +0 -52
  319. package/src/svg/images/EmptyArchived.svg +0 -38
  320. package/src/svg/images/EmptyAttach.svg +0 -39
  321. package/src/svg/images/EmptyBlueprint.svg +0 -78
  322. package/src/svg/images/EmptyBusinessHoliday.svg +0 -50
  323. package/src/svg/images/EmptyBusinessHour.svg +0 -42
  324. package/src/svg/images/EmptyCallHistory.svg +0 -46
  325. package/src/svg/images/EmptyCloud.svg +0 -38
  326. package/src/svg/images/EmptyContact.svg +0 -33
  327. package/src/svg/images/EmptyContactInfo.svg +0 -27
  328. package/src/svg/images/EmptyConversation.svg +0 -38
  329. package/src/svg/images/EmptyDashboard.svg +0 -42
  330. package/src/svg/images/EmptyEdition.svg +0 -76
  331. package/src/svg/images/EmptyFilter.svg +0 -62
  332. package/src/svg/images/EmptyFromAddress.svg +0 -41
  333. package/src/svg/images/EmptyHappiness.svg +0 -58
  334. package/src/svg/images/EmptyHistory.svg +0 -44
  335. package/src/svg/images/EmptyImportHistory.svg +0 -43
  336. package/src/svg/images/EmptyInvoice.svg +0 -45
  337. package/src/svg/images/EmptyNetwork.svg +0 -50
  338. package/src/svg/images/EmptyNotification.svg +0 -38
  339. package/src/svg/images/EmptyProducts.svg +0 -57
  340. package/src/svg/images/EmptyRecycleBin.svg +0 -58
  341. package/src/svg/images/EmptyReports.svg +0 -39
  342. package/src/svg/images/EmptyRoles.svg +0 -30
  343. package/src/svg/images/EmptySearch.svg +0 -37
  344. package/src/svg/images/EmptySkills.svg +0 -75
  345. package/src/svg/images/EmptySnippet.svg +0 -46
  346. package/src/svg/images/EmptyTag.svg +0 -43
  347. package/src/svg/images/EmptyTask.svg +0 -42
  348. package/src/svg/images/EmptyTeams.svg +0 -39
  349. package/src/svg/images/EmptyTemplate.svg +0 -39
  350. package/src/svg/images/EmptyTicket.svg +0 -33
  351. package/src/svg/images/EmptyTimeEntry.svg +0 -96
  352. package/src/svg/images/EmptyTopic.svg +0 -41
  353. package/src/svg/images/EmptyWebhook.svg +0 -44
  354. package/src/svg/images/FailureLog.svg +0 -46
  355. package/src/svg/images/Inconvenience.svg +0 -719
  356. package/src/svg/images/Loader.svg +0 -62
  357. package/src/svg/images/NoRequestFound.svg +0 -247
  358. package/src/svg/images/PageNotFound.svg +0 -405
  359. package/src/svg/images/ReguestUrlNotFound.svg +0 -267
  360. package/src/svg/images/SitBack.svg +0 -464
  361. package/src/svg/images/UnableToProcess.svg +0 -752
  362. package/src/svg/images/UnauthorizedLogin.svg +0 -1047
  363. package/src/svg/images/WillBack.svg +0 -633
@@ -0,0 +1,122 @@
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports["default"] = void 0;
9
+
10
+ var _react = _interopRequireDefault(require("react"));
11
+
12
+ var _propTypes = _interopRequireDefault(require("prop-types"));
13
+
14
+ var _SVG = _interopRequireDefault(require("./SVG"));
15
+
16
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
17
+
18
+ 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); }
19
+
20
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
21
+
22
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
23
+
24
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
25
+
26
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
27
+
28
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
29
+
30
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
31
+
32
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
33
+
34
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
35
+
36
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
37
+
38
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
39
+
40
+ var EmptyTimeline = /*#__PURE__*/function (_React$Component) {
41
+ _inherits(EmptyTimeline, _React$Component);
42
+
43
+ var _super = _createSuper(EmptyTimeline);
44
+
45
+ function EmptyTimeline() {
46
+ _classCallCheck(this, EmptyTimeline);
47
+
48
+ return _super.apply(this, arguments);
49
+ }
50
+
51
+ _createClass(EmptyTimeline, [{
52
+ key: "render",
53
+ value: function render() {
54
+ return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
55
+ viewBox: "0 0 200 200",
56
+ name: "timeline"
57
+ }, this.props), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("style", null, ".EmptyTimeline_svg__cls-3,.EmptyTimeline_svg__cls-4,.EmptyTimeline_svg__cls-5,.EmptyTimeline_svg__cls-7,.EmptyTimeline_svg__cls-8{fill:none}.EmptyTimeline_svg__cls-3{stroke-miterlimit:10;stroke:var(--zd_emptysvg_tiny_circle)}.EmptyTimeline_svg__cls-7{stroke-miterlimit:10;stroke:var(--zd_emptysvg_cross)}.EmptyTimeline_svg__cls-4,.EmptyTimeline_svg__cls-5{stroke:var(--zd_emptysvg_plus);stroke-linecap:round;stroke-linejoin:round}.EmptyTimeline_svg__cls-5{stroke:var(--zd_emptysvg_primary_stroke)}.EmptyTimeline_svg__cls-8{stroke:var(--zd_emptysvg_small_circle);stroke-linecap:round;stroke-linejoin:round}.EmptyTimeline_svg__cls-6{fill:var(--zd_emptysvg_secondary_fill);isolation:isolate}")), /*#__PURE__*/_react["default"].createElement("path", {
58
+ d: "M82.34 64.37s45-29.83 67.77-20.85 38.33 84.51-25 118.4-92-39.83-92.2-52.9c-.24-12.64 0-42.78 49.43-44.65z",
59
+ fill: "var(--zd_emptysvg_primary_fill)",
60
+ opacity: 0.05
61
+ }), /*#__PURE__*/_react["default"].createElement("ellipse", {
62
+ cx: 145.98,
63
+ cy: 40.36,
64
+ rx: 3.1,
65
+ ry: 3.18,
66
+ strokeMiterlimit: 10,
67
+ stroke: "var(--zd_emptysvg_medium_circle)",
68
+ fill: "none"
69
+ }), /*#__PURE__*/_react["default"].createElement("ellipse", {
70
+ className: "EmptyTimeline_svg__cls-3",
71
+ cx: 79.11,
72
+ cy: 38.46,
73
+ rx: 1.85,
74
+ ry: 1.9
75
+ }), /*#__PURE__*/_react["default"].createElement("path", {
76
+ className: "EmptyTimeline_svg__cls-4",
77
+ d: "M29.82 103.11l-.31 5.59M26.94 105.75l5.44.31"
78
+ }), /*#__PURE__*/_react["default"].createElement("ellipse", {
79
+ className: "EmptyTimeline_svg__cls-8",
80
+ cx: 154.59,
81
+ cy: 151.4,
82
+ rx: 2.15,
83
+ ry: 2.21
84
+ }), /*#__PURE__*/_react["default"].createElement("path", {
85
+ className: "EmptyTimeline_svg__cls-7",
86
+ d: "M163.1 117.94l3.63 4.18M162.88 121.9l4.06-3.73"
87
+ }), /*#__PURE__*/_react["default"].createElement("path", {
88
+ className: "EmptyTimeline_svg__cls-6",
89
+ d: "M98.17 79.34V71.9s-36.3 7.19-37.91 46.1c0 0-9.08-40.53 37.46-53.85v-8.49l19.68 13.76zM99.62 120.26l-22.83 2.83-4.68-2.89 4.41-3.45 22.38 1.18.72 2.33z"
90
+ }), /*#__PURE__*/_react["default"].createElement("path", {
91
+ className: "EmptyTimeline_svg__cls-5",
92
+ d: "M78.56 147.23c-28.72-23.13-11-53.38-11-53.38C80 73.08 98.12 71.9 98.12 71.9v7.44s10.2-3.17 16.42-7.75c11.78-8.68 8.3.48 4.74-1.33-4-2-21.61-14.6-21.61-14.6v8.45c0 2-1.36 1.38-3.32 1.85a48.52 48.52 0 00-10.25 3.91c-16.06 7.91-21.82 22.5-23.94 34.55-3.81 21.63 6.56 38.88 19.09 46.33 18.44 10.95 58.8 6.06 59.56-30.38.9-43-40.37-35.18-40.37-35.18s0 18.39.4 30.38 8.79 8 8.79 4.8-31.16-3.62-31.16-3.62l-4.41 3.45 4.68 2.89 19-2.34"
93
+ }));
94
+ }
95
+ }]);
96
+
97
+ return EmptyTimeline;
98
+ }(_react["default"].Component);
99
+
100
+ exports["default"] = EmptyTimeline;
101
+ EmptyTimeline.propTypes = {
102
+ alignHorizontal: _propTypes["default"].bool,
103
+ className: _propTypes["default"].string,
104
+ dataId: _propTypes["default"].string,
105
+ isRender: _propTypes["default"].bool,
106
+ size: _propTypes["default"].oneOf(['small', 'large']),
107
+ palette: _propTypes["default"].oneOf(['default', 'dark'])
108
+ };
109
+ EmptyTimeline.defaultProps = {
110
+ size: 'large',
111
+ alignHorizontal: true,
112
+ isRender: true,
113
+ className: '',
114
+ dataId: 'emptyTimeline',
115
+ palette: 'default'
116
+ };
117
+
118
+ if (false) {
119
+ EmptyTimeline.docs = {
120
+ componentGroup: 'SVG'
121
+ };
122
+ }
@@ -1,74 +1,124 @@
1
- 'use strict';
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
4
 
3
5
  Object.defineProperty(exports, "__esModule", {
4
6
  value: true
5
7
  });
8
+ exports["default"] = void 0;
9
+
10
+ var _react = _interopRequireDefault(require("react"));
6
11
 
7
- var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
12
+ var _propTypes = _interopRequireDefault(require("prop-types"));
8
13
 
9
- var _react = require('react');
14
+ var _SVG = _interopRequireDefault(require("./SVG"));
10
15
 
11
- var _react2 = _interopRequireDefault(_react);
16
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
12
17
 
13
- var _propTypes = require('prop-types');
18
+ 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); }
14
19
 
15
- var _propTypes2 = _interopRequireDefault(_propTypes);
20
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
16
21
 
17
- var _SVG = require('./SVG');
22
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
18
23
 
19
- var _SVG2 = _interopRequireDefault(_SVG);
24
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
20
25
 
21
- var _EmptyTopic = require('./images/EmptyTopic.svg');
26
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
22
27
 
23
- var _EmptyTopic2 = _interopRequireDefault(_EmptyTopic);
28
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
24
29
 
25
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
30
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
26
31
 
27
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
32
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
28
33
 
29
- function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
34
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
30
35
 
31
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
36
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
32
37
 
33
- var EmptyTopic = function (_React$Component) {
38
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
39
+
40
+ var EmptyTopic = /*#__PURE__*/function (_React$Component) {
34
41
  _inherits(EmptyTopic, _React$Component);
35
42
 
43
+ var _super = _createSuper(EmptyTopic);
44
+
36
45
  function EmptyTopic() {
37
46
  _classCallCheck(this, EmptyTopic);
38
47
 
39
- return _possibleConstructorReturn(this, (EmptyTopic.__proto__ || Object.getPrototypeOf(EmptyTopic)).apply(this, arguments));
48
+ return _super.apply(this, arguments);
40
49
  }
41
50
 
42
51
  _createClass(EmptyTopic, [{
43
- key: 'render',
52
+ key: "render",
44
53
  value: function render() {
45
- var _props = this.props,
46
- size = _props.size,
47
- _props$className = _props.className,
48
- className = _props$className === undefined ? '' : _props$className,
49
- alignHorizontal = _props.alignHorizontal;
50
-
51
- return _react2.default.createElement(
52
- _SVG2.default,
53
- { viewBox: '0 0 181.9 139.3', name: 'topic', size: size, className: className, alignHorizontal: alignHorizontal },
54
- _react2.default.createElement('image', { xlinkHref: _EmptyTopic2.default, height: '100%', width: '100%' })
55
- );
54
+ return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
55
+ viewBox: "0 0 200 200",
56
+ name: "topic"
57
+ }, this.props), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("style", null, ".EmptyTopic_svg__cls-7{fill:var(--zd_emptysvg_secondary_fill)}.EmptyTopic_svg__cls-4,.EmptyTopic_svg__cls-5,.EmptyTopic_svg__cls-6,.EmptyTopic_svg__cls-8,.EmptyTopic_svg__cls-9,.EmptyTopic_svg__cls-10{fill:none}.EmptyTopic_svg__cls-4{stroke-miterlimit:10;stroke:var(--zd_emptysvg_tiny_circle)}.EmptyTopic_svg__cls-9{stroke-miterlimit:10;stroke:var(--zd_emptysvg_cross)}.EmptyTopic_svg__cls-5{stroke:var(--zd_emptysvg_plus)}.EmptyTopic_svg__cls-5,.EmptyTopic_svg__cls-6,.EmptyTopic_svg__cls-8{stroke-linecap:round;stroke-linejoin:round}.EmptyTopic_svg__cls-6{stroke:var(--zd_emptysvg_primary_stroke)}.EmptyTopic_svg__cls-10{stroke:var(--zd_emptysvg_small_circle);stroke-linecap:round;stroke-linejoin:round}.EmptyTopic_svg__cls-8{stroke:var(--zd_emptysvg_primary_stroke);stroke-width:1.5px}")), /*#__PURE__*/_react["default"].createElement("path", {
58
+ d: "M86.51 62.52S133.43 31.67 157.17 41s40 87.37-26.06 122.41S35.22 122.19 35 108.68c-.28-13.07 0-44.23 51.51-46.16z",
59
+ fill: "var(--zd_emptysvg_primary_fill)",
60
+ opacity: 0.05
61
+ }), /*#__PURE__*/_react["default"].createElement("ellipse", {
62
+ cx: 156.04,
63
+ cy: 31.69,
64
+ rx: 3.54,
65
+ ry: 3.51,
66
+ strokeMiterlimit: 10,
67
+ stroke: "var(--zd_emptysvg_medium_circle)",
68
+ fill: "none"
69
+ }), /*#__PURE__*/_react["default"].createElement("ellipse", {
70
+ className: "EmptyTopic_svg__cls-4",
71
+ cx: 79.62,
72
+ cy: 29.6,
73
+ rx: 2.12,
74
+ ry: 2.1
75
+ }), /*#__PURE__*/_react["default"].createElement("path", {
76
+ className: "EmptyTopic_svg__cls-5",
77
+ d: "M23.28 100.86l-.35 6.16M20 103.76l6.22.35"
78
+ }), /*#__PURE__*/_react["default"].createElement("ellipse", {
79
+ className: "EmptyTopic_svg__cls-10",
80
+ cx: 165.88,
81
+ cy: 154.09,
82
+ rx: 2.45,
83
+ ry: 2.43
84
+ }), /*#__PURE__*/_react["default"].createElement("path", {
85
+ className: "EmptyTopic_svg__cls-9",
86
+ d: "M175.6 117.21l4.15 4.6M175.36 121.57l4.64-4.12"
87
+ }), /*#__PURE__*/_react["default"].createElement("path", {
88
+ className: "EmptyTopic_svg__cls-6",
89
+ d: "M162.4 81.28c-7.8-.17-14.74-.79-16.33-2.38-7-7 .57-3.47 1.19-1.65s-20.84 62.14-27.82 65c-4.63 1.89-4.16-2.67-3.16-5.89a.91.91 0 011.78.22c.15 2.65-.4 6.07-4.16 6.07-5.89 0-67.18-16.94-72.47-18.4a.62.62 0 01-.44-.48c-.33-1.65-1.54-8.19.08-8.37 1.84-.2 71.76 17.13 73.18 17.29 2.62.31 5.44-1.07 7-5.49S141.4 78.81 142 77.38v-.06c.24-.41 3-5.37-2.69-7.91-6-2.64-59.09-8.34-59.5-9.76s7.6-1.42 5.24 5.09-9.52-.62-9.28-1.82 5.91 1.36 4.78 5.62-8.91 2.73-8.75.32 6.4 1.2 4.62 4.57-8.34 1.29-8-.56 6.64 1.93 5.27 5.22-9 1.69-9-.48 7 0 5.34 4.49a3.85 3.85 0 01-7.12.73c-.65-2 4.53-2.57 3.8 3s-6.88 3.29-7 1.44 4-2.41 4 3.78-7.78-.24-7.37-1 6-.16 4 5.14-8.59 2.89-8.34-.64 6.63.88 4.21 6.66-8 .4-7.86-1 6.16.48 3.89 6.18-9.8.08-9.23-.88 7-1 3.72 4.65-9.8.73-9-1.52c.46-1.25 6.6.86 12 3a75.78 75.78 0 0027.62 5.44c8.18 0 16.65-1.33 20.37-6.26 9-11.92 15.62-11.07 19.67-17.55s1.09-18.07-11.58-16S92 90 92.54 94s-1.36 7.89-2.54 8.73-1.36 3.19-.51 3.86A16.39 16.39 0 0094.4 109c1.19.17 3.58-2.51 3.49-2.78s-5.64-4.63-6-4 5.3 3.15 6.62 2.89 1.59-1.49 2.64-2-3.35-1.55-3.88-2.44 5.82-10.23 6.88-12 1-3.68-.17-2.89-1.24 4.64.26 5.25 1.85 1.22 3.44.61 1.32-3.15.26-2.62-7.84 10.84-7.84 10.84"
90
+ }), /*#__PURE__*/_react["default"].createElement("path", {
91
+ className: "EmptyTopic_svg__cls-7",
92
+ d: "M97.92 106.17c-.2.26-2 2.51-3.47 2.75s-4.38-2-4.85-2.3l-.11-.11a2.74 2.74 0 01.22-3.5s3.56-3 2.88-9c0 0-2.13-13.83 13.17-16.8s15.58 14.48 10.15 18-12.43 4.69-15.86 8.89z"
93
+ }), /*#__PURE__*/_react["default"].createElement("path", {
94
+ className: "EmptyTopic_svg__cls-8",
95
+ d: "M120.76 93.55l2.23.95M123.37 82.52l4.03-1.08M116.9 73.63l1.51-2.04M102.25 73.63l-1.57-3.39M91.92 82.52l-2.48-.5"
96
+ }), /*#__PURE__*/_react["default"].createElement("path", {
97
+ className: "EmptyTopic_svg__cls-7",
98
+ d: "M42.1 124.6a.61.61 0 01-.45-.48c-.33-1.72-1.55-8.6.07-8.33 1.83.3 70.68 16.69 72.85 17.21h.11c.62 0 6 .07 7-5.47S140.9 81.65 143.49 76a.62.62 0 01.92-.25l2.72 1.84a.63.63 0 01.25.68c-1.43 4.89-15 50.45-27.51 64.23a.7.7 0 01-.19.15 3.06 3.06 0 01-2.89 0 .63.63 0 00-.61 0 5.05 5.05 0 01-3.6.19c-2.37-.77-65.03-16.84-70.48-18.24z"
99
+ }));
56
100
  }
57
101
  }]);
58
102
 
59
103
  return EmptyTopic;
60
- }(_react2.default.Component);
61
-
62
- exports.default = EmptyTopic;
104
+ }(_react["default"].Component);
63
105
 
106
+ exports["default"] = EmptyTopic;
64
107
  EmptyTopic.propTypes = {
65
- size: _propTypes2.default.oneOf('small', 'large'),
66
- className: _propTypes2.default.string,
67
- alignHorizontal: _propTypes2.default.bool
108
+ alignHorizontal: _propTypes["default"].bool,
109
+ className: _propTypes["default"].string,
110
+ dataId: _propTypes["default"].string,
111
+ isRender: _propTypes["default"].bool,
112
+ size: _propTypes["default"].oneOf(['small', 'large']),
113
+ palette: _propTypes["default"].oneOf(['default', 'dark'])
68
114
  };
69
115
  EmptyTopic.defaultProps = {
70
116
  size: 'large',
71
- alignHorizontal: true
117
+ alignHorizontal: true,
118
+ isRender: true,
119
+ className: '',
120
+ dataId: 'emptyTopic',
121
+ palette: 'default'
72
122
  };
73
123
 
74
124
  if (false) {
@@ -0,0 +1,97 @@
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports["default"] = void 0;
9
+
10
+ var _react = _interopRequireDefault(require("react"));
11
+
12
+ var _propTypes = _interopRequireDefault(require("prop-types"));
13
+
14
+ var _SVG = _interopRequireDefault(require("./SVG"));
15
+
16
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
17
+
18
+ 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); }
19
+
20
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
21
+
22
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
23
+
24
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
25
+
26
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
27
+
28
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
29
+
30
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
31
+
32
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
33
+
34
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
35
+
36
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
37
+
38
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
39
+
40
+ var EmptyUnauthorizedLogin = /*#__PURE__*/function (_React$Component) {
41
+ _inherits(EmptyUnauthorizedLogin, _React$Component);
42
+
43
+ var _super = _createSuper(EmptyUnauthorizedLogin);
44
+
45
+ function EmptyUnauthorizedLogin() {
46
+ _classCallCheck(this, EmptyUnauthorizedLogin);
47
+
48
+ return _super.apply(this, arguments);
49
+ }
50
+
51
+ _createClass(EmptyUnauthorizedLogin, [{
52
+ key: "render",
53
+ value: function render() {
54
+ return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
55
+ viewBox: "0 0 1326.83 1190.04",
56
+ name: "EmptyUnauthorizedLogin"
57
+ }, this.props), /*#__PURE__*/_react["default"].createElement("path", {
58
+ fill: "var(--zd_emptysvg_primary_stroke)",
59
+ d: "M446.05 817c-13.41 0-23.09-1.66-26.24-5.94-1.51-2.05-1.55-4.53-.13-7.38 4.37-8.74 19.18-15.77 37.14-21.13-1-.21-1.89-.44-2.79-.7-11.68-3.24-17.8-9.38-18.21-18.25-1.08-23.9 11.77-107.78 29.65-177.91q-2-2-3.9-4c-2-2.08-3.4-3.59-4.17-4.23-10.14-8.47 10.38-61.88 14.33-69.78 5.16-10.31 24.65-10.43 25.48-10.43a1.21 1.21 0 011 1.81c-10.34 18-20.75 50.1-29.94 86.12 53.19 53.64 113.23 75.9 167.53 82.74l-1.71-30.48c-10.09-2.72-106-29.62-140.57-76.17a1.18 1.18 0 01-.18-1.07l3.27-10.63a1.2 1.2 0 01.88-.82 1.23 1.23 0 011.16.36c.33.37 34.1 36.6 97.75 54.46a263.86 263.86 0 0040.68 8l-1.55-25.08C606.83 580 581.84 571 561.31 560c-16.63-9-30.41-19.36-40.94-30.9-15.49-17-19.34-31.2-20.18-35.31-29 3.61-53.62 28.78-57.8 33.26 2.66 4 12.45 19.16 11.63 24.91-1.11 7.78-13.49 7.87-14 7.87-1.8 0-3.72-2.49-7.24-7.27-2.61-3.55-5.56-7.57-8-9.17-1.63-1.09-4.86.32-7.34 3.2-2.93 3.4-4.81 9.06-.51 13.79 5.68 6.25 14 6.5 19.48 6.67 2.65.08 4.57.14 5.82.76a1.86 1.86 0 011 1.73c0 5.09-21.65 28.7-24.94 30.34-2.93 1.46-15-.34-33.43-3.73l-2.37-.43c-10.15-1.84-22.32-27.11-23.22-37.84s18.09-50.33 25.14-57.38c1.87-1.86 5.59-1.92 11.13-.18a650.42 650.42 0 01-6.78-5.75 1.21 1.21 0 01-.34-1.36c11.13-28 41.82-59 65.61-80.06a615.65 615.65 0 0149.38-39.31 1.19 1.19 0 011.59.2c1.89 2.18 3.12 6 3.85 10.84 1.57-5.77 3.37-10.47 5.37-13.31 9-12.8 55.79-26.9 69.49-30.81 3.71-33.38 22.22-55 37.49-67.39 18.31-14.87 36.56-20.4 43.14-19.47 9.22 1.31 16.81 1.72 22.6 1.28-16.74-3.53-24.78-8.37-23.92-14.45 1-7.15 14.71-12.56 18.22-12.09 6.34.83 21.94 7.82 21.15 19.42a7.86 7.86 0 01-3 5.76 12.39 12.39 0 01-1.27.89c30.79 4.92 49.11 25.59 59.07 42.12a124.76 124.76 0 0114.41 35.25 1.19 1.19 0 01-.07.72 30.23 30.23 0 00-2.42 8.41 6.34 6.34 0 01.77-1.64 5.93 5.93 0 014.23-2.46c17.57-2.7 70.67 26.4 72.92 27.65 65.5 34.2 130.42 129.5 129.84 132.43-.08.38-.2 1-2.58 2.18a19.81 19.81 0 012.15 1c10.67 5.82 23.5 40.76 21.36 53.16a10.66 10.66 0 01-4.35 7.06 10.83 10.83 0 011 .75c3.1 2.63 4 7.12 2.8 13.34-3.12 15.59-18.91 23.84-45.67 23.84-8.47 0-25.44-13.39-32-22.13-2.49-3.29-3.44-5.76-2.93-7.56 1.26-4.43 6.67-3.92 12.92-3.32 4.7.44 10 1 15.21-.16 3-.66 4.8-2.23 5.4-4.83 1.28-5.49-3.12-13.73-5.9-15.93-1.31-1-8.62 1.38-14 3.14-8.73 2.88-17 5.6-20.26 3a4 4 0 01-1.38-3.67c.44-5.29 7.37-12.82 14.62-19.15a1.16 1.16 0 01-.54-.89c-.32-3.2-2.59-6.49-6.74-9.76-10.84-8.56-31.57-14.7-43.7-17.1.91 3.69 1.8 7.25 2.66 10.64a1.24 1.24 0 01-.15.94c-11.46 18.1-39.82 35.4-84.3 51.4a588.79 588.79 0 01-62.35 18.39l2 26c57.08-10.91 109.24-35.25 149.74-59.09 0-3.63-.1-20.91-2.62-28.23-.26-.59-.47-1.09-.63-1.51l-.12-.22-.22-.37.1-.07c-.45-1.35-.17-1.5.28-1.74 1.07-.57 1.65.49 1.94 1a13.88 13.88 0 011 2.5c1.65 3.47 4.68 9.71 7.83 16.21 12.34 25.42 18.25 37.79 18.47 39.3a1.2 1.2 0 11-2.38.34c-.42-1.84-11.15-24-18.26-38.59-1.55-3.19-2.85-5.88-3.94-8.15a188.13 188.13 0 01.92 20.23 1.22 1.22 0 01-.59 1c-40.85 24.1-93.58 48.78-151.36 59.78l4 51.5a631.6 631.6 0 0071.31-18.69c48-15.86 80.85-34.83 96-55.26 1.44-7 5.38-8.39 5.62-8.47a1.21 1.21 0 011.29.35 1.22 1.22 0 01.16 1.34 58.33 58.33 0 01-4.82 7.81 34.55 34.55 0 00.11 10.8c.51 3.58 1.93 10.38 3.9 19.78 7.33 35 21 100.15 19.07 148.42a1.2 1.2 0 01-.74 1.06l-2 .85q6.56.38 8.39 3.42c1.38 2.3 2.85 4.62 4.28 6.89 6.78 10.7 12.63 19.95 7.19 23.41-4.77 3-91.45 12.5-114.79 2-3.67-1.64-5.74-3.77-6.15-6.32s-.77-4.93-1.13-7.34c-2.26-15.2-4.22-28.33-13.22-34.87-10.73-7.81-72.29-49.69-72.91-50.12a1.2 1.2 0 01-.53-.9l-3.19-41.29c-2 .38-3.46.65-4.41.82v36.63a1.2 1.2 0 01-1.14 1.2c-7 .34-68.92 3.13-77.13-1.79-2.87-1.72-4.31-13.9-4.94-29.87l-1.34-.13 1.69 27.29a1.22 1.22 0 01-.51 1.06c-.46.32-45.9 32.35-65.67 41.13s-32 39.61-33 53.69a1.21 1.21 0 01-1.2 1.12 1.21 1.21 0 01-1.19-1.13c0-.43-2.22-42.65 36.35-61.26 34.72-16.74 54.7-34.06 57.76-36.8L636 670.36c-54.53-6.78-114.82-29-168.36-82.47-17.55 69.65-30.43 152.68-29.39 175.64.31 6.89 4.78 12 13.29 15A55.55 55.55 0 00462 781.1c27.73-7.57 61-11.42 75.09-11.68 7-.14 7.95.58 8.39 1.39a1.49 1.49 0 01-.09 1.57c-2.7 4-51.72 15.62-83.07 11.19-2.54.7-5 1.43-7.48 2.19-18.21 5.71-29.62 12.28-33 19-1 2-1 3.61-.09 4.89 8.8 11.94 86.51-.84 112-5 6.75-1.11 9.76-1.6 10.58-1.6a1.21 1.21 0 110 2.41c-.66 0-4.86.69-10.19 1.57-30.8 5.05-64.98 9.97-88.09 9.97zm291.67-112.15c5.81 3.95 62.24 42.37 72.5 49.83 9.81 7.13 11.84 20.73 14.18 36.47.36 2.39.73 4.84 1.13 7.31.27 1.7 1.87 3.21 4.75 4.5 22 9.85 108 1 112.52-1.87 3.41-2.16-2.36-11.27-7.93-20.08-1.45-2.29-2.93-4.63-4.32-7-.89-1.48-3.63-2.27-7.91-2.3-1.46 0-3 .07-4.69.22-19.59 8-64.86 25.85-71 23.8a1.64 1.64 0 01-1.26-1.63c.15-4.52 33.54-16 50.94-20.51a139.09 139.09 0 0120.79-4c2.52-1 5-2 7.26-3 1.72-47.89-11.78-112.34-19-147.06-2-9.44-3.41-16.27-3.93-19.93a44.2 44.2 0 01-.48-7.57c-36 43.48-137.39 66.06-166.63 71.79zm169.95 68.67c-22.4 4.42-52.49 16-58.64 20.07 7.24-.45 34.74-10.59 58.64-20.07zm-438.79 8.35c27.72 2 64.93-6.28 73.06-10-8.28-.72-42.76 2.52-73.06 10zm169.53-111.21l1.46 26.06a1.18 1.18 0 01-.38.95c-.2.19-20.76 19.25-58.77 37.58-20.82 10-29.3 27.24-32.73 40.47 5.59-14.58 15.9-31.1 29.75-37.26 18.39-8.17 59.48-36.83 64.71-40.51l-1.66-27zm8.54.87c.56 15.77 1.77 26.38 3.78 27.58 6.29 3.77 54.91 2.41 74.63 1.51v-36.5a1.2 1.2 0 011-1.18c.08 0 2.09-.36 5.62-1.05l-4-51.52c-3.32.6-6.64 1.16-10 1.68v57.19a1.22 1.22 0 01-1.07 1.2 345.86 345.86 0 01-69.91 1.09zm-.08-2.43a341.47 341.47 0 0068.73-.94v-55.75A306.43 306.43 0 01647 615c-.49 20-.58 39.15-.13 54.1zm-3.81-.37l1.4.15c-.56-16.79-.29-37.23.15-54.13-1.64-.15-3.27-.31-4.91-.48zm-4.79-.52l2.36.27-3.36-54.48a266.72 266.72 0 01-41.62-8.16c-56.89-16-90.18-46.58-97.3-53.63l-2.49 8.1c36.13 47.93 138.69 74.75 139.72 75a1.19 1.19 0 01.9 1.1zm8.8-55.67A304.73 304.73 0 00715.6 610v-24.14H648c-.37 8.86-.69 17.84-.93 26.68zm-7.52-.71c1.71.18 3.42.35 5.12.5.34-12.49.76-22.76 1-27.73a1.21 1.21 0 011.21-1.15h69.92a1.21 1.21 0 011.21 1.2v25q4.92-.76 9.79-1.66l-2.11-27.26a1.2 1.2 0 01.94-1.27c1.19-.26 118.65-26.59 145.88-68.53-.35-1.37-1.36-5.41-2.79-11.2a27.07 27.07 0 00-6.31-.59 2.08 2.08 0 01-1.63-.49c-3.39-2.77-4.88-21.31-6.93-51.52-.32-4.76-.66-9.8-1-14.76-7.37-33.67-6-34.47-4.88-35.08a1.56 1.56 0 012 .39c2.44 2.45 3.83 14.48 5.3 34.21 4.26 19.51 10.21 44.45 15.46 65.71 12.5 2.29 34.55 8.91 45.84 17.82 4 3.18 6.5 6.47 7.36 9.8 1.37-.62 2.75-1.28 4.1-1.94 4.93-3.85 9.22-6.66 10.71-7.22a1.67 1.67 0 011.81.19 1.51 1.51 0 01.32 1.43c-.66 2-6.41 5.16-11.51 7.65-8.36 6.57-18.74 16.2-19.22 22-.09 1 .23 1.39.47 1.58 2.28 1.78 11.37-1.21 18-3.41 8.6-2.84 14-4.49 16.21-2.73 3.2 2.53 8.31 11.65 6.75 18.36-.57 2.44-2.29 5.56-7.24 6.63-5.55 1.19-11.31.64-15.95.2-6.17-.58-9.69-.8-10.38 1.59-.1.36-.21 1.8 2.54 5.45 6.67 8.85 23.09 21.17 30.11 21.17 25.47 0 40.44-7.58 43.31-21.9 1.06-5.3.39-9-2-11a7.29 7.29 0 00-2-1.17c-6.69 3-15.75 1.37-16.18 1.3a1.21 1.21 0 01-1-1.08 1.19 1.19 0 01.77-1.23c.46-.18 9.53-3.55 16.23-1.58a11.59 11.59 0 001.12-.69 8.19 8.19 0 003.51-5.61c2.11-12.19-11.25-45.8-20.13-50.64a16.12 16.12 0 00-4.36-1.68c-2.06.81-4.84 1.79-8.62 3a1.21 1.21 0 01-1.37-1.81 9.9 9.9 0 019.7-3.69 27.45 27.45 0 003.6-1.64c-5-8.83-66.42-97.47-128.35-129.81-.57-.32-54.64-30-71.41-27.39a3.54 3.54 0 00-2.6 1.43c-1.75 2.59-.31 8.82 1.37 16 4.23 18.2 10.61 45.69-19.72 63.9a1.19 1.19 0 01-1.33-.07 1.21 1.21 0 01-.46-1.26s.09-.37.22-.95c-2.83 2.46-4.85 3.9-5.13 4.1-34.55 22.71-66.44 30.88-94.82 24.3-28.84-6.74-45.55-27.27-50.73-34.61a1.21 1.21 0 01-.14.67 1.15 1.15 0 01-1.15.63c-.86-.06-20.88-2.39-16.68-67.92.06-.81.12-1.6.19-2.4-14.52 4.2-59 17.86-67.27 29.61-2.59 3.68-4.81 10.55-6.66 18.84 1.39 24.36-5.26 62.8-6.61 65.12a1.37 1.37 0 01-1.47.74c-.44-.09-1-.42-1.11-1.47-.68-5.44 1.58-40.56 6.88-64.65-.39-6.63-1.42-12-3.38-15.05-9.83 7-92.46 67-112.86 116.82 3.89 3.33 7.9 6.67 11.79 9.83 1.25.56 2.55 1.18 3.92 1.86 7.46 3.71 25.14 14.07 24.64 17.65A1.61 1.61 0 01430 524c-3.57.68-17.4-9.8-28.53-18.85a50.92 50.92 0 00-9.47-3.31c-2.91-.62-5-.5-5.82.35-6.52 6.51-25.28 45.43-24.45 55.47.89 10.68 12.9 34.16 21.25 35.68l2.37.43c8 1.46 29.13 5.34 31.92 4C420.75 596 440 574 440.82 569.8a22.37 22.37 0 00-4.46-.37c-5.9-.18-14.81-.45-21.18-7.46-5.36-5.9-3.1-12.83.47-17 3.37-3.91 7.78-5.44 10.49-3.64s5.85 6 8.57 9.75c1.88 2.55 4.45 6 5.37 6.3 2.93 0 10.88-1 11.56-5.81.65-4.53-8.28-18.86-11.77-24a1.2 1.2 0 01.09-1.47c.27-.32 28-31.41 61.1-34.88a1.22 1.22 0 011.32 1c.08.64 9.86 64 134.6 92.05a1.18 1.18 0 01.94 1.1zM495.1 499.74c-5 .32-17.63 1.84-21.21 9-5.6 11.2-22.93 60.19-14.95 66.86.89.73 2.28 2.2 4.38 4.42l2.85 3C475 548.83 485 518.2 495.1 499.74zm-82.42 11.16c6.7 5.12 12.26 9 15.13 10.26-2.46-2.29-8.39-6.39-15.13-10.26zm451.73-14.22a34.18 34.18 0 014.68.45 4377.62 4377.62 0 01-10-41.39q-1-4.1-1.82-7.83c1.37 20.15 3.23 47 6 48.84a8.07 8.07 0 011.14-.07zm-357-93.56a401.91 401.91 0 00-4.6 43.88 333.89 333.89 0 004.58-43.88zm100-38.89c-3.4 5.21-15.84 26.4-5.78 44.27.15.27 16.81 28.14 51 36.11 27.71 6.46 58.95-1.6 92.88-24a78.86 78.86 0 007.29-6.15c2-11.2 5.13-37.91-9-45.4-7.27 6.12-74.43 59.57-136.41-4.83zM755 415.76c-.1.53-.2 1-.29 1.46 16.38-10.88 20.12-25 19.66-38.17 0 .53-.06 1.08-.1 1.63-1.16 15.13-11.6 27.75-19.27 35.08zm-11.45-49.3a1.19 1.19 0 01.51.12c15.23 7.11 13.71 31.73 11.67 45 7-7.28 15.18-18.36 16.14-31.06.76-10.18-1.22-17.16-3-23.31-2.23-7.86-4.16-14.65.25-25A123.76 123.76 0 00755.07 298c-9.76-16.18-27.74-36.42-58-41-1.12-.17-2.21-.35-3.28-.53-6.42 1.79-16.4 1.73-29.8-.18-6.39-.9-24.3 5.17-41.28 19C608 287.21 590.12 308 586.25 340l1.19-.33a1.18 1.18 0 011.11.26 1.22 1.22 0 01.39 1.08c-5.3 35.84 4.8 58.49 9.67 66.93-10.42-21.41 6.9-45.33 7.66-46.36a1.19 1.19 0 01.9-.49 1.1 1.1 0 01.94.38c63.9 67.8 133.92 5.91 134.62 5.27a1.24 1.24 0 01.81-.28zm107.15 37.15c.23 1.73.58 3.87 1 6.38-.3-2.49-.64-4.66-1-6.38zm-265.5-35.35c.76 27.3 7.09 37.29 11.28 40.93-3.7-6.3-10.07-19.95-11.28-40.93zm.77-25.65c-.1 1.07-.19 2.17-.26 3.27-.1 1.48-.18 2.94-.25 4.36.2-2.5.48-5.08.84-7.72zM680.66 231c-3.2 0-14.49 4.86-15.22 10.06-.35 2.44 1.83 8.42 28.27 12.93a12.37 12.37 0 004.15-2.05 5.48 5.48 0 002.16-4c.68-10-14.23-16.24-19.06-16.87z"
60
+ }), /*#__PURE__*/_react["default"].createElement("path", {
61
+ d: "M600.07 412.45s-10.29-23.67 7.17-50.13c0 0 49.36 68.09 136.3 5.35 0 0 19.24 4 9.35 52.11 0 0 36.27-36.57 14.85-76.91 0 0 6.07-17.81-7.8-38.64s-31.34-44.93-66.19-49c0 0 9.53-5.85 7.16-10.64s-5.32-11.68-19.79-14.75-25.12 14.48-16.92 25.22c0 0-42.86 1.68-69.51 53.52a80.49 80.49 0 00-6.86 19.21c-4.72 20.93-12.33 68.87 12.24 84.66z",
62
+ opacity: 0.25,
63
+ fill: "var(--zd_emptysvg_secondary_plainfill)"
64
+ }), /*#__PURE__*/_react["default"].createElement("path", {
65
+ d: "M556.37 469s-13.75 90 108.81 88.8S804 482.76 804 471.5s-141.32-8.75-150.08 31.27-70-28.76-80-35a14.1 14.1 0 00-17.55 1.23z",
66
+ opacity: 0.15,
67
+ fill: "var(--zd_emptysvg_secondary_plainfill)"
68
+ }));
69
+ }
70
+ }]);
71
+
72
+ return EmptyUnauthorizedLogin;
73
+ }(_react["default"].Component);
74
+
75
+ exports["default"] = EmptyUnauthorizedLogin;
76
+ EmptyUnauthorizedLogin.propTypes = {
77
+ alignHorizontal: _propTypes["default"].bool,
78
+ className: _propTypes["default"].string,
79
+ dataId: _propTypes["default"].string,
80
+ isRender: _propTypes["default"].bool,
81
+ palette: _propTypes["default"].oneOf(['default', 'dark']),
82
+ isFluid: _propTypes["default"].bool
83
+ };
84
+ EmptyUnauthorizedLogin.defaultProps = {
85
+ alignHorizontal: true,
86
+ isRender: true,
87
+ className: '',
88
+ dataId: 'emptyUnauthorizedLogin',
89
+ palette: 'default',
90
+ isFluid: false
91
+ };
92
+
93
+ if (false) {
94
+ EmptyUnauthorizedLogin.docs = {
95
+ componentGroup: 'SVG'
96
+ };
97
+ }
@@ -1,74 +1,86 @@
1
- 'use strict';
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
4
 
3
5
  Object.defineProperty(exports, "__esModule", {
4
6
  value: true
5
7
  });
8
+ exports["default"] = void 0;
9
+
10
+ var _react = _interopRequireDefault(require("react"));
6
11
 
7
- var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
12
+ var _propTypes = _interopRequireDefault(require("prop-types"));
8
13
 
9
- var _react = require('react');
14
+ var _SVG = _interopRequireDefault(require("./SVG"));
10
15
 
11
- var _react2 = _interopRequireDefault(_react);
16
+ var _EmptyWebhook = _interopRequireDefault(require("./images/EmptyWebhook.svg"));
12
17
 
13
- var _propTypes = require('prop-types');
18
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
14
19
 
15
- var _propTypes2 = _interopRequireDefault(_propTypes);
20
+ 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); }
16
21
 
17
- var _SVG = require('./SVG');
22
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
18
23
 
19
- var _SVG2 = _interopRequireDefault(_SVG);
24
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
20
25
 
21
- var _EmptyWebhook = require('./images/EmptyWebhook.svg');
26
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
22
27
 
23
- var _EmptyWebhook2 = _interopRequireDefault(_EmptyWebhook);
28
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
24
29
 
25
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
30
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
26
31
 
27
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
32
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
28
33
 
29
- function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
34
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
30
35
 
31
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
36
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
32
37
 
33
- var EmptyWebhook = function (_React$Component) {
38
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
39
+
40
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
41
+
42
+ var EmptyWebhook = /*#__PURE__*/function (_React$Component) {
34
43
  _inherits(EmptyWebhook, _React$Component);
35
44
 
45
+ var _super = _createSuper(EmptyWebhook);
46
+
36
47
  function EmptyWebhook() {
37
48
  _classCallCheck(this, EmptyWebhook);
38
49
 
39
- return _possibleConstructorReturn(this, (EmptyWebhook.__proto__ || Object.getPrototypeOf(EmptyWebhook)).apply(this, arguments));
50
+ return _super.apply(this, arguments);
40
51
  }
41
52
 
42
53
  _createClass(EmptyWebhook, [{
43
- key: 'render',
54
+ key: "render",
44
55
  value: function render() {
45
- var _props = this.props,
46
- size = _props.size,
47
- _props$className = _props.className,
48
- className = _props$className === undefined ? '' : _props$className,
49
- alignHorizontal = _props.alignHorizontal;
50
-
51
- return _react2.default.createElement(
52
- _SVG2.default,
53
- { viewBox: '0 0 181.9 139.3', name: 'emptyWebhook', size: size, className: className, alignHorizontal: alignHorizontal },
54
- _react2.default.createElement('image', { xlinkHref: _EmptyWebhook2.default, height: '100%', width: '100%' })
55
- );
56
+ return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
57
+ viewBox: "0 0 181.9 139.3",
58
+ name: "emptyWebhook"
59
+ }, this.props), /*#__PURE__*/_react["default"].createElement("image", {
60
+ xlinkHref: _EmptyWebhook["default"],
61
+ height: "100%",
62
+ width: "100%"
63
+ }));
56
64
  }
57
65
  }]);
58
66
 
59
67
  return EmptyWebhook;
60
- }(_react2.default.Component);
61
-
62
- exports.default = EmptyWebhook;
68
+ }(_react["default"].Component);
63
69
 
70
+ exports["default"] = EmptyWebhook;
64
71
  EmptyWebhook.propTypes = {
65
- size: _propTypes2.default.oneOf('small', 'large'),
66
- className: _propTypes2.default.string,
67
- alignHorizontal: _propTypes2.default.bool
72
+ alignHorizontal: _propTypes["default"].bool,
73
+ className: _propTypes["default"].string,
74
+ dataId: _propTypes["default"].string,
75
+ isRender: _propTypes["default"].bool,
76
+ size: _propTypes["default"].oneOf(['small', 'large'])
68
77
  };
69
78
  EmptyWebhook.defaultProps = {
70
79
  size: 'large',
71
- alignHorizontal: true
80
+ alignHorizontal: true,
81
+ isRender: true,
82
+ className: '',
83
+ dataId: 'emptyWebhook'
72
84
  };
73
85
 
74
86
  if (false) {