@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,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/FailureLog.svg';
10
-
11
- var FailureLog = function (_React$Component) {
12
- _inherits(FailureLog, _React$Component);
13
-
14
- function FailureLog() {
15
- _classCallCheck(this, FailureLog);
16
-
17
- return _possibleConstructorReturn(this, (FailureLog.__proto__ || _Object$getPrototypeOf(FailureLog)).apply(this, arguments));
7
+ export default class FailureLog extends React.Component {
8
+ render() {
9
+ return /*#__PURE__*/React.createElement(SVG, _extends({
10
+ viewBox: "0 0 189.4 139.3",
11
+ name: "failurelog"
12
+ }, this.props), /*#__PURE__*/React.createElement("image", {
13
+ xlinkHref: image,
14
+ height: "100%",
15
+ width: "100%"
16
+ }));
18
17
  }
19
18
 
20
- _createClass(FailureLog, [{
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 189.4 139.3', name: 'failurelog', size: size, className: className, alignHorizontal: alignHorizontal },
32
- React.createElement('image', { xlinkHref: image, height: '100%', width: '100%' })
33
- );
34
- }
35
- }]);
36
-
37
- return FailureLog;
38
- }(React.Component);
39
-
40
- export default FailureLog;
41
-
19
+ }
42
20
  FailureLog.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
  FailureLog.defaultProps = {
48
28
  size: 'large',
49
- alignHorizontal: true
29
+ alignHorizontal: true,
30
+ isRender: true,
31
+ className: '',
32
+ dataId: 'failureLog'
50
33
  };
51
34
 
