@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
@@ -1,52 +1,71 @@
1
- import _Object$getPrototypeOf from 'babel-runtime/core-js/object/get-prototype-of';
2
- import _classCallCheck from 'babel-runtime/helpers/classCallCheck';
3
- import _createClass from 'babel-runtime/helpers/createClass';
4
- import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn';
5
- import _inherits from 'babel-runtime/helpers/inherits';
1
+ 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); }
2
+
6
3
  import React from 'react';
7
4
  import PropTypes from 'prop-types';
8
5
  import SVG from './SVG';
9
- import image from './images/EmptyProducts.svg';
10
-
11
- var EmptyProducts = function (_React$Component) {
12
- _inherits(EmptyProducts, _React$Component);
13
-
14
- function EmptyProducts() {
15
- _classCallCheck(this, EmptyProducts);
16
-
17
- return _possibleConstructorReturn(this, (EmptyProducts.__proto__ || _Object$getPrototypeOf(EmptyProducts)).apply(this, arguments));
6
+ export default class EmptyProducts extends React.Component {
7
+ render() {
8
+ return /*#__PURE__*/React.createElement(SVG, _extends({
9
+ viewBox: "0 0 200 200",
10
+ name: "products"
11
+ }, this.props), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("style", null, ".EmptyProducts_svg__cls-4,.EmptyProducts_svg__cls-5,.EmptyProducts_svg__cls-6,.EmptyProducts_svg__cls-7,.EmptyProducts_svg__cls-8{fill:none}.EmptyProducts_svg__cls-4{stroke-miterlimit:10;stroke:var(--zd_emptysvg_cross)}.EmptyProducts_svg__cls-7{stroke-miterlimit:10;stroke:var(--zd_emptysvg_tiny_circle)}.EmptyProducts_svg__cls-5,.EmptyProducts_svg__cls-6{stroke:var(--zd_emptysvg_plus);stroke-linecap:round;stroke-linejoin:round}.EmptyProducts_svg__cls-6{stroke:var(--zd_emptysvg_primary_stroke)}.EmptyProducts_svg__cls-8{stroke:var(--zd_emptysvg_small_circle);stroke-linecap:round;stroke-linejoin:round}")), /*#__PURE__*/React.createElement("path", {
12
+ 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",
13
+ fill: "var(--zd_emptysvg_primary_fill)",
14
+ opacity: 0.05
15
+ }), /*#__PURE__*/React.createElement("ellipse", {
16
+ cx: 156.04,
17
+ cy: 31.69,
18
+ rx: 3.54,
19
+ ry: 3.51,
20
+ strokeMiterlimit: 10,
21
+ stroke: "var(--zd_emptysvg_medium_circle)",
22
+ fill: "none"
23
+ }), /*#__PURE__*/React.createElement("ellipse", {
24
+ className: "EmptyProducts_svg__cls-7",
25
+ cx: 79.62,
26
+ cy: 29.6,
27
+ rx: 2.12,
28
+ ry: 2.1
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ className: "EmptyProducts_svg__cls-5",
31
+ d: "M23.28 100.86l-.35 6.16M20 103.76l6.22.35"
32
+ }), /*#__PURE__*/React.createElement("ellipse", {
33
+ className: "EmptyProducts_svg__cls-8",
34
+ cx: 165.88,
35
+ cy: 154.09,
36
+ rx: 2.45,
37
+ ry: 2.43
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ className: "EmptyProducts_svg__cls-4",
40
+ d: "M175.6 117.21l4.15 4.6M175.36 121.57l4.64-4.12"
41
+ }), /*#__PURE__*/React.createElement("path", {
42
+ d: "M139 112.51h-.09a.82.82 0 01-.72-.9c.7-6.15-2.71-8.59-2.75-8.62a.81.81 0 01-.2-1.13.83.83 0 011.15-.2c.17.12 4.25 3 3.43 10.13a.81.81 0 01-.82.72zm-.39 1.3a.7.7 0 000 1.4.7.7 0 100-1.4z",
43
+ fill: "var(--zd_emptysvg_circle_fill)"
44
+ }), /*#__PURE__*/React.createElement("path", {
45
+ d: "M151.36 145.35a8.55 8.55 0 11-8.55-8.48 8.52 8.52 0 018.55 8.48zm-49.92-8.48a8.48 8.48 0 108.55 8.48 8.52 8.52 0 00-8.55-8.48zm4.7-20.61c8.67 17.33 35.37 12.3 37.08 7s4.27-26.62-8-29.12-13.61 11.35-13.61 11.35c-20.97-5.19-15.47 10.77-15.47 10.77z",
46
+ fill: "var(--zd_emptysvg_secondary_fill)"
47
+ }), /*#__PURE__*/React.createElement("path", {
48
+ className: "EmptyProducts_svg__cls-6",
49
+ d: "M155.17 120.64c-19.34 18-53.73 7.78-52.45-9.57.66-8.94 11.28-8.12 15.6-6.21 1.68.74 1 .91 1.52-.86l.72-2.69a9.73 9.73 0 015.59-6.55c.31-.13.62-.24.93-.34 6.22-1.93 12.61 2.2 14.22 8.47 4.6 17.87-8.44 37.74-8.44 37.74a8.44 8.44 0 00-1.35 4.6 8.61 8.61 0 108.61-8.54h-36.47c-9.28-.92-11.83 4.17-11.83 4.17a8.56 8.56 0 00-1.26 5.87 8.62 8.62 0 108.53-9.82l-2.67-.53a7.22 7.22 0 01-4.9-5l-13.62-49a7.21 7.21 0 017-9.11h75.56a7.21 7.21 0 017 9.14l-13 46.1a7.24 7.24 0 01-7 5.25H91a7.23 7.23 0 01-6.93-5.08L63.19 61.32a7.25 7.25 0 00-6.94-5.08H43.44A42.7 42.7 0 0035 57c-1.84.38-4.1.51-5-.78-1.72-2.33 5.92-2.72 8 3.39"
50
+ }));
18
51
  }
19
52
 
20
- _createClass(EmptyProducts, [{
21
- key: 'render',
22
- value: function render() {
23
- var _props = this.props,
24
- size = _props.size,
25
- _props$className = _props.className,
26
- className = _props$className === undefined ? '' : _props$className,
27
- alignHorizontal = _props.alignHorizontal;
28
-
29
- return React.createElement(
30
- SVG,
31
- { viewBox: '0 0 181.9 139.3', name: 'products', size: size, className: className, alignHorizontal: alignHorizontal },
32
- React.createElement('image', { xlinkHref: image, height: '100%', width: '100%' })
33
- );
34
- }
35
- }]);
36
-
37
- return EmptyProducts;
38
- }(React.Component);
39
-
40
- export default EmptyProducts;
41
-
53
+ }
42
54
  EmptyProducts.propTypes = {
43
- size: PropTypes.oneOf('small', 'large'),
55
+ alignHorizontal: PropTypes.bool,
44
56
  className: PropTypes.string,
45
- alignHorizontal: PropTypes.bool
57
+ dataId: PropTypes.string,
58
+ isRender: PropTypes.bool,
59
+ size: PropTypes.oneOf(['small', 'large']),
60
+ palette: PropTypes.oneOf(['default', 'dark'])
46
61
  };
