@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,78 @@
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/EmptySearch.svg';
10
-
11
- var EmptySearch = function (_React$Component) {
12
- _inherits(EmptySearch, _React$Component);
13
-
14
- function EmptySearch() {
15
- _classCallCheck(this, EmptySearch);
16
-
17
- return _possibleConstructorReturn(this, (EmptySearch.__proto__ || _Object$getPrototypeOf(EmptySearch)).apply(this, arguments));
6
+ export default class EmptySearch extends React.Component {
7
+ render() {
8
+ return /*#__PURE__*/React.createElement(SVG, _extends({
9
+ viewBox: "0 0 200 200",
10
+ name: "search"
11
+ }, this.props), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("style", null, ".EmptySearch_svg__cls-4,.EmptySearch_svg__cls-5,.EmptySearch_svg__cls-6,.EmptySearch_svg__cls-7,.EmptySearch_svg__cls-8{fill:none}.EmptySearch_svg__cls-4{stroke-miterlimit:10;stroke:var(--zd_emptysvg_tiny_circle)}.EmptySearch_svg__cls-7{stroke-miterlimit:10;stroke:var(--zd_emptysvg_cross)}.EmptySearch_svg__cls-5,.EmptySearch_svg__cls-6{stroke:var(--zd_emptysvg_plus);stroke-linecap:round;stroke-linejoin:round}.EmptySearch_svg__cls-6{stroke:var(--zd_emptysvg_primary_stroke)}.EmptySearch_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: "EmptySearch_svg__cls-4",
25
+ cx: 79.62,
26
+ cy: 29.6,
27
+ rx: 2.12,
28
+ ry: 2.1
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ className: "EmptySearch_svg__cls-5",
31
+ d: "M23.28 100.86l-.35 6.16M20 103.76l6.22.35"
32
+ }), /*#__PURE__*/React.createElement("ellipse", {
33
+ className: "EmptySearch_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: "EmptySearch_svg__cls-7",
40
+ d: "M175.6 117.21l4.15 4.6M175.36 121.57l4.64-4.12"
41
+ }), /*#__PURE__*/React.createElement("path", {
42
+ d: "M101.35 87.13s4.94 2.24 6.06 9.58",
43
+ stroke: "var(--zd_emptysvg_circle_fill)",
44
+ strokeWidth: 2,
45
+ strokeLinecap: "round",
46
+ strokeLinejoin: "round",
47
+ fill: "none"
48
+ }), /*#__PURE__*/React.createElement("ellipse", {
49
+ cx: 95.28,
50
+ cy: 96.71,
51
+ rx: 21.41,
52
+ ry: 21.23,
53
+ fill: "var(--zd_emptysvg_secondary_fill)"
54
+ }), /*#__PURE__*/React.createElement("path", {
55
+ className: "EmptySearch_svg__cls-6",
56
+ d: "M33.71 102.31H56.2a7.33 7.33 0 007.28-6.64c.75-7.62 4.37-20 19-27.59 22.32-11.51 51.78 10.62 43.75 37.18l-3.57 7.67 27.38 27.15s4.11 6.77 0 10.62-8 1.77-12.21-1.18S112 124.14 112 124.14s-26.19 12.4-42.26-8.26c0 0-1-1.53-2.09-3.42-2.2-3.73 1.4-8.42 5.52-7a3.11 3.11 0 011.5 1c2.19 2.85 9.2 15.31 25.23 12.24s19.48-19.7 15.81-32.18-25.88-16.08-34.38-8-9.65 18.57-5.6 22 7-.57 8.31-5.93 4.41-8.81 8.38-8.81 7.84-2.11 5.72-5.75-12.51-.82-16 2.68c-5.32 5.28-9.27 17.71-1 26.19s19.7 5.22 22.6 3.69 6.4-7.8 7.92-8.62"
57
+ }));
18
58
  }
19
59
 
20
- _createClass(EmptySearch, [{
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: 'search', size: size, className: className, alignHorizontal: alignHorizontal },
32
- React.createElement('image', { xlinkHref: image, height: '100%', width: '100%' })
33
- );
34
- }
35
- }]);
36
-
37
- return EmptySearch;
38
- }(React.Component);
39
-
40
- export default EmptySearch;
41
-
60
+ }
42
61
  EmptySearch.propTypes = {
43
- size: PropTypes.oneOf('small', 'large'),
62
+ alignHorizontal: PropTypes.bool,
44
63
  className: PropTypes.string,
45
- alignHorizontal: PropTypes.bool
64
+ dataId: PropTypes.string,
65
+ isRender: PropTypes.bool,
66
+ size: PropTypes.oneOf(['small', 'large']),
67
+ palette: PropTypes.oneOf(['default', 'dark'])
46
68
  };