52
35
  if (false) {
@@ -0,0 +1,82 @@
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 Import extends React.Component {
7
+ render() {
8
+ return /*#__PURE__*/React.createElement(SVG, _extends({
9
+ viewBox: "0 0 500 500",
10
+ name: "import"
11
+ }, this.props), /*#__PURE__*/React.createElement("g", {
12
+ clipPath: "url(#Import_svg__clip0)"
13
+ }, /*#__PURE__*/React.createElement("g", {
14
+ clipPath: "url(#Import_svg__clip1)"
15
+ }, /*#__PURE__*/React.createElement("path", {
16
+ opacity: 0.1,
17
+ d: "M200.502 140.5s116.75-78 175.75-54.5 99.25 220.75-64.75 309.25-238.5-104-239.25-138c-.5-33.25 0-111.75 128.25-116.75z",
18
+ fill: "var(--zd_emptysvg_primary_fill)"
19
+ }), /*#__PURE__*/React.createElement("path", {
20
+ d: "M35 293.249s-.25 0 0 0c-.75 0-1.25-.75-1.25-1.25l1-18.75c0-.75.5-1.25 1.25-1.25s1.25.5 1.25 1.25l-1 18.75c-.25.75-.75 1.25-1.25 1.25z",
21
+ fill: "var(--zd_emptysvg_plus)"
22
+ }), /*#__PURE__*/React.createElement("path", {
23
+ d: "M44.501 284.498l-18.5-1c-.75 0-1.25-.75-1.25-1.25 0-.75.75-1.25 1.25-1.25l18.25 1c.75 0 1.25.75 1.25 1.25.25.75-.25 1.25-1 1.25z",
24
+ fill: "var(--zd_emptysvg_plus)"
25
+ }), /*#__PURE__*/React.createElement("path", {
26
+ d: "M428 51.999c-6.5 0-11.75 5.25-11.75 11.75s5.25 11.75 11.75 11.75 11.75-5.25 11.75-11.75-5.5-11.75-11.75-11.75zm0 21.25c-5 0-9.25-4.25-9.25-9.5s4.25-9.5 9.25-9.5 9.25 4.25 9.25 9.5-4.25 9.5-9.25 9.5zM311 432.748c-4.75 0-8.5 3.75-8.5 8.5s3.75 8.5 8.5 8.5 8.5-3.75 8.5-8.5c0-4.5-3.75-8.5-8.5-8.5zm0 14.75c-3.25 0-6-2.75-6-6.25s2.75-6.25 6-6.25 6 2.75 6 6.25-2.75 6.25-6 6.25z",
27
+ fill: "var(--zd_emptysvg_medium_circle)"
28
+ }), /*#__PURE__*/React.createElement("path", {
29
+ d: "M202.251 50c-4.25 0-7.5 3.5-7.5 7.5s3.25 7.5 7.5 7.5 7.5-3.5 7.5-7.5-3.25-7.5-7.5-7.5zm0 12.75c-2.75 0-5-2.25-5-5s2.25-5 5-5 5 2.25 5 5-2.25 5-5 5zM474.5 324.5c-.5-.5-1.25-.5-1.75 0l-6 5.5-5.25-6c-.5-.5-1.25-.5-1.75 0s-.5 1.25 0 1.75l5.25 6-6 5.5c-.5.5-.5 1.25 0 1.75.25.25.5.5 1 .5.25 0 .5 0 .75-.25l6-5.5 5.25 6c.25.25.5.5 1 .5.25 0 .5 0 .75-.25.5-.5.5-1.25 0-1.75l-5.25-6 6-5.5c.5-.75.5-1.75 0-2.25z",
30
+ fill: "var(--zd_emptysvg_tiny_circle)"
31
+ }), /*#__PURE__*/React.createElement("path", {
32
+ opacity: 0.1,
33
+ d: "M289.502 162.499s-93.25-62.25-140.5-43.5-79.5 176.5 51.75 247.25 190.75-83.25 191.25-110.5c.5-26.5 0-89.5-102.5-93.25z",
34
+ fill: "var(--zd_emptysvg_primary_fill)"
35
+ }), /*#__PURE__*/React.createElement("path", {
36
+ d: "M103.272 292.867c-15.153-8.693-21.106-33.684-13.259-53.242 5.683-14.126 15.695-27.98 31.93-27.165 33.554 1.63 25.165 49.711 16.777 48.896-8.388-.815 18.941-107.842 65.483-105.669 46.272 2.173 74.413 55.143 67.107 72.8-7.306 17.657-1.623-57.316 71.437-28.251 73.059 29.066-19.483 132.562-145.309 117.894-49.788-5.977-77.93-16.027-94.166-25.263z",
37
+ fill: "var(--zd_emptysvg_secondary_fill)"
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ d: "M442.326 285.26H107.333s-61.425 2.445-59.801-55.958c.811-24.992 18.67-46.723 43.294-49.711 14.883-1.63 32.742 2.988 50.872 24.176 0 0-27.871 41.29 1.082-23.633s129.073-101.323 187.521-34.77c63.859 73.072 7.035 104.854 6.494 99.421-.541-5.433 10.282-26.077 42.212-3.531 31.93 22.546-8.929 93.445-78.742 85.567l-47.354-1.901-1.082 44.549s44.377 1.902 40.318-1.901c-4.059-4.075-65.483 46.179-58.718 47.266 7.035 1.086-52.225-53.242-54.931-48.896-7.306 11.137 24.354 6.248 39.236 4.346l-1.353-47.809s-114.19 22.818-147.202-27.707",
40
+ stroke: "var(--zd_emptysvg_primary_stroke)",
41
+ fill: "transparent",
42
+ strokeWidth: 2.5,
43
+ strokeMiterlimit: 10,
44
+ strokeLinecap: "round",
45
+ strokeLinejoin: "round"
46
+ }))), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
47
+ id: "Import_svg__clip0"
48
+ }, /*#__PURE__*/React.createElement("path", {
49
+ fill: "#fff",
50
+ d: "M0 0h500v500H0z"
51
+ })), /*#__PURE__*/React.createElement("clipPath", {
52
+ id: "Import_svg__clip1"
53
+ }, /*#__PURE__*/React.createElement("path", {
54
+ fill: "#fff",
55
+ transform: "translate(25 50)",
56
+ d: "M0 0h450v400H0z"
57
+ }))));
58
+ }
59
+
60
+ }
61
+ Import.propTypes = {
62
+ alignHorizontal: PropTypes.bool,
63
+ className: PropTypes.string,
64
+ dataId: PropTypes.string,
65
+ isRender: PropTypes.bool,
66
+ size: PropTypes.oneOf(['small', 'large']),
67
+ palette: PropTypes.oneOf(['default', 'dark'])
68
+ };
69
+ Import.defaultProps = {
70
+ size: 'large',
71
+ alignHorizontal: true,
72
+ isRender: true,
73
+ className: '',
74
+ dataId: 'import',
75
+ palette: 'default'
76
+ };
77
+
78
+ if (false) {
79
+ Import.docs = {
80
+ componentGroup: 'SVG'
81
+ };
82
+ }
package/es/svg/Loader.js CHANGED
@@ -1,46 +1,67 @@
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';
6
1
  import React from 'react';