47
62
  EmptyProducts.defaultProps = {
48
63
  size: 'large',
49
- alignHorizontal: true
64
+ alignHorizontal: true,
65
+ isRender: true,
66
+ className: '',
67
+ dataId: 'emptyProducts',
68
+ palette: 'default'
50
69
  };
51
70
 
52
71
  if (false) {
@@ -1,52 +1,35 @@
1
- import _Object$getPrototypeOf from 'babel-runtime/core-js/object/get-prototype-of';
2
- import _classCallCheck from 'babel-runtime/helpers/classCallCheck';
3
- import _createClass from 'babel-runtime/helpers/createClass';
4
- import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn';
5
- import _inherits from 'babel-runtime/helpers/inherits';
1
+ 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); }
2
+
6
3
  import React from 'react';
7
4
  import PropTypes from 'prop-types';
8
5
  import SVG from './SVG';
9
6
  import image from './images/EmptyRecycleBin.svg';
10
-
11
- var EmptyRecycleBin = function (_React$Component) {
12
- _inherits(EmptyRecycleBin, _React$Component);
13
-
14
- function EmptyRecycleBin() {
15
- _classCallCheck(this, EmptyRecycleBin);
16
-
17
- return _possibleConstructorReturn(this, (EmptyRecycleBin.__proto__ || _Object$getPrototypeOf(EmptyRecycleBin)).apply(this, arguments));
7
+ export default class EmptyRecycleBin extends React.Component {
8
+ render() {
9
+ return /*#__PURE__*/React.createElement(SVG, _extends({
10
+ viewBox: "0 0 181.9 149.5",
11
+ name: "recycleBin"
12
+ }, this.props), /*#__PURE__*/React.createElement("image", {
13
+ xlinkHref: image,
14
+ height: "100%",
15
+ width: "100%"
16
+ }));
18
17
  }
19
18
 
20
- _createClass(EmptyRecycleBin, [{
21
- key: 'render',
22
- value: function render() {
23
- var _props = this.props,
24
- size = _props.size,
25
- _props$className = _props.className,
26
- className = _props$className === undefined ? '' : _props$className,
27
- alignHorizontal = _props.alignHorizontal;
28
-
29
- return React.createElement(
30
- SVG,
31
- { viewBox: '0 0 181.9 149.5', name: 'recycleBin', size: size, className: className, alignHorizontal: alignHorizontal },
32
- React.createElement('image', { xlinkHref: image, height: '100%', width: '100%' })
33
- );
34
- }
35
- }]);
36
-
37
- return EmptyRecycleBin;
38
- }(React.Component);
39
-
40
- export default EmptyRecycleBin;
41
-
19
+ }
42
20
  EmptyRecycleBin.propTypes = {
43
- size: PropTypes.oneOf('small', 'large'),
21
+ alignHorizontal: PropTypes.bool,
44
22
  className: PropTypes.string,
45
- alignHorizontal: PropTypes.bool
23
+ dataId: PropTypes.string,
24
+ isRender: PropTypes.bool,
25
+ size: PropTypes.oneOf(['small', 'large'])
46
26
  };
47
27
  EmptyRecycleBin.defaultProps = {
48
28
  size: 'large',
49
- alignHorizontal: true
29
+ alignHorizontal: true,
30
+ isRender: true,
31
+ className: '',
32
+ dataId: 'emptyRecycleBin'
50
33
  };
51
34
 
52
35
  if (false) {
@@ -0,0 +1,67 @@
1
+ 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); }
2
+
3
+ import React from 'react';
4
+ import PropTypes from 'prop-types';
5
+ import SVG from './SVG';
6
+ export default class EmptyReply extends React.Component {
7
+ render() {
8
+ return /*#__PURE__*/React.createElement(SVG, _extends({
9
+ viewBox: "0 0 200 200",
10
+ name: "Reply"
11
+ }, this.props), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("style", null, '.EmptyReply_svg-3{fill:var(--zd_emptysvg_tiny_circle)}.EmptyReply_svg-4{fill:var(--zd_emptysvg_plus)}')), /*#__PURE__*/React.createElement("path", {
12
+ d: "M85.42 67.4s41.2-27.13 62.06-19 35.09 76.86-22.89 107.68S40.37 119.89 40.15 108c-.21-11.5 0-38.9 45.27-40.6z",
13
+ fill: "var(--zd_emptysvg_primary_fill)",
14
+ opacity: 0.05
15
+ }), /*#__PURE__*/React.createElement("path", {
16
+ d: "M155.12 150.45a2.5 2.5 0 112.52-2.5 2.51 2.51 0 01-2.52 2.5zm0-4.28a1.78 1.78 0 101.8 1.78 1.79 1.79 0 00-1.8-1.78z",
17
+ fill: "var(--zd_emptysvg_small_circle)"
18
+ }), /*#__PURE__*/React.createElement("path", {
19
+ d: "M146.48 43.73a3.45 3.45 0 113.52-3.45 3.47 3.47 0 01-3.52 3.45zm0-6.17a2.73 2.73 0 102.75 2.72 2.74 2.74 0 00-2.75-2.72z",
20
+ fill: "var(--zd_emptysvg_medium_circle)"
21
+ }), /*#__PURE__*/React.createElement("path", {
22
+ className: "EmptyReply_svg-3",
23
+ d: "M79.36 40.64a2.21 2.21 0 112.22-2.2 2.2 2.2 0 01-2.22 2.2zm0-3.68a1.48 1.48 0 101.5 1.48 1.49 1.49 0 00-1.5-1.44z"
24
+ }), /*#__PURE__*/React.createElement("path", {
25
+ className: "EmptyReply_svg-4",
26
+ d: "M29.58 106.9a.36.36 0 01-.34-.38l.31-5.42a.36.36 0 01.72 0l-.31 5.42a.35.35 0 01-.38.38z"
27
+ }), /*#__PURE__*/React.createElement("path", {
28
+ className: "EmptyReply_svg-4",
29
+ d: "M32.47 104.34L27 104a.36.36 0 110-.72l5.46.3a.37.37 0 01.34.38.35.35 0 01-.33.38z"
30
+ }), /*#__PURE__*/React.createElement("path", {
31
+ className: "EmptyReply_svg-3",
32
+ d: "M167.3 119.92a.35.35 0 01-.26-.12l-3.65-4a.36.36 0 01.54-.49l3.64 4a.36.36 0 010 .51.35.35 0 01-.27.1z"
33
+ }), /*#__PURE__*/React.createElement("path", {
34
+ className: "EmptyReply_svg-3",
35
+ d: "M163.44 119.7a.36.36 0 01-.27-.12.37.37 0 010-.51l4.08-3.62a.36.36 0 01.48.54l-4.08 3.62a.36.36 0 01-.21.09z"
36
+ }), /*#__PURE__*/React.createElement("path", {
37
+ d: "M98.94 143.5c-10.1 0-19.79-.57-26.76-2.19a11.33 11.33 0 01-4.11-1.16l-.12-.08a11.61 11.61 0 01-5.39-3.5c-7.36-10-5.18-40.08-3.9-52.56a6.06 6.06 0 016-5.44l28-.35a.49.49 0 01.51.47.5.5 0 01-.45.52L64.35 82c5.76 4.06 32.42 22.69 38.43 24.14 5.24 1.28 23-12.31 31.62-19.67a.5.5 0 01.65.76c-1 .88-25.47 21.6-32.51 19.88S64 83 62.68 82a.48.48 0 01-.19-.53.49.49 0 01.43-.37l18-1.78-16.3.21a5 5 0 00-5 4.54c-1.27 12.37-3.45 42.19 3.7 51.87a9.64 9.64 0 004 2.8c.43-4.22 15-17.71 25.87-25 6.23-4.15 10.45-5.81 12.55-4.94 5.19 2.16 28 20 37.52 27.53 5.61-3.28 2.88-37.75 1.32-51.08-1.1-1.64-16.13-23.42-36.47-22.06a.51.51 0 01-.51-.33c-.46-1.26-1.87-5.19-2.84-9-3.62 6.59-10.82 15.65-15.71 19.73 5.83 2.89 15.07 10.63 18 17.45.4-7.3 2.25-11.62 5.5-12.86 7.6-2.88 16.08-1 28.39 6.2a.51.51 0 01.17.69.49.49 0 01-.68.17c-15.1-8.86-22.39-8.07-27.52-6.12-3.14 1.19-4.8 5.93-4.94 14.09 0 .92 0 1.23-.5 1.27s-.55-.44-.59-.64c-1.22-7-12.65-16.67-18.71-19.57a6.22 6.22 0 01-3 1.47 1.32 1.32 0 01-1.44-1.3c-.25-1.57.77-1.91 1.22-2a6.12 6.12 0 013 .68 65.61 65.61 0 008.78-9.37 72.66 72.66 0 007.6-11.32c-.66-2.92-.94-5.52-.16-6.42a1.27 1.27 0 011.27-.38c.63.14 1.65.64 1.48 2.49a13.82 13.82 0 01-1.53 4.38 95.82 95.82 0 002.94 9.62c21.38-1.14 36.91 22.39 37.07 22.63a.54.54 0 01.08.21c.57 4.87 5.27 46.55-1.49 52 1.87 1.47 3.08 2.44 3.32 2.64a.5.5 0 01.17.53.51.51 0 01-.42.36c-1.67.28-25.9 3.01-48.12 3.01zM84.78 142c22.38 1.57 54.45-1.63 61-2.33-.63-.51-1.56-1.25-2.72-2.16-5.75 2.06-37.8 4.71-58.28 4.49zm-12.72-1.7c5.83.91 17.83 1 33.41.27 16.53-.81 32-2.41 36.69-3.77-9.73-7.68-31.88-25-36.81-27-1.7-.7-5.92 1.07-11.6 4.86-11.42 7.6-25.44 21-25.44 24.33 0 .08.09.19.24.3a30.06 30.06 0 003.51 1.01zm13.39-66.78a1.32 1.32 0 00-.29 0c-.2 0-.52.09-.39.84.07.47.25.47.41.46a4.19 4.19 0 002-.93 5 5 0 00-1.73-.37zm19.73-26.82a.22.22 0 00-.18.08c-.43.49-.31 2.12.12 4.27a10.17 10.17 0 00.88-2.91c.11-1.24-.45-1.37-.69-1.42z",
38
+ fill: "var(--zd_emptysvg_primary_stroke)"
39
+ }), /*#__PURE__*/React.createElement("path", {
40
+ d: "M107 51.86a58.65 58.65 0 01-17.11 22.28c10.19 5.19 16.46 11.83 19.35 19.71 0 0-9.18-35.37 34.43-7.79 0 0-8.93-22.43-33.79-23.31z",
41
+ fill: "var(--zd_emptysvg_secondary_fill)"
42
+ }));
43
+ }
44
+
45
+ }
46
+ EmptyReply.propTypes = {
47
+ alignHorizontal: PropTypes.bool,
48
+ className: PropTypes.string,
49
+ dataId: PropTypes.string,
50
+ isRender: PropTypes.bool,
51
+ size: PropTypes.oneOf(['small', 'large']),
52
+ palette: PropTypes.oneOf(['default', 'dark'])
53
+ };
54
+ EmptyReply.defaultProps = {
55
+ size: 'large',
56
+ alignHorizontal: true,
57
+ isRender: true,
58
+ className: '',
59
+ dataId: 'EmptyReply',
60
+ palette: 'default'
61
+ };
62
+
63
+ if (false) {
64
+ EmptyReply.docs = {
65
+ componentGroup: 'SVG'
66
+ };
67
+ }
@@ -1,52 +1,74 @@
1
- import _Object$getPrototypeOf from 'babel-runtime/core-js/object/get-prototype-of';
2
- import _classCallCheck from 'babel-runtime/helpers/classCallCheck';
3
- import _createClass from 'babel-runtime/helpers/createClass';
4
- import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn';
5
- import _inherits from 'babel-runtime/helpers/inherits';
1
+ 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); }
2
+
6
3
  import React from 'react';