47
69
  EmptySearch.defaultProps = {
48
70
  size: 'large',
49
- alignHorizontal: true
71
+ alignHorizontal: true,
72
+ isRender: true,
73
+ className: '',
74
+ dataId: 'emptySearch',
75
+ palette: 'default'
50
76
  };
51
77
 
52
78
  if (false) {
@@ -1,58 +1,116 @@
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/EmptySkills.svg';
10
-
11
- var EmptySkills = function (_React$Component) {
12
- _inherits(EmptySkills, _React$Component);
13
-
14
- function EmptySkills() {
15
- _classCallCheck(this, EmptySkills);
16
-
17
- return _possibleConstructorReturn(this, (EmptySkills.__proto__ || _Object$getPrototypeOf(EmptySkills)).apply(this, arguments));
6
+ export default class EmptySkills extends React.Component {
7
+ render() {
8
+ return /*#__PURE__*/React.createElement(SVG, _extends({
9
+ viewBox: "0 0 200 200",
10
+ name: "search"
11
+ }, this.props), /*#__PURE__*/React.createElement("style", null, ".EmptySkills_svg__st2,.EmptySkills_svg__st4{fill:none;stroke:var(--zd_emptysvg_tiny_circle);stroke-miterlimit:10}.EmptySkills_svg__st4{stroke:var(--zd_emptysvg_cross)}.EmptySkills_svg__st3{fill:none;stroke:var(--zd_emptysvg_plus);stroke-linecap:round;stroke-linejoin:round}.EmptySkills_svg__st7{opacity:.25}.EmptySkills_svg__st9{fill:none;stroke:var(--zd_emptysvg_primary_fill);stroke-width:.5;stroke-miterlimit:10}"), /*#__PURE__*/React.createElement("path", {
12
+ d: "M86.5 62.5s46.9-30.9 70.7-21.5 40 87.4-26.1 122.4-95.9-41.2-96.1-54.7c-.3-13.1 0-44.3 51.5-46.2z",
13
+ opacity: 0.05,
14
+ fill: "var(--zd_emptysvg_primary_fill)"
15
+ }), /*#__PURE__*/React.createElement("circle", {
16
+ cx: 156,
17
+ cy: 31.7,
18
+ fill: "none",
19
+ stroke: "var(--zd_emptysvg_medium_circle)",
20
+ strokeMiterlimit: 10,
21
+ r: 3.5
22
+ }), /*#__PURE__*/React.createElement("circle", {
23
+ className: "EmptySkills_svg__st2",
24
+ cx: 79.6,
25
+ cy: 29.6,
26
+ r: 2.1
27
+ }), /*#__PURE__*/React.createElement("path", {
28
+ className: "EmptySkills_svg__st3",
29
+ d: "M23.3 100.9l-.4 6.1M20 103.8l6.2.3"
30
+ }), /*#__PURE__*/React.createElement("circle", {
31
+ cx: 165.9,
32
+ cy: 154.1,
33
+ fill: "none",
34
+ stroke: "var(--zd_emptysvg_medium_circle)",
35
+ strokeLinecap: "round",
36
+ strokeLinejoin: "round",
37
+ r: 2.4
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ className: "EmptySkills_svg__st4",
40
+ d: "M175.6 117.2l4.2 4.6M175.4 121.6l4.6-4.2"
41
+ }), /*#__PURE__*/React.createElement("path", {
42
+ d: "M25.9 124.2s28.6-2.9 35.8-25.2 29.5-22.8 35.6-24.2l.7-.2c6.6-2.4 11.3-8.9 11.3-16.3 0-9.5-7.7-17.2-17.2-17.2S75 48.8 75 58.3c0 8.2 5.7 15 13.4 16.7h0c2.1.7 4.5 1.6 7.3 1.9 2.2.2 4.5.3 6.8.2 5.3-.2 18.5 2.2 23.3 13.8 6.3 15.4 16.9 30.2 36.4 30.2 0 0-44.3 6.3-51.1-23 0 0 3.2 1.1 0 15.1S92.4 142 66.5 128s-30.6 18.7-5 22.3 58.3-18.4 72.7-22 24.1 5 24.1 12.2c0 20.2-79.2 33.1-83.2-42.5",
43
+ fill: "none",
44
+ stroke: "var(--zd_emptysvg_primary_stroke)",
45
+ strokeMiterlimit: 10
46
+ }), /*#__PURE__*/React.createElement("circle", {
47
+ cx: 97.2,
48
+ cy: 58.1,
49
+ r: 17.1,
50
+ fill: "var(--zd_emptysvg_secondary_fill)"
51
+ }), /*#__PURE__*/React.createElement("g", {
52
+ className: "EmptySkills_svg__st7"
53
+ }, /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("circle", {
54
+ id: "EmptySkills_svg__SVGID_1_",
55
+ cx: 147.6,
56
+ cy: 58.7,
57
+ r: 12.7
58
+ })), /*#__PURE__*/React.createElement("clipPath", {
59
+ id: "EmptySkills_svg__SVGID_2_"
60
+ }, /*#__PURE__*/React.createElement("use", {
61
+ xlinkHref: "#EmptySkills_svg__SVGID_1_",
62
+ overflow: "visible"
63
+ })), /*#__PURE__*/React.createElement("g", {
64
+ clipPath: "url(#EmptySkills_svg__SVGID_2_)"
65
+ }, /*#__PURE__*/React.createElement("path", {
66
+ className: "EmptySkills_svg__st9",
67
+ d: "M162.5 47.7l-4.1 26M160.9 47.5l-4.1 26M159.3 47.2l-4.1 26M157.7 47l-4.1 26M156.1 46.7l-4.2 26M154.5 46.5l-4.1 25.9M152.9 46.2l-4.2 26M151.3 45.9l-4.2 26M149.7 45.7l-4.2 26M148.1 45.4l-4.2 26M146.5 45.2l-4.2 26M144.9 44.9l-4.2 26M143.2 44.7l-4.1 26M141.6 44.4l-4.1 26M140 44.2l-4.1 26M138.4 43.9l-4.1 26M136.8 43.6l-4.1 26"
68
+ })), /*#__PURE__*/React.createElement("circle", {
69
+ className: "EmptySkills_svg__st9",
70
+ cx: 147.6,
71
+ cy: 58.7,
72
+ r: 12.7
73
+ })), /*#__PURE__*/React.createElement("g", {
74
+ className: "EmptySkills_svg__st7"
75
+ }, /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("circle", {
76
+ id: "EmptySkills_svg__SVGID_3_",
77
+ cx: 34.3,
78
+ cy: 61.8,
79
+ r: 12.7
80
+ })), /*#__PURE__*/React.createElement("clipPath", {
81
+ id: "EmptySkills_svg__SVGID_4_"
82
+ }, /*#__PURE__*/React.createElement("use", {
83
+ xlinkHref: "#EmptySkills_svg__SVGID_3_",
84
+ overflow: "visible"
85
+ })), /*#__PURE__*/React.createElement("g", {
86
+ clipPath: "url(#EmptySkills_svg__SVGID_4_)"
87
+ }, /*#__PURE__*/React.createElement("path", {
88
+ className: "EmptySkills_svg__st9",
89
+ d: "M47.7 50.6l-4.2 26M44.5 50.1l-4.2 26M41.2 49.6l-4.1 26M38 49l-4.1 26.1M34.8 48.5l-4.1 26M31.6 48l-4.1 26M28.4 47.5l-4.2 26M25.2 47L21 73"
90
+ })), /*#__PURE__*/React.createElement("circle", {
91
+ className: "EmptySkills_svg__st9",
92
+ cx: 34.3,
93
+ cy: 61.8,
94
+ r: 12.7
95
+ })));
18
96
  }
19
97
 
20
- _createClass(EmptySkills, [{
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
- {
32
- viewBox: '0 0 194.4 139.3',
33
- name: 'search',
34
- size: size,
35
- className: className,
36
- alignHorizontal: alignHorizontal
37
- },
38
- React.createElement('image', { xlinkHref: image, height: '100%', width: '100%' })
39
- );
40
- }
41
- }]);
42
-
43
- return EmptySkills;
44
- }(React.Component);
45
-
46
- export default EmptySkills;
47
-
98
+ }
48
99
  EmptySkills.propTypes = {
49
- size: PropTypes.oneOf('small', 'large'),
100
+ alignHorizontal: PropTypes.bool,
50
101
  className: PropTypes.string,
51
- alignHorizontal: PropTypes.bool
102
+ dataId: PropTypes.string,
103
+ isRender: PropTypes.bool,
104
+ size: PropTypes.oneOf(['small', 'large']),
105
+ palette: PropTypes.oneOf(['default', 'dark'])
52
106
  };
