@zohodesk/svg 1.1.12 → 1.1.13

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 (56) hide show
  1. package/README.md +4 -0
  2. package/deprecated/june_2022/ErrorUnauthorizedLogin.js +127 -127
  3. package/es/Loader/__tests__/__snapshots__/Loader.spec.js.snap +54 -54
  4. package/es/SVG/__tests__/__snapshots__/SVG.spec.js.snap +328 -328
  5. package/es/css/EmptyStateVariables.module.css +38 -38
  6. package/es/emptystate/version1/__tests__/__snapshots__/version1.spec.js.snap +24 -24
  7. package/es/emptystate/version2/__tests__/__snapshots__/version2.spec.js.snap +208 -208
  8. package/es/emptystate/version3/__tests__/__snapshots__/version3.spec.js.snap +5968 -5968
  9. package/es/errorstate/version1/__tests__/__snapshots__/version1.spec.js.snap +162 -162
  10. package/es/errorstate/version2/__tests__/__snapshots__/version2.spec.js.snap +63 -63
  11. package/es/errorstate/version3/__tests__/__snapshots__/version3.spec.js.snap +698 -698
  12. package/es/v1/emptystate/version3/BusinessHours.js +78 -0
  13. package/es/v1/emptystate/version3/CustomButton.js +76 -0
  14. package/es/v1/emptystate/version3/DataSharing.js +131 -0
  15. package/es/v1/emptystate/version3/HolidayLists.js +69 -0
  16. package/es/v1/emptystate/version3/MyInformation.js +80 -0
  17. package/images/EmptyBusinessHoliday.svg +50 -50
  18. package/images/EmptyBusinessHour.svg +42 -42
  19. package/images/EmptyContactInfo.svg +27 -27
  20. package/images/EmptyCustomDomain.svg +85 -85
  21. package/images/EmptyFilter.svg +62 -62
  22. package/images/EmptyFromAddress.svg +41 -41
  23. package/images/EmptyImportHistory.svg +43 -43
  24. package/images/EmptyNetwork.svg +50 -50
  25. package/images/EmptyRecycleBin.svg +58 -58
  26. package/images/EmptyRoles.svg +30 -30
  27. package/images/EmptySkills.svg +83 -83
  28. package/images/EmptyWebhook.svg +44 -44
  29. package/images/FailureLog.svg +46 -46
  30. package/images/Inconvenience.svg +719 -719
  31. package/images/NoRequestFound.svg +247 -247
  32. package/images/PageNotFound.svg +405 -405
  33. package/images/ReguestUrlNotFound.svg +267 -267
  34. package/images/UnableToProcess.svg +752 -752
  35. package/images/UnauthorizedLogin.svg +1047 -1047
  36. package/images/WillBack.svg +633 -633
  37. package/install.md +11 -11
  38. package/lib/Loader/__tests__/__snapshots__/Loader.spec.js.snap +54 -54
  39. package/lib/SVG/__tests__/__snapshots__/SVG.spec.js.snap +328 -328
  40. package/lib/css/EmptyStateVariables.module.css +38 -38
  41. package/lib/emptystate/version1/__tests__/__snapshots__/version1.spec.js.snap +24 -24
  42. package/lib/emptystate/version2/__tests__/__snapshots__/version2.spec.js.snap +208 -208
  43. package/lib/emptystate/version3/__tests__/__snapshots__/version3.spec.js.snap +5968 -5968
  44. package/lib/errorstate/version1/__tests__/__snapshots__/version1.spec.js.snap +162 -162
  45. package/lib/errorstate/version2/__tests__/__snapshots__/version2.spec.js.snap +63 -63
  46. package/lib/errorstate/version3/__tests__/__snapshots__/version3.spec.js.snap +698 -698
  47. package/lib/v1/emptystate/version3/BusinessHours.js +98 -0
  48. package/lib/v1/emptystate/version3/CustomButton.js +96 -0
  49. package/lib/v1/emptystate/version3/DataSharing.js +151 -0
  50. package/lib/v1/emptystate/version3/HolidayLists.js +89 -0
  51. package/lib/v1/emptystate/version3/MyInformation.js +100 -0
  52. package/package.json +1 -1
  53. package/postPublish.js +8 -8
  54. package/prePublish.js +70 -70
  55. package/react-cli.config.js +19 -19
  56. package/result.json +1 -1