7
4
  import PropTypes from 'prop-types';
8
5
  import SVG from './SVG';
9
- import image from './images/EmptyReports.svg';
10
-
11
- var EmptyReports = function (_React$Component) {
12
- _inherits(EmptyReports, _React$Component);
13
-
14
- function EmptyReports() {
15
- _classCallCheck(this, EmptyReports);
16
-
17
- return _possibleConstructorReturn(this, (EmptyReports.__proto__ || _Object$getPrototypeOf(EmptyReports)).apply(this, arguments));
6
+ export default class EmptyReports extends React.Component {
7
+ render() {
8
+ return /*#__PURE__*/React.createElement(SVG, _extends({
9
+ viewBox: "0 0 200 200",
10
+ name: "reports"
11
+ }, this.props), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("style", null, ".EmptyReports_svg__cls-3,.EmptyReports_svg__cls-4,.EmptyReports_svg__cls-5{fill:none}.EmptyReports_svg__cls-3{stroke-miterlimit:10;stroke:var(--zd_emptysvg_tiny_circle)}.EmptyReports_svg__cls-5{stroke-miterlimit:10;stroke:var(--zd_emptysvg_cross)}.EmptyReports_svg__cls-4{stroke:var(--zd_emptysvg_plus);stroke-linecap:round;stroke-linejoin:round}")), /*#__PURE__*/React.createElement("path", {
12
+ 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",
13
+ opacity: 0.05,
14
+ fill: "var(--zd_emptysvg_primary_fill)"
15
+ }), /*#__PURE__*/React.createElement("ellipse", {
16
+ cx: 156.04,
17
+ cy: 31.69,
18
+ rx: 3.54,
19
+ ry: 3.51,
20
+ strokeMiterlimit: 10,
21
+ stroke: "var(--zd_emptysvg_medium_circle)",
22
+ fill: "none"
23
+ }), /*#__PURE__*/React.createElement("ellipse", {
24
+ className: "EmptyReports_svg__cls-3",
25
+ cx: 79.62,
26
+ cy: 29.6,
27
+ rx: 2.12,
28
+ ry: 2.1
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ className: "EmptyReports_svg__cls-4",
31
+ d: "M23.28 100.86l-.35 6.16M20 103.76l6.22.35"
32
+ }), /*#__PURE__*/React.createElement("ellipse", {
33
+ cx: 165.88,
34
+ cy: 154.09,
35
+ rx: 2.45,
36
+ ry: 2.43,
37
+ stroke: "var(--zd_emptysvg_small_circle)",
38
+ strokeLinecap: "round",
39
+ strokeLinejoin: "round",
40
+ fill: "none"
41
+ }), /*#__PURE__*/React.createElement("path", {
42
+ className: "EmptyReports_svg__cls-5",
43
+ d: "M175.6 117.21l4.15 4.6M175.36 121.57l4.64-4.12"
44
+ }), /*#__PURE__*/React.createElement("path", {
45
+ fill: "var(--zd_emptysvg_secondary_fill)",
46
+ d: "M39.34 154.7l21.72-35.08 10.89 17.16 31.65-46.97 11.16 17.26 33.39-54.95 3.26-.87-1.61 105.25-110.46-1.8z"
47
+ }), /*#__PURE__*/React.createElement("path", {
48
+ d: "M43.44 41.58s.12 106.18-1.22 113.42-11.66 8.36-9.29 4.06 124 1.38 124 1.38 3.84-3.13-2.7-3.72-114.89-2-114.89-2 29.05-40.6 28.89-55.86-32.05-11 3.72 37.94l31.65-47s15.45-30.64-2.47-29.19 13.63 46.45 13.63 46.45l33.39-54.95L130 54.37s2.47 4.54 21.39-3.12l1.27 15.22s-3.64-4.88 2.37-5.06",
49
+ stroke: "var(--zd_emptysvg_primary_stroke)",
50
+ strokeLinecap: "round",
51
+ strokeLinejoin: "round",
52
+ fill: "none"
53
+ }));
18
54
  }
19
55
 
20
- _createClass(EmptyReports, [{
21
- key: 'render',
22
- value: function render() {
23
- var _props = this.props,
24
- size = _props.size,
25
- _props$className = _props.className,
26
- className = _props$className === undefined ? '' : _props$className,
27
- alignHorizontal = _props.alignHorizontal;
28
-
29
- return React.createElement(
30
- SVG,
31
- { viewBox: '0 0 181.9 139.3', name: 'reports', size: size, className: className, alignHorizontal: alignHorizontal },
32
- React.createElement('image', { xlinkHref: image, height: '100%', width: '100%' })
33
- );
34
- }
35
- }]);
36
-
37
- return EmptyReports;
38
- }(React.Component);
39
-
40
- export default EmptyReports;
41
-
56
+ }
42
57
  EmptyReports.propTypes = {
43
- size: PropTypes.oneOf('small', 'large'),
58
+ alignHorizontal: PropTypes.bool,
44
59
  className: PropTypes.string,
45
- alignHorizontal: PropTypes.bool
60
+ dataId: PropTypes.string,
61
+ isRender: PropTypes.bool,
62
+ size: PropTypes.oneOf(['small', 'large']),
63
+ palette: PropTypes.oneOf(['default', 'dark'])
46
64
  };