53
107
  EmptySkills.defaultProps = {
54
108
  size: 'large',
55
- alignHorizontal: true
109
+ alignHorizontal: true,
110
+ isRender: true,
111
+ className: '',
112
+ dataId: 'emptySkills',
113
+ palette: 'default'
56
114
  };
57
115
 
58
116
  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 EmptySla extends React.Component {
7
+ render() {
8
+ return /*#__PURE__*/React.createElement(SVG, _extends({
9
+ viewBox: "0 0 200 200",
10
+ name: "Sla"
11
+ }, this.props), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("style", null, '.EmptySla_svg-3{fill:var(--zd_emptysvg_tiny_circle)}.EmptySla_svg-4{fill:var(--zd_emptysvg_plus)}')), /*#__PURE__*/React.createElement("path", {
12
+ d: "M88.4 67.4s41.2-27.13 62.06-19 35.09 76.86-22.89 107.68S43.36 119.89 43.13 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: "M158.11 150.45a2.5 2.5 0 112.51-2.5 2.51 2.51 0 01-2.51 2.5zm0-4.28a1.78 1.78 0 101.79 1.83 1.79 1.79 0 00-1.79-1.83z",
17
+ fill: "var(--zd_emptysvg_small_circle)"
18
+ }), /*#__PURE__*/React.createElement("path", {
19
+ d: "M149.46 43.73a3.45 3.45 0 113.47-3.45 3.47 3.47 0 01-3.47 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: "EmptySla_svg-3",
23
+ d: "M82.35 40.64a2.21 2.21 0 112.21-2.2 2.2 2.2 0 01-2.21 2.2zm0-3.68a1.48 1.48 0 101.49 1.48A1.49 1.49 0 0082.35 37z"
24
+ }), /*#__PURE__*/React.createElement("path", {
25
+ className: "EmptySla_svg-4",
26
+ d: "M32.57 106.9a.35.35 0 01-.33-.38l.3-5.42a.36.36 0 01.72 0l-.31 5.42a.35.35 0 01-.38.38z"
27
+ }), /*#__PURE__*/React.createElement("path", {
28
+ className: "EmptySla_svg-4",
29
+ d: "M35.45 104.34L30 104a.36.36 0 010-.72l5.46.3a.37.37 0 01.34.38.35.35 0 01-.35.38z"
30
+ }), /*#__PURE__*/React.createElement("path", {
31
+ className: "EmptySla_svg-3",
32
+ d: "M170.29 119.92a.36.36 0 01-.27-.12l-3.65-4a.36.36 0 01.54-.49l3.64 4a.35.35 0 010 .51.34.34 0 01-.26.1z"
33
+ }), /*#__PURE__*/React.createElement("path", {
34
+ className: "EmptySla_svg-3",
35
+ d: "M166.42 119.7a.36.36 0 01-.23-.63l4.07-3.62a.36.36 0 01.48.54l-4.08 3.62a.34.34 0 01-.24.09z"
36
+ }), /*#__PURE__*/React.createElement("path", {
37
+ d: "M101.93 94.22s-8.08 10.21-7.18 10.78 10.83 13 11.47 12.27 34-25.4 34-25.4-.49-3-2.92-1.62C129 95 109.68 109.18 109 108.23c-.9-1.23-7.07-14.01-7.07-14.01z",
38
+ fill: "var(--zd_emptysvg_secondary_fill)"
39
+ }), /*#__PURE__*/React.createElement("path", {
40
+ d: "M105.4 156.63h-.15c-1.5-.29-10.69-7.45-18.34-14-5-4.23-16.69-14.49-18.07-18.39-2.21-6.26-1.62-50.79-1.59-52.68a.74.74 0 01.33-.59c.56-.42 2.67-.73 5.76-1 0-1.24.06-2.13.06-2.55a1 1 0 01.34-.75c3.71-3.64 54.81-3 60.63-2.91a.52.52 0 01.52.53.53.53 0 01-.53.52c-.14 0-14.77-.22-29.44 0-27 .47-30.16 2.09-30.46 2.6 0 .43 0 1.28-.06 2.45 7.24-.47 18.92-.54 29.14-.49 16.31.07 34 .52 35.75.91.54.12.84.18.8 9.33 0 4.31-.13 8.66-.13 8.71a.5.5 0 01-.23.42l-30.44 19.83a.53.53 0 01-.44.07.55.55 0 01-.33-.3c-.05-.1-4.6-10.57-6.39-12.79a.35.35 0 00-.34-.17c-1.59.1-4.94 5.63-6 7.44-.24.41-.44.73-.58.94 0 .38.76 2.64 11.19 14.34l.1.11c2.53-.89 21.19-15.53 32.65-24.78a.53.53 0 01.55-.07.53.53 0 01.3.47c0 .95.3 23.3-.51 27.34-.46 2.3-8.31 10.3-15.41 16.75-3.5 3.18-15.2 13.58-18.61 13.58-5.31 0-28.89-25.58-32-31.47-1.6-3-1.06-23.91-.25-46 0-1.13.08-2.15.11-3a19.34 19.34 0 00-5 .7c0 2.93-.55 46.23 1.54 52.14.89 2.54 7.53 9.24 17.74 17.93 9.53 8.11 17 13.56 17.88 13.75 1.32 0 10.34-6.53 20.23-15.66 10.83-10 17.09-17.93 17.19-21.78l.42-16.48a.52.52 0 01.52-.51.53.53 0 01.51.54l-.42 16.48c-.17 6.81-16.75 22.52-27.85 31.43-3.32 2.69-9.01 7.06-10.69 7.06zM74.35 71c0 .92-.07 2-.11 3.15-.47 12.66-1.56 42.29.12 45.49 1.57 3 8.06 10.65 15.11 17.85 7.77 7.93 14 13.06 16 13.06s9.15-5.35 17.91-13.31c9.4-8.55 14.79-14.72 15.08-16.18.69-3.44.55-21.43.51-26-2.28 1.83-8.84 7.09-15.41 12.2-16.74 13-17.2 12.51-17.68 12l-.26-.3c-12.41-13.92-11.67-15-11.31-15.56.12-.18.33-.52.59-1 2.46-4.06 5-7.83 6.87-7.95a1.42 1.42 0 011.22.56c1.64 2.05 5.29 10.21 6.28 12.47l29.69-19.35c.18-7.27.19-15.28-.1-16.75-2.57-.33-18.67-.77-35.38-.85-14.41-.08-23.7.13-29.13.47zm32.26 47.49zm-11.45-14.66z",
41
+ fill: "var(--zd_emptysvg_primary_stroke)"
42
+ }));
43
+ }
44
+
45
+ }
46
+ EmptySla.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
+ EmptySla.defaultProps = {
55
+ size: 'large',
56
+ alignHorizontal: true,
57
+ isRender: true,
58
+ className: '',
59
+ dataId: 'EmptySla',
60
+ palette: 'default'
61
+ };
62
+
63
+ if (false) {
64
+ EmptySla.docs = {
65
+ componentGroup: 'SVG'
66
+ };
67
+ }
@@ -1,62 +1,82 @@
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/EmptySnippet.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));
6
+ export default class EmptySnippet extends React.Component {
7
+ render() {
8
+ return /*#__PURE__*/React.createElement(SVG, _extends({
9
+ viewBox: "0 0 200 200",
10
+ name: "snippet"
11
+ }, this.props), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("style", null, ".EmptySnippet_svg__cls-6{fill:var(--zd_emptysvg_secondary_fill)}.EmptySnippet_svg__cls-3,.EmptySnippet_svg__cls-4,.EmptySnippet_svg__cls-5,.EmptySnippet_svg__cls-7,.EmptySnippet_svg__cls-8{fill:none}.EmptySnippet_svg__cls-3{stroke-miterlimit:10;stroke:var(--zd_emptysvg_tiny_circle)}.EmptySnippet_svg__cls-7{stroke-miterlimit:10;stroke:var(--zd_emptysvg_cross)}.EmptySnippet_svg__cls-4,.EmptySnippet_svg__cls-5{stroke:var(--zd_emptysvg_plus);stroke-linecap:round;stroke-linejoin:round}.EmptySnippet_svg__cls-5{stroke:var(--zd_emptysvg_primary_stroke)}.EmptySnippet_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
+ 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: "EmptySnippet_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: "EmptySnippet_svg__cls-4",
31
+ d: "M23.28 100.86l-.35 6.16M20 103.76l6.22.35"
32
+ }), /*#__PURE__*/React.createElement("ellipse", {
33
+ className: "EmptySnippet_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: "EmptySnippet_svg__cls-7",
40
+ d: "M175.6 117.21l4.15 4.6M175.36 121.57l4.64-4.12"
41
+ }), /*#__PURE__*/React.createElement("path", {
42
+ className: "EmptySnippet_svg__cls-6",
43
+ d: "M119.87 139.21s-11.87-8.72 1.14-35c13.82-27.89 38.05-42 47.15-31.63 4.7 5.42-31.72 67.7-48.29 66.63z"
44
+ }), /*#__PURE__*/React.createElement("path", {
45
+ className: "EmptySnippet_svg__cls-5",
46
+ d: "M107.71 147.22l-31.65 6s-7.53-9.06-5-52.27c1.32-22.39-8.82-32.16-8.82-32.16L128.41 55s6.26 11.49 3.83 27.54C129.6 100 115.6 102.17 116.78 134a1.14 1.14 0 002.15.38c5.62-11.24 24.49-47.73 35-52.54 0 0-38.4 48.36-37.33 71.47 0 0 4.51-11.69 4.56-13.86.06-2.47-4.9-2.75-3.87 0s16.48-3.56 29.8-25.06 27.17-36.09 19.56-43.9c-11.08-11.37-44.18 23-49.23 42.72-5.82 22.72 1.45 26.5 5.41 27.16s12.66-8.83 12.66-8.83 2.14 9.75 4.22 11.94l-16.38 2.91"
47
+ }), /*#__PURE__*/React.createElement("path", {
48
+ d: "M123.26 116.23s3.32-11.21 10.42-19.74",
49
+ stroke: "var(--zd_emptysvg_circle_fill)",
50
+ strokeWidth: 3,
51
+ strokeLinecap: "round",
52
+ strokeLinejoin: "round",
53
+ fill: "none"
54
+ }), /*#__PURE__*/React.createElement("path", {
55
+ className: "EmptySnippet_svg__cls-6",
56
+ d: "M94.37 100.23s9.48-1.35 9.48-10.19c0 0-.08 10 8.44 10.19 0 0-8.52-.12-8.49 8 0 .02-.47-8.52-9.43-8zM88.34 121.72s9.48-1.35 9.48-10.19c0 0-.08 10 8.44 10.19 0 0-8.52-.11-8.49 8 0 .02-.47-8.51-9.43-8zM83.26 107s5.38-.77 5.38-5.79c0 0 0 5.68 4.79 5.79 0 0-4.84-.07-4.82 4.55a4.81 4.81 0 00-5.35-4.55z"
57
+ }));
18
58
  }