7
2
  import PropTypes from 'prop-types';
8
3
  import SVG from './SVG';
9
- import image from './images/Loader.svg';
10
- import style from './SVG.module.css';
11
-
12
- var Loader = function (_React$Component) {
13
- _inherits(Loader, _React$Component);
14
-
15
- function Loader() {
16
- _classCallCheck(this, Loader);
17
-
18
- return _possibleConstructorReturn(this, (Loader.__proto__ || _Object$getPrototypeOf(Loader)).apply(this, arguments));
4
+ import cssStyle from './SVG.module.css';
5
+ export default class Loader extends React.PureComponent {
6
+ constructor(props) {
7
+ super(props);
8
+ this.viewBoxStyle = {
9
+ animation: "loaderone 2s linear infinite"
10
+ };
11
+ this.defsStyle = {
12
+ animation: "circleAnimation_1 1.5s linear infinite",
13
+ transformOrigin: "center"
14
+ };
15
+ this.circleStyle = {
16
+ animation: "circleAnimation_2 1.2s linear infinite",
17
+ transformOrigin: "center"
18
+ };
19
19
  }
20
20
 
21
- _createClass(Loader, [{
22
- key: 'render',
23
- value: function render() {
24
- var isRender = this.props.isRender;
25
-
26
- return React.createElement(
27
- SVG,
28
- { viewBox: '0 0 40 40', name: 'Loader', isRender: isRender, className: style.loaderWrapper },
29
- React.createElement('image', { xlinkHref: image, height: '100%', width: '100%' })
30
- );
31
- }
32
- }]);
33
-
34
- return Loader;
35
- }(React.Component);
36
-
37
- export default Loader;
21
+ render() {
22
+ let {
23
+ dataId
24
+ } = this.props;
25
+ return /*#__PURE__*/React.createElement("div", {
26
+ className: cssStyle.center
27
+ }, /*#__PURE__*/React.createElement(SVG, {
28
+ viewBox: "0 0 40 40",
29
+ name: "Loader",
30
+ className: `${cssStyle.loaderWrapper}`,
31
+ dataId: dataId,
32
+ styleName: this.viewBoxStyle
33
+ }, /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("style", null, "@keyframes circleAnimation_1{to{stroke-dashoffset:-82}}@keyframes circleAnimation_2{to{stroke-dashoffset:-50}}@keyframes loaderone{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}")), /*#__PURE__*/React.createElement("title", null, "loader"), /*#__PURE__*/React.createElement("circle", {
34
+ fill: "none",
35
+ stroke: "#089949",
36
+ strokeWidth: 2,
37
+ strokeLinecap: "round",
38
+ strokeLinejoin: "round",
39
+ cx: 20,
40
+ cy: 20,
41
+ r: 13,
42
+ style: this.defsStyle,
43
+ strokeDasharray: 82,
44
+ strokeDashoffset: 82
45
+ }), /*#__PURE__*/React.createElement("circle", {
46
+ fill: "none",
47
+ stroke: "#17c662",
48
+ strokeLinecap: "round",
49
+ strokeLinejoin: "round",
50
+ cx: 20,
51
+ cy: 20,
52
+ r: 8,
53
+ style: this.circleStyle,
54
+ strokeDasharray: 50,
55
+ strokeDashoffset: 50
56
+ })));
57
+ }
38
58
 
59
+ }
39
60
  Loader.propTypes = {
40
- isRender: PropTypes.bool
61
+ dataId: PropTypes.string
41
62
  };