47
65
  EmptyReports.defaultProps = {
48
66
  size: 'large',
49
- alignHorizontal: true
67
+ alignHorizontal: true,
68
+ isRender: true,
69
+ className: '',
70
+ dataId: 'emptyReports',
71
+ palette: 'default'
50
72
  };
51
73
 
52
74
  if (false) {
@@ -1,52 +1,35 @@
1
- import _Object$getPrototypeOf from 'babel-runtime/core-js/object/get-prototype-of';
2
- import _classCallCheck from 'babel-runtime/helpers/classCallCheck';
3
- import _createClass from 'babel-runtime/helpers/createClass';
4
- import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn';
5
- import _inherits from 'babel-runtime/helpers/inherits';
1
+ 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); }
2
+
6
3
  import React from 'react';
7
4
  import PropTypes from 'prop-types';
8
5
  import SVG from './SVG';
9
6
  import image from './images/EmptyRoles.svg';
10
-
11
- var EmptyRoles = function (_React$Component) {
12
- _inherits(EmptyRoles, _React$Component);
13
-
14
- function EmptyRoles() {
15
- _classCallCheck(this, EmptyRoles);
16
-
17
- return _possibleConstructorReturn(this, (EmptyRoles.__proto__ || _Object$getPrototypeOf(EmptyRoles)).apply(this, arguments));
7
+ export default class EmptyRoles extends React.Component {
8
+ render() {
9
+ return /*#__PURE__*/React.createElement(SVG, _extends({
10
+ viewBox: "0 0 181.9 139.3",
11
+ name: "roles"
12
+ }, this.props), /*#__PURE__*/React.createElement("image", {
13
+ xlinkHref: image,
14
+ height: "100%",
15
+ width: "100%"
16
+ }));
18
17
  }
19
18
 
20
- _createClass(EmptyRoles, [{
21
- key: 'render',
22
- value: function render() {
23
- var _props = this.props,
24
- size = _props.size,
25
- _props$className = _props.className,
26
- className = _props$className === undefined ? '' : _props$className,
27
- alignHorizontal = _props.alignHorizontal;
28
-
29
- return React.createElement(
30
- SVG,
31
- { viewBox: '0 0 181.9 139.3', name: 'roles', size: size, className: className, alignHorizontal: alignHorizontal },
32
- React.createElement('image', { xlinkHref: image, height: '100%', width: '100%' })
33
- );
34
- }
35
- }]);
36
-
37
- return EmptyRoles;
38
- }(React.Component);
39
-
40
- export default EmptyRoles;
41
-
19
+ }
42
20
  EmptyRoles.propTypes = {
43
- size: PropTypes.oneOf('small', 'large'),
21
+ alignHorizontal: PropTypes.bool,
44
22
  className: PropTypes.string,
45
- alignHorizontal: PropTypes.bool
23
+ dataId: PropTypes.string,
24
+ isRender: PropTypes.bool,
25
+ size: PropTypes.oneOf(['small', 'large'])
46
26
  };
47
27
  EmptyRoles.defaultProps = {
48
28
  size: 'large',
49
- alignHorizontal: true
29
+ alignHorizontal: true,
30
+ isRender: true,
31
+ className: '',
32
+ dataId: 'emptyRoles'
50
33
  };
51
34
 
52
35
  if (false) {
@@ -0,0 +1,114 @@
1
+ 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); }
2
+
3
+ import React from 'react';
4
+ import PropTypes from 'prop-types';
5
+ import SVG from './SVG';
6
+ export default class EmptySchedule extends React.Component {
7
+ render() {
8
+ return /*#__PURE__*/React.createElement(SVG, _extends({
9
+ viewBox: "0 0 200 200",
10
+ name: "schedule"
11
+ }, this.props), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("style", null, ".EmptySchedule_svg__cls-6{fill:var(--zd_emptysvg_secondary_fill)}.EmptySchedule_svg__cls-3,.EmptySchedule_svg__cls-4,.EmptySchedule_svg__cls-5{fill:none}.EmptySchedule_svg__cls-3{stroke-miterlimit:10;stroke:var(--zd_emptysvg_tiny_circle)}.EmptySchedule_svg__cls-5{stroke-miterlimit:10;stroke:var(--zd_emptysvg_cross)}.EmptySchedule_svg__cls-4{stroke:var(--zd_emptysvg_plus);stroke-linecap:round;stroke-linejoin:round}")), /*#__PURE__*/React.createElement("path", {
12
+ d: "M86 66.22a.61.61 0 00.35-.11c2.8-1.83 43.49-28 64.45-19.75 21.71 8.55 36.53 80.46-23.83 112.73s-87.67-37.92-87.9-50.36c-.22-12.02 0-40.65 46.93-42.51z",
13
+ opacity: 0.05,
14
+ fill: "var(--zd_emptysvg_primary_fill)"
15
+ }), /*#__PURE__*/React.createElement("ellipse", {
16
+ cx: 152.54,
17
+ cy: 36.46,
18
+ rx: 3.32,
19
+ ry: 3.31,
20
+ strokeMiterlimit: 10,
21
+ stroke: "var(--zd_emptysvg_medium_circle)",
22
+ fill: "none"
23
+ }), /*#__PURE__*/React.createElement("circle", {
24
+ className: "EmptySchedule_svg__cls-3",
25
+ cx: 80.89,
26
+ cy: 34.48,
27
+ r: 1.98
28
+ }), /*#__PURE__*/React.createElement("path", {
29
+ className: "EmptySchedule_svg__cls-4",
30
+ d: "M28.08 101.77l-.33 5.83M25 104.52l5.83.33"
31
+ }), /*#__PURE__*/React.createElement("circle", {
32
+ cx: 161.76,
33
+ cy: 152.05,
34
+ r: 2.3,
35
+ stroke: "var(--zd_emptysvg_small_circle)",
36
+ strokeLinecap: "round",
37
+ strokeLinejoin: "round",
38
+ fill: "none"
39
+ }), /*#__PURE__*/React.createElement("path", {
40
+ className: "EmptySchedule_svg__cls-5",
41
+ d: "M170.88 117.22l3.89 4.35M170.65 121.33l4.35-3.88"
42
+ }), /*#__PURE__*/React.createElement("rect", {
43
+ className: "EmptySchedule_svg__cls-6",
44
+ x: 71.39,
45
+ y: 97.3,
46
+ width: 9.87,
47
+ height: 9.86,
48
+ rx: 4.93
49
+ }), /*#__PURE__*/React.createElement("rect", {
50
+ className: "EmptySchedule_svg__cls-6",
51
+ x: 99.44,
52
+ y: 97.29,
53
+ width: 9.86,
54
+ height: 9.87,
55
+ rx: 4.93,
56
+ transform: "rotate(109.27 104.376 102.215)"
57
+ }), /*#__PURE__*/React.createElement("rect", {
58
+ className: "EmptySchedule_svg__cls-6",
59
+ x: 90.53,
60
+ y: 124.26,
61
+ width: 9.87,
62
+ height: 9.86,
63
+ rx: 4.93
64
+ }), /*#__PURE__*/React.createElement("rect", {
65
+ className: "EmptySchedule_svg__cls-6",
66
+ x: 109.28,
67
+ y: 114.95,
68
+ width: 28.46,
69
+ height: 28.49,
70
+ rx: 14.23,
71
+ transform: "rotate(109.27 123.514 129.181)"
72
+ }), /*#__PURE__*/React.createElement("rect", {
73
+ className: "EmptySchedule_svg__cls-6",
74
+ x: 126.95,
75
+ y: 97.3,
76
+ width: 9.87,
77
+ height: 9.86,
78
+ rx: 4.93
79
+ }), /*#__PURE__*/React.createElement("path", {
80
+ className: "EmptySchedule_svg__cls-6",
81
+ d: "M57.79 91.87s-.4-18.81 4.08-21.14 77 .22 77 .22 6.95-.07 7.8 6.51a35.62 35.62 0 010 10.7H67.44s-9.01-.11-9.65 3.71z"
82
+ }), /*#__PURE__*/React.createElement("path", {
83
+ d: "M57.15 135.56c1.11-6.06-.21-52.07.2-58.22.21-3.19.67-4.09 2.51-5.58s4.77-.86 9.27-.77h4.41c4.5.09 8.64.09 9.48-.26 1.68-.7 0-9.79-2.38-8.67s-4.21 16.78-.42 16.64S86 71 86 71h34.59c4.5.09 7.21.06 8-.29 1.68-.7 0-9.79-2.38-8.67s-4.21 16.8-.41 16.66 5.74-7.7 5.74-7.7l6.44-.14s12.12-1.17 12 6.59c0 2.19 0 4-.05 5.47 0 0-.93 20.95.06 20.92.79 0 2.33-5.23-1.15-13.62a3.42 3.42 0 00-3.18-2.1H67.43s-8.89-1-8.38 6.89 0 43.75 0 43.75.86 6.5 7.52 6.8 76.51 0 76.51 0 6.45-1 6.92-7.75l.27-13.82v-14.82l-27.14 25.53-5.32-3.9a1.82 1.82 0 01-.27-2.69h0a1.83 1.83 0 012.6-.1l3.4 3.23L134 120.32a13.73 13.73 0 00-13.69-4.23 13.44 13.44 0 00-9.85 16.34 13.62 13.62 0 0016.57 9.68 13.43 13.43 0 009.84-16.34",
84
+ strokeWidth: 0.69,
85
+ stroke: "var(--zd_emptysvg_primary_stroke)",
86
+ strokeLinecap: "round",
87
+ strokeLinejoin: "round",
88
+ fill: "none"
89
+ }));
90
+ }
91
+
92
+ }
93
+ EmptySchedule.propTypes = {
94
+ alignHorizontal: PropTypes.bool,
95
+ className: PropTypes.string,
96
+ dataId: PropTypes.string,
97
+ isRender: PropTypes.bool,
98
+ size: PropTypes.oneOf(['small', 'large']),
99
+ palette: PropTypes.oneOf(['default', 'dark'])
100
+ };
101
+ EmptySchedule.defaultProps = {
102
+ size: 'large',
103
+ alignHorizontal: true,
104
+ isRender: true,
105
+ className: '',
106
+ dataId: 'EmptySchedule',
107
+ palette: 'default'
108
+ };
109
+
110
+ if (false) {
111
+ EmptySchedule.docs = {
112
+ componentGroup: 'SVG'
113
+ };
114
+ }