19
59
 
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
- {
32
- viewBox: '0 0 181.9 139.3',
33
- name: 'roles',
34
- size: size,
35
- className: className,
36
- alignHorizontal: alignHorizontal
37
- },
38
- React.createElement('image', { xlinkHref: image, height: '100%', width: '100%' })
39
- );
40
- }
41
- }]);
42
-
43
- return EmptyRoles;
44
- }(React.Component);
45
-
46
- export default EmptyRoles;
47
-
48
- EmptyRoles.propTypes = {
60
+ }
61
+ EmptySnippet.propTypes = {
49
62
  alignHorizontal: PropTypes.bool,
50
63
  className: PropTypes.string,
51
- size: PropTypes.oneOf('small', 'large')
64
+ dataId: PropTypes.string,
65
+ isRender: PropTypes.bool,
66
+ size: PropTypes.oneOf(['small', 'large']),
67
+ palette: PropTypes.oneOf(['default', 'dark'])
52
68
  };
53
- EmptyRoles.defaultProps = {
69
+ EmptySnippet.defaultProps = {
54
70
  size: 'large',
55
- alignHorizontal: true
71
+ alignHorizontal: true,
72
+ isRender: true,
73
+ className: '',
74
+ dataId: 'emptySnippet',
75
+ palette: 'default'
56
76
  };
57
77
 
58
78
  if (false) {
59
- EmptyRoles.docs = {
79
+ EmptySnippet.docs = {
60
80
  componentGroup: 'SVG'
61
81
  };
62
82
  }
@@ -0,0 +1,39 @@
1
+ .default {
2
+ /* empty svg default palette variables */
3
+ --zd_emptysvg_primary_fill: var(--zdt_svg_default_primary_fill);
4
+ --zd_emptysvg_primary_stroke: var(--zdt_svg_default_primary_stroke);
5
+ --zd_emptysvg_secondary_fill: var(--zdt_svg_default_secondary_fill);
6
+ --zd_emptysvg_secondary_plainfill: var(--zdt_svg_default_secondary_plainfill);
7
+ --zd_emptysvg_plus: var(--zdt_svg_default_plus);
8
+ --zd_emptysvg_cross: var(--zdt_svg_default_cross);
9
+ --zd_emptysvg_medium_circle: var(--zdt_svg_default_medium_circle);
10
+ --zd_emptysvg_tiny_circle: var(--zdt_svg_default_tiny_circle);
11
+ --zd_emptysvg_small_circle: var(--zdt_svg_default_small_circle);
12
+ --zd_emptysvg_circle_fill: var(--zdt_svg_default_circle_fill);
13
+ }
14
+ .dark {
15
+ /* empty svg dark palette variables */
16
+ --zd_emptysvg_primary_fill: var(--zdt_svg_dark_primary_fill);
17
+ --zd_emptysvg_primary_stroke: var(--zdt_svg_dark_primary_stroke);
18
+ --zd_emptysvg_secondary_fill: var(--zdt_svg_dark_secondary_fill);
19
+ --zd_emptysvg_secondary_plainfill: var(--zdt_svg_dark_secondary_plainfill);
20
+ --zd_emptysvg_plus: var(--zdt_svg_dark_plus);
21
+ --zd_emptysvg_cross: var(--zdt_svg_dark_cross);
22
+ --zd_emptysvg_medium_circle: var(--zdt_svg_dark_medium_circle);
23
+ --zd_emptysvg_tiny_circle: var(--zdt_svg_dark_tiny_circle);
24
+ --zd_emptysvg_small_circle: var(--zdt_svg_dark_small_circle);
25
+ --zd_emptysvg_circle_fill: var(--zdt_svg_dark_circle_fill);
26
+ }
27
+ .danger {
28
+ /* empty svg danger palette variables */
29
+ --zd_emptysvg_primary_fill: var(--zdt_svg_danger_primary_fill);
30
+ --zd_emptysvg_primary_stroke: var(--zdt_svg_danger_primary_stroke);
31
+ --zd_emptysvg_secondary_fill: var(--zdt_svg_danger_secondary_fill);
32
+ --zd_emptysvg_secondary_plainfill: var(--zdt_svg_danger_secondary_plainfill);
33
+ --zd_emptysvg_plus: var(--zdt_svg_danger_plus);
34
+ --zd_emptysvg_cross: var(--zdt_svg_danger_cross);
35
+ --zd_emptysvg_medium_circle: var(--zdt_svg_danger_medium_circle);
36
+ --zd_emptysvg_tiny_circle: var(--zdt_svg_danger_tiny_circle);
37
+ --zd_emptysvg_small_circle: var(--zdt_svg_danger_small_circle);
38
+ --zd_emptysvg_circle_fill: var(--zdt_svg_danger_circle_fill);
39
+ }
@@ -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/EmptyTag.svg';
10
-
11
- var EmptyTag = function (_React$Component) {
12
- _inherits(EmptyTag, _React$Component);
13
-
14
- function EmptyTag() {
15
- _classCallCheck(this, EmptyTag);
16
-
17
- return _possibleConstructorReturn(this, (EmptyTag.__proto__ || _Object$getPrototypeOf(EmptyTag)).apply(this, arguments));
6
+ export default class EmptyTag extends React.Component {
7
+ render() {
8
+ return /*#__PURE__*/React.createElement(SVG, _extends({
9
+ viewBox: "0 0 200 200",
10
+ name: "tag"
11
+ }, this.props), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("style", null, ".EmptyTag_svg__cls-7{fill:var(--zd_emptysvg_secondary_fill)}.EmptyTag_svg__cls-4,.EmptyTag_svg__cls-5,.EmptyTag_svg__cls-6,.EmptyTag_svg__cls-8,.EmptyTag_svg__cls-9{fill:none}.EmptyTag_svg__cls-4{stroke-miterlimit:10;stroke:var(--zd_emptysvg_tiny_circle)}.EmptyTag_svg__cls-8{stroke-miterlimit:10;stroke:var(--zd_emptysvg_cross)}.EmptyTag_svg__cls-5,.EmptyTag_svg__cls-6{stroke:var(--zd_emptysvg_plus);stroke-linecap:round;stroke-linejoin:round}.EmptyTag_svg__cls-6{stroke:var(--zd_emptysvg_primary_stroke)}.EmptyTag_svg__cls-9{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: "EmptyTag_svg__cls-4",
25
+ cx: 79.62,
26
+ cy: 29.6,
27
+ rx: 2.12,
28
+ ry: 2.1
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ className: "EmptyTag_svg__cls-5",
31
+ d: "M23.28 100.86l-.35 6.16M20 103.76l6.22.35"
32
+ }), /*#__PURE__*/React.createElement("ellipse", {
33
+ className: "EmptyTag_svg__cls-9",
34
+ cx: 165.88,
35
+ cy: 154.09,
36
+ rx: 2.45,
37
+ ry: 2.43
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ className: "EmptyTag_svg__cls-8",
40
+ d: "M175.6 117.21l4.15 4.6M175.36 121.57l4.64-4.12"
41
+ }), /*#__PURE__*/React.createElement("path", {
42
+ className: "EmptyTag_svg__cls-7",
43
+ d: "M136.3 107.68s-1.24 51.51-2.14 54-45.41-1.83-46.59-3.82 42.71-48.51 48.73-50.18z"
44
+ }), /*#__PURE__*/React.createElement("path", {
45
+ className: "EmptyTag_svg__cls-6",
46
+ d: "M171.12 53.1s-13.85 5.78-26.25-4.34-24.4 19.63-22.61 32.54c1.88 13.51-10.34 16.07-13.93 9.4s5-15.45 16.66-11.06c0 0 5.45 2 7 4.14 8.94 12.74 1.59 22-.92 25s-5.81 6.85-7.71 7.78c-3.52 1.71 7.3-9.4 12.14-8.93v4c-.15 17.83-.08 49.91-2.14 50-3.82.19-36.94-2.54-42.79-2.34a5 5 0 01-5-3.46 2.86 2.86 0 01.19-2.29c1.12-1.95 20.44-20.1 28.67-27.8a.23.23 0 01.33.32c-14.36 16.07-32.8 36-34.33 35.56-2.07-.61-27-24.87-35.67-33.4a4.37 4.37 0 01-.12-6.14c8.5-9 33.4-33.91 43-43.49A16.41 16.41 0 0196.7 74c6.6-1.05 16.18-2.64 17.87-2.46"
47
+ }), /*#__PURE__*/React.createElement("path", {
48
+ className: "EmptyTag_svg__cls-7",
49
+ d: "M78.39 112.58l7.92-1.15 4-7.14a.44.44 0 01.57 0l3.61 7.29 8.64 1c.29 0 .43.28.14.57l-6.48 5.71 1.59 7.86c0 .28-.15.43-.44.28l-6.91-3.57-7.49 3.72c-.15.14-.43 0-.43-.29l.72-8-5.77-5.57a1.08 1.08 0 01.33-.71z"
50
+ }));
18
51
  }
19
52
 
20
- _createClass(EmptyTag, [{
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: 'tag', size: size, className: className, alignHorizontal: alignHorizontal },
32
- React.createElement('image', { xlinkHref: image, height: '100%', width: '100%' })
33
- );
34
- }
35
- }]);
36
-
37
- return EmptyTag;
38
- }(React.Component);
39
-
40
- export default EmptyTag;
41
-
53
+ }
42
54
  EmptyTag.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
  EmptyTag.defaultProps = {
48
63
  size: 'large',
49
- alignHorizontal: true
64
+ alignHorizontal: true,
65
+ isRender: true,
66
+ className: '',
67
+ dataId: 'emptyTag',
68
+ palette: 'default'
50
69
  };
51
70
 
52
71
  if (false) {