package/install.md CHANGED
@@ -1,11 +1,11 @@
1
- - For New :
2
-
3
- # npm i
4
- # npm run common_package_build
5
-
6
- For Update:
7
-
8
- # npm run download
9
- # npm run common_package_build
10
-
11
-
1
+ - For New :
2
+
3
+ # npm i
4
+ # npm run common_package_build
5
+
6
+ For Update:
7
+
8
+ # npm run download
9
+ # npm run common_package_build
10
+
11
+
@@ -1,54 +1,54 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`Loader componet sholud render the basic strucutr of Loader 1`] = `
4
- <DocumentFragment>
5
- <div
6
- class="center"
7
- >
8
- <div
9
- aria-hidden="true"
10
- class=" loaderWrapper default svgCenter "
11
- >
12
- <svg
13
- data-id="loader"
14
- data-test-id="loader"
15
- height="100%"
16
- style="animation: loaderone 2s linear infinite;"
17
- viewBox="0 0 40 40"
18
- width="100%"
19
- >
20
- <defs>
21
- <style>
22
- @keyframes circleAnimation_1{to{stroke-dashoffset:-82}}@keyframes circleAnimation_2{to{stroke-dashoffset:-50}}@keyframes loaderone{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}
23
- </style>
24
- </defs>
25
- <circle
26
- cx="20"
27
- cy="20"
28
- fill="none"
29
- r="13"
30
- stroke="#089949"
31
- stroke-dasharray="82"
32
- stroke-dashoffset="82"
33
- stroke-linecap="round"
34
- stroke-linejoin="round"
35
- stroke-width="2"
36
- style="animation: circleAnimation_1 1.5s linear infinite; transform-origin: center;"
37
- />
38
- <circle
39
- cx="20"
40
- cy="20"
41
- fill="none"
42
- r="8"
43
- stroke="#17c662"
44
- stroke-dasharray="50"
45
- stroke-dashoffset="50"
46
- stroke-linecap="round"
47
- stroke-linejoin="round"
48
- style="animation: circleAnimation_2 1.2s linear infinite; transform-origin: center;"
49
- />
50
- </svg>
51
- </div>
52
- </div>
53
- </DocumentFragment>
54
- `;
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`Loader componet sholud render the basic strucutr of Loader 1`] = `
4
+ <DocumentFragment>
5
+ <div
6
+ class="center"
7
+ >
8
+ <div
9
+ aria-hidden="true"
10
+ class=" loaderWrapper default svgCenter "
11
+ >
12
+ <svg
13
+ data-id="loader"
14
+ data-test-id="loader"
15
+ height="100%"
16
+ style="animation: loaderone 2s linear infinite;"
17
+ viewBox="0 0 40 40"
18
+ width="100%"
19
+ >
20
+ <defs>
21
+ <style>
22
+ @keyframes circleAnimation_1{to{stroke-dashoffset:-82}}@keyframes circleAnimation_2{to{stroke-dashoffset:-50}}@keyframes loaderone{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}
23
+ </style>
24
+ </defs>
25
+ <circle
26
+ cx="20"
27
+ cy="20"
28
+ fill="none"
29
+ r="13"
30
+ stroke="#089949"
31
+ stroke-dasharray="82"
32
+ stroke-dashoffset="82"
33
+ stroke-linecap="round"
34
+ stroke-linejoin="round"
35
+ stroke-width="2"
36
+ style="animation: circleAnimation_1 1.5s linear infinite; transform-origin: center;"
37
+ />
38
+ <circle
39
+ cx="20"
40
+ cy="20"
41
+ fill="none"
42
+ r="8"
43
+ stroke="#17c662"
44
+ stroke-dasharray="50"
45
+ stroke-dashoffset="50"
46
+ stroke-linecap="round"
47
+ stroke-linejoin="round"
48
+ style="animation: circleAnimation_2 1.2s linear infinite; transform-origin: center;"
49
+ />
50
+ </svg>
51
+ </div>
52
+ </div>
53
+ </DocumentFragment>
54
+ `;