42
63
  Loader.defaultProps = {
43
- isRender: true
64
+ dataId: 'loader'
44
65
  };
45
66
 
46
67
  if (false) {
@@ -1,61 +1,38 @@
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/NoRequestFound.svg';
10
-
11
- var NoRequestFound = function (_React$Component) {
12
- _inherits(NoRequestFound, _React$Component);
13
-
14
- function NoRequestFound() {
15
- _classCallCheck(this, NoRequestFound);
16
-
17
- return _possibleConstructorReturn(this, (NoRequestFound.__proto__ || _Object$getPrototypeOf(NoRequestFound)).apply(this, arguments));
7
+ export default class NoRequestFound extends React.Component {
8
+ render() {
9
+ let {
10
+ isFluid
11
+ } = this.props;
12
+ return /*#__PURE__*/React.createElement(SVG, _extends({
13
+ viewBox: "0 0 476.5 297.6",
14
+ name: "NoRequestFound",
15
+ isFluid: isFluid
16
+ }, this.props), /*#__PURE__*/React.createElement("image", {
17
+ xlinkHref: image,
18
+ height: "100%",
19
+ width: "100%"
20
+ }));
18
21
  }
19
22
 
20
- _createClass(NoRequestFound, [{
21
- key: 'render',
22
- value: function render() {
23
- var _props = this.props,
24
- isRender = _props.isRender,
25
- className = _props.className,
26
- alignHorizontal = _props.alignHorizontal,
27
- isFluid = _props.isFluid;
28
-
29
- return React.createElement(
30
- SVG,
31
- {
32
- viewBox: '0 0 476.5 297.6',
33
- name: 'NoRequestFound',
34
- isRender: isRender,
35
- className: className,
36
- alignHorizontal: alignHorizontal,
37
- isFluid: isFluid
38
- },
39
- React.createElement('image', { xlinkHref: image, height: '100%', width: '100%' })
40
- );
41
- }
42
- }]);
43
-
44
- return NoRequestFound;
45
- }(React.Component);
46
-
47
- export default NoRequestFound;
48
-
23
+ }
49
24
  NoRequestFound.propTypes = {
50
- isRender: PropTypes.bool,
51
25
  alignHorizontal: PropTypes.bool,
52
26
  className: PropTypes.string,
53
- isFluid: PropTypes.bool
27
+ dataId: PropTypes.string,
28
+ isFluid: PropTypes.bool,
29
+ isRender: PropTypes.bool
54
30
  };
55
31
  NoRequestFound.defaultProps = {
32
+ alignHorizontal: true,
56
33
  isRender: true,
57
34
  className: '',
58
- alignHorizontal: true
35
+ dataId: 'noRequestFound'
59
36
  };
60
37
 
61
38
  if (false) {
@@ -0,0 +1,79 @@
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 NotImpossible extends React.Component {
7
+ render() {
8
+ return /*#__PURE__*/React.createElement(SVG, _extends({
9
+ viewBox: "0 0 316.9 200",
10
+ name: "NotImpossible"
11
+ }, this.props), /*#__PURE__*/React.createElement("style", null, ".NotImpossible_svg__st2{fill:none;stroke:var(--zd_emptysvg_tiny_circle);stroke-miterlimit:10}.NotImpossible_svg__st4{fill:none;stroke:var(--zd_emptysvg_cross);stroke-miterlimit:10}.NotImpossible_svg__st3{fill:none;stroke:var(--zd_emptysvg_plus);stroke-linecap:round;stroke-linejoin:round}"), /*#__PURE__*/React.createElement("path", {
12
+ d: "M174 53.9s46.9-30.9 70.7-21.6 40 87.4-26.1 122.4-95.9-41.2-96.1-54.7c-.3-13-.1-44.2 51.5-46.1z",
13
+ opacity: 0.05,
14
+ fill: "var(--zd_emptysvg_primary_fill)"
15
+ }), /*#__PURE__*/React.createElement("circle", {
16
+ cx: 243.5,
17
+ cy: 23.1,
18
+ fill: "none",
19
+ stroke: "var(--zd_emptysvg_medium_circle)",
20
+ strokeMiterlimit: 10,
21
+ r: 3.5
22
+ }), /*#__PURE__*/React.createElement("circle", {
23
+ className: "NotImpossible_svg__st2",
24
+ cx: 167.1,
25
+ cy: 21,
26
+ r: 2.1
27
+ }), /*#__PURE__*/React.createElement("path", {
28
+ className: "NotImpossible_svg__st3",
29
+ d: "M110.7 72.3l-.3 6.1M107.4 75.2l6.3.3"
30
+ }), /*#__PURE__*/React.createElement("circle", {
31
+ cx: 253.3,
32
+ cy: 145.5,
33
+ fill: "none",
34
+ stroke: "var(--zd_emptysvg_small_circle)",
35
+ strokeLinecap: "round",
36
+ strokeLinejoin: "round",
37
+ r: 2.4
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ className: "NotImpossible_svg__st4",
40
+ d: "M134 157.2l4.1 4.6M133.7 161.5l4.7-4.1"
41
+ }), /*#__PURE__*/React.createElement("circle", {
42
+ cx: 209.7,
43
+ cy: 179.2,
44
+ fill: "#e46370",
45
+ r: 2.1
46
+ }), /*#__PURE__*/React.createElement("path", {
47
+ d: "M16 140.6s46.9 7 49.7-6.6 30.8-22.5 110.9 10.1c0 0 48-24.1 48-25s-27.6-4.6-42.2 18.4c0 0-62-19.2-73.2-19.2 0 0 39.3-33.4 48.2-32s-31 2.1-55.6 21.6c0 0 52.1 14.2 73.7 24.1 0 0 26.2-23 49.1-17.7 0 0 2.5-.1 1.2-2.7s-27.3-21.3-65.4-25.5c0 0 .2-21.4 14.9-39 0 0-6.7 12.2 3.8 12.3l4.1-.5s-3.2 6.3 2.2 8.4l-.5 2.4s4.4-2.4 5.1.5l5.6-.7s-1.7 2.6-.9 3.8 6.5 3.2 6.5 3.2.3 6.2 1.9 6.5 3.4-1.9 5.1-.7 5.8-2.4 6.7-.5-.4 5.3 2.6 6 2.6 3.3 2.4 6.5 1.7 6.5 4.4 6.5 4.6 4.4 4.6 4.4 11.5-19 44.6-22.4c-20.7-13.7-43.1-24.5-66.7-32.3 0 0-18.6 1.6-42.9 32 0 0 59.6 12.6 66.4 30.6 0 0 0 4.7-2.8 5.8 0 0 9.2-1.8 8.8-6.5s-7.5-4.8.8-11.8 37-8.3 38.8-10.5 0-3.6 0-3.6l6.3 5.9-44.4 15.8s-.6 4.1 3.6 2.9 5.3-13.6 7.5-26.3 7.8-35.8 32.2-40.5c4.2-.7 10.8-.4 17.7 0",
48
+ fill: "none",
49
+ stroke: "var(--zd_emptysvg_primary_stroke)",
50
+ strokeWidth: 0.5,
51
+ strokeLinecap: "round",
52
+ strokeLinejoin: "round"
53
+ }), /*#__PURE__*/React.createElement("path", {
54
+ d: "M160.3 86.3s1.3-22.4 14.9-39c0 0-8.9 13.1 4.2 16.2 0 0 2.5 4.7 3.7 4.6l1 3.6s3.1-1.9 4.1-.9 2.9.8 4.9.3c0 0-3.2 3.4 6.7 6.9 0 0 .6 7.6 3.8 7.2s3.3-1.9 5.5-.9 3.5-1.3 4.3-.6.3 5.1 3 5.5 2.4 4.1 2.5 9 5.7 3.3 7 4.9 1.3 5.2 1.3 5.2l-1.3 3.4c.2-1.5-31-23.5-65.6-25.4z",
55
+ fill: "var(--zd_emptysvg_secondary_fill)"
56
+ }));
57
+ }
58
+
59
+ }
60
+ NotImpossible.propTypes = {
61
+ alignHorizontal: PropTypes.bool,
62
+ className: PropTypes.string,
63
+ dataId: PropTypes.string,
64
+ isRender: PropTypes.bool,
65
+ palette: PropTypes.oneOf(['default', 'dark'])
66
+ };
67
+ NotImpossible.defaultProps = {
68
+ alignHorizontal: true,
69
+ isRender: true,
70
+ className: '',
71
+ dataId: 'emptyAccounts',
72
+ palette: 'default'
73
+ };
74
+
75
+ if (false) {
76
+ NotImpossible.docs = {
77
+ componentGroup: 'SVG'
78
+ };
79
+ }
@@ -1,61 +1,39 @@
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/PageNotFound.svg';
10
-
11
- var PageNotFound = function (_React$Component) {
12
- _inherits(PageNotFound, _React$Component);
13
-
14
- function PageNotFound() {
15
- _classCallCheck(this, PageNotFound);
16
-
17
- return _possibleConstructorReturn(this, (PageNotFound.__proto__ || _Object$getPrototypeOf(PageNotFound)).apply(this, arguments));
7
+ export default class PageNotFound extends React.Component {
8
+ render() {
9
+ let {
10
+ isFluid
11
+ } = this.props;
12
+ return /*#__PURE__*/React.createElement(SVG, _extends({
13
+ viewBox: "0 0 508.8 324.8",
14
+ name: "PageNotFound"
15
+ }, this.props, {
16
+ isFluid: isFluid
17
+ }), /*#__PURE__*/React.createElement("image", {
18
+ xlinkHref: image,
19
+ height: "100%",
20
+ width: "100%"
21
+ }));
18
22
  }
19
23
 
20
- _createClass(PageNotFound, [{
21
- key: 'render',
22
- value: function render() {
23
- var _props = this.props,
24
- isRender = _props.isRender,
25
- className = _props.className,
26
- alignHorizontal = _props.alignHorizontal,
27
- isFluid = _props.isFluid;
28
-
29
- return React.createElement(
30
- SVG,
31
- {
32
- viewBox: '0 0 508.8 324.8',
33
- name: 'PageNotFound',
34
- isRender: isRender,
35
- className: className,
36
- alignHorizontal: alignHorizontal,
37
- isFluid: isFluid
38
- },
39
- React.createElement('image', { xlinkHref: image, height: '100%', width: '100%' })
40
- );
41
- }
42
- }]);
43
-
44
- return PageNotFound;
45
- }(React.Component);
46
-
47
- export default PageNotFound;
48
-
24
+ }
49
25
  PageNotFound.propTypes = {
50
- isRender: PropTypes.bool,
51
26
  alignHorizontal: PropTypes.bool,
52
27
  className: PropTypes.string,
53
- isFluid: PropTypes.bool
28
+ dataId: PropTypes.string,
29
+ isFluid: PropTypes.bool,
30
+ isRender: PropTypes.bool
54
31
  };
55
32
  PageNotFound.defaultProps = {
56
- isRender: true,
57
33
  alignHorizontal: true,
58
- className: ''
34
+ isRender: true,
35
+ className: '',
36
+ dataId: 'pageNotFound'
59
37
  };
60
38
 
61
39
  if (false) {
@@ -0,0 +1,73 @@
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 Predictor extends React.Component {
7
+ render() {
8
+ return /*#__PURE__*/React.createElement(SVG, _extends({
9
+ viewBox: "0 0 200 200",
10
+ name: "predictor"
11
+ }, this.props), /*#__PURE__*/React.createElement("style", null, ".Predictor_svg__st0{fill:none}.Predictor_svg__st1{opacity:.1;fill:var(--zd_emptysvg_primary_fill);enable-background:new}.Predictor_svg__st2{fill:var(--zd_emptysvg_plus)}.Predictor_svg__st3{fill:var(--zd_emptysvg_medium_circle)}.Predictor_svg__st4{fill:var(--zd_emptysvg_cross)}"), /*#__PURE__*/React.createElement("path", {
12
+ className: "Predictor_svg__st0",
13
+ d: "M0 0h200v200H0z"
14
+ }), /*#__PURE__*/React.createElement("path", {
15
+ className: "Predictor_svg__st0",
16
+ d: "M10 22h180v160H10z"
17
+ }), /*#__PURE__*/React.createElement("path", {
18
+ className: "Predictor_svg__st1",
19
+ d: "M80.2 58.2s46.7-31.2 70.3-21.8 39.7 88.3-25.9 123.7c-65.6 35.4-95.4-41.6-95.7-55.2-.2-13.3 0-44.7 51.3-46.7z"
20
+ }), /*#__PURE__*/React.createElement("path", {
21
+ className: "Predictor_svg__st2",
22
+ d: "M14 119.3s-.1 0 0 0c-.3 0-.5-.3-.5-.5l.4-7.5c0-.3.2-.5.5-.5s.5.2.5.5l-.4 7.5c-.1.3-.3.5-.5.5z"
23
+ }), /*#__PURE__*/React.createElement("path", {
24
+ className: "Predictor_svg__st2",
25
+ d: "M17.8 115.8l-7.4-.4c-.3 0-.5-.3-.5-.5 0-.3.3-.5.5-.5l7.3.4c.3 0 .5.3.5.5.1.3-.1.5-.4.5z"
26
+ }), /*#__PURE__*/React.createElement("path", {
27
+ className: "Predictor_svg__st3",
28
+ d: "M171.2 22.8c-2.6 0-4.7 2.1-4.7 4.7s2.1 4.7 4.7 4.7 4.7-2.1 4.7-4.7-2.2-4.7-4.7-4.7zm0 8.5c-2 0-3.7-1.7-3.7-3.8s1.7-3.8 3.7-3.8 3.7 1.7 3.7 3.8-1.7 3.8-3.7 3.8zM124.4 175.1c-1.9 0-3.4 1.5-3.4 3.4s1.5 3.4 3.4 3.4 3.4-1.5 3.4-3.4c0-1.8-1.5-3.4-3.4-3.4zm0 5.9c-1.3 0-2.4-1.1-2.4-2.5s1.1-2.5 2.4-2.5c1.3 0 2.4 1.1 2.4 2.5s-1.1 2.5-2.4 2.5z"
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ className: "Predictor_svg__st4",
31
+ d: "M80.9 22c-1.7 0-3 1.4-3 3s1.3 3 3 3 3-1.4 3-3-1.3-3-3-3zm0 5.1c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM189.8 131.8c-.2-.2-.5-.2-.7 0l-2.4 2.2-2.1-2.4c-.2-.2-.5-.2-.7 0-.2.2-.2.5 0 .7l2.1 2.4-2.4 2.2c-.2.2-.2.5 0 .7.1.1.2.2.4.2.1 0 .2 0 .3-.1l2.4-2.2 2.1 2.4c.1.1.2.2.4.2.1 0 .2 0 .3-.1.2-.2.2-.5 0-.7l-2.1-2.4 2.4-2.2c.2-.3.2-.7 0-.9z"
32
+ }), /*#__PURE__*/React.createElement("path", {
33
+ className: "Predictor_svg__st1",
34
+ d: "M115.8 67S78.5 42.1 59.6 49.6s-31.8 70.6 20.7 98.9c52.5 28.3 76.3-33.3 76.5-44.2.2-10.6 0-35.8-41-37.3z"
35
+ }), /*#__PURE__*/React.createElement("path", {
36
+ className: "Predictor_svg__st0",
37
+ d: "M3 36h193.5v127.5H3z"
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ d: "M65.5 111.2c.1-13.7-12.5-6.1-16.6-10.7-6.2-6.9-10.7-17.4 2.7-28.3 23.1-18.7 64.2-21.7 72.7 19S75 152 61.8 133.7c-5-6.9 3.7-18.6 3.7-22.5z",
40
+ fill: "var(--zd_emptysvg_secondary_fill)"
41
+ }), /*#__PURE__*/React.createElement("path", {
42
+ d: "M196 117.3s-24.5-5.4-29.3-2.1c-4.8 3.3-18.4 0-24.5 1.5-6 1.5-17.5 3.3-17.5 3.3M3.5 38.8s28.6 0 38.7 4S70.6 31 74.6 38.5 63.3 54.1 53.5 51.2c-9.8-2.9 33 3.8 38.2 11 5.2 7.2-5.8 6.6-9.8 5.2s-21.7-5.5-26.6-2S70.5 77.4 75 88c4.6 10.6-5 5.1-5.8 4.7-.8-.4-23.4-19.9-22.9-18.4s17.1 24 17.3 25.9c.2 1.9-1.9 7.9-7.2 3.9-5.2-3.9-21.3-23.1-20.8-24.3.5-1.2 4.8 3.8 4.8 16.1s-2.5 17.7-5.6 15.3c-3.1-2.4-5-28.4-9.8-32.2S9 63.7 3.5 63.5m38 41.6s5.2 31.4 31 35.3c24.7 3.8 35.6-6 35.6-6l.2 6.4s-21.9 11.9-51.9-.5l.5 7.2s26.5 13.8 62.8-1.2l.1 8.4s-24 17.8-70 .9c0 0-.6-9.9.2-10.1s3.2-2.8 5.3-2.7c0 0-.1-5.2 5.5-5.9 0 0 18.7 13 45.9.9 6.8-3 11.4-9.5 14.5-17.6 0 0-4.3-3.2-1.2-6.6 3.1-3.3 25.3-5 25.2-9.3-.1-4.3-36.2 3.1-37.8.3-1.7-2.8-2.1-8.3 3.1-9.2 0 0 33.3-8.2 33.5-6 .3 2.3-22.8-4.8-32.5-1.8-9.6 3-16-4.5-10.8-8.1 0 0 8.5-.9 11.3-2.3 2.7-1.4 26.8.6 27.3.7.6.1-23-2.6-23-2.6s-11.4 3.3-13.6 2c-2.2-1.3-3-5.8.6-6.8s8.5-1 8.5-1-10.7-9.4-20.4-10.1c0 0 11.4.3 25.2 9.7l11.7-.7s14.6 1.4 17.1 4.2c2.5 2.7 19.5 13.9 25.3 13.9s8.8.6 8.8.6",
43
+ fill: "none",
44
+ stroke: "var(--zd_emptysvg_primary_stroke)",
45
+ strokeLinecap: "round",
46
+ strokeLinejoin: "round",
47
+ strokeMiterlimit: 10
48
+ }));
49
+ }
50
+
51
+ }
52
+ Predictor.propTypes = {
53
+ alignHorizontal: PropTypes.bool,
54
+ className: PropTypes.string,
55
+ dataId: PropTypes.string,
56
+ isRender: PropTypes.bool,
57
+ size: PropTypes.oneOf(['small', 'large']),
58
+ palette: PropTypes.oneOf(['default', 'dark'])
59
+ };
60
+ Predictor.defaultProps = {
61
+ size: 'large',
62
+ alignHorizontal: true,
63
+ isRender: true,
64
+ className: '',
65
+ dataId: 'predictor',
66
+ palette: 'default'
67
+ };
68
+
69
+ if (false) {
70
+ Predictor.docs = {
71
+ componentGroup: 'SVG'
72
+ };
73
+ }