@zohodesk/svg 1.0.0-beta.4 → 1.0.0-beta.40
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.
- package/README.md +142 -1
- package/lib/Provider.js +213 -0
- package/lib/index.js +48 -27
- package/lib/svg/EmptyAccounts.js +108 -36
- package/lib/svg/EmptyActiveCalls.js +79 -43
- package/lib/svg/EmptyActivity.js +79 -38
- package/lib/svg/EmptyAgent.js +79 -35
- package/lib/svg/EmptyAgentQueue.js +128 -0
- package/lib/svg/EmptyApproval.js +128 -0
- package/lib/svg/EmptyArchived.js +88 -35
- package/lib/svg/EmptyAttach.js +79 -35
- package/lib/svg/EmptyBlueprint.js +94 -35
- package/lib/svg/EmptyBusinessHoliday.js +47 -35
- package/lib/svg/EmptyBusinessHour.js +47 -35
- package/lib/svg/EmptyCallHistory.js +81 -43
- package/lib/svg/EmptyCollision.js +122 -0
- package/lib/svg/EmptyColumn.js +128 -0
- package/lib/svg/EmptyContact.js +79 -36
- package/lib/svg/EmptyContract.js +118 -0
- package/lib/svg/EmptyConversation.js +79 -35
- package/lib/svg/EmptyCrm.js +122 -0
- package/lib/svg/EmptyCrmNotes.js +133 -0
- package/lib/svg/EmptyCrmPotential.js +136 -0
- package/lib/svg/EmptyCustomDomain.js +90 -0
- package/lib/svg/EmptyDashboard.js +86 -36
- package/lib/svg/EmptyDepartment.js +122 -0
- package/lib/svg/EmptyError.js +144 -0
- package/lib/svg/EmptyFeed.js +125 -0
- package/lib/svg/EmptyFollowers.js +123 -0
- package/lib/svg/EmptyFrame.js +121 -0
- package/lib/svg/EmptyFromAddress.js +47 -35
- package/lib/svg/EmptyHappiness.js +79 -35
- package/lib/svg/EmptyHistory.js +79 -42
- package/lib/svg/EmptyImportHistory.js +47 -35
- package/lib/svg/EmptyInconvenience.js +91 -0
- package/lib/svg/EmptyInvoice.js +84 -35
- package/lib/svg/EmptyNetwork.js +47 -35
- package/lib/svg/EmptyNotification.js +79 -35
- package/lib/svg/EmptyProducts.js +82 -35
- package/lib/svg/EmptyRecycleBin.js +47 -35
- package/lib/svg/EmptyReply.js +117 -0
- package/lib/svg/EmptyReports.js +85 -35
- package/lib/svg/EmptyRoles.js +47 -35
- package/lib/svg/EmptySchedule.js +164 -0
- package/lib/svg/EmptySearch.js +89 -35
- package/lib/svg/EmptySkills.js +127 -41
- package/lib/svg/EmptySla.js +117 -0
- package/lib/svg/EmptySnippet.js +98 -50
- package/lib/svg/EmptyStateVariables.module.css +39 -0
- package/lib/svg/EmptyTag.js +82 -35
- package/lib/svg/EmptyTask.js +95 -35
- package/lib/svg/EmptyTeams.js +79 -35
- package/lib/svg/EmptyTemplate.js +91 -36
- package/lib/svg/EmptyTicket.js +82 -35
- package/lib/svg/EmptyTimeEntry.js +85 -35
- package/lib/svg/EmptyTimeline.js +122 -0
- package/lib/svg/EmptyTopic.js +85 -35
- package/lib/svg/EmptyUnauthorizedLogin.js +97 -0
- package/lib/svg/EmptyWebhook.js +47 -35
- package/lib/svg/EmptyWillBeRightBack.js +92 -0
- package/lib/svg/ErrorInconvenience.js +163 -0
- package/lib/svg/ErrorOopsSomethingMiss.js +164 -0
- package/lib/svg/ErrorUnableToProcessRequest.js +164 -0
- package/lib/svg/ErrorUnauthorizedLogin.js +163 -0
- package/lib/svg/ErrorUrlNotFound.js +164 -0
- package/lib/svg/ErrorWillBeRightBack.js +163 -0
- package/lib/svg/Extractor.js +116 -0
- package/lib/svg/FailureLog.js +47 -35
- package/lib/svg/Import.js +132 -0
- package/lib/svg/Loader.js +77 -33
- package/lib/svg/NoRequestFound.js +47 -43
- package/lib/svg/NotImpossible.js +129 -0
- package/lib/svg/PageNotFound.js +49 -44
- package/lib/svg/Predictor.js +123 -0
- package/lib/svg/SVG.js +88 -81
- package/lib/svg/SVG.module.css +9 -2
- package/lib/svg/SvgLoader.js +66 -0
- package/lib/svg/UnableToProcessRequest.js +48 -43
- package/lib/svg/UnauthorizedLogin.js +48 -43
- package/lib/svg/UrlNotFound.js +49 -44
- package/lib/svg/WillBeRightBack.js +49 -44
- package/lib/svg/ZiaAnamoly.js +117 -0
- package/lib/svg/docs/SVG__common.docs.js +98 -0
- package/lib/svg/docs/SVG__default.docs.js +327 -657
- package/lib/svg/docs/SVG__errorstate.docs.js +129 -0
- package/lib/svg/docs/SVGdocstyle.module.css +8 -0
- package/lib/svg/images/EmptyCustomDomain.svg +85 -0
- package/lib/svg/images/EmptySkills.svg +75 -67
- package/lib/svg/utils.js +26 -0
- package/package.json +20 -6
- package/preprocess/index.js +2 -0
- package/preprocess/json/svgAppearanceVariableJson.js +151 -0
- package/preprocess/json/svgThemeVariableJson.js +71 -0
- package/preprocess/svgAppearanceColors.js +63 -0
- package/preprocess/svgThemeColors.js +92 -0
- package/src/Provider.js +141 -0
- package/src/index.js +5 -1
- package/src/svg/EmptyAccounts.js +100 -9
- package/src/svg/EmptyActiveCalls.js +63 -14
- package/src/svg/EmptyActivity.js +63 -9
- package/src/svg/EmptyAgent.js +65 -9
- package/src/svg/EmptyAgentQueue.js +94 -0
- package/src/svg/EmptyApproval.js +85 -0
- package/src/svg/EmptyArchived.js +74 -8
- package/src/svg/EmptyAttach.js +65 -9
- package/src/svg/EmptyBlueprint.js +85 -8
- package/src/svg/EmptyBusinessHoliday.js +11 -6
- package/src/svg/EmptyBusinessHour.js +11 -6
- package/src/svg/EmptyCallHistory.js +60 -14
- package/src/svg/EmptyCollision.js +85 -0
- package/src/svg/EmptyColumn.js +91 -0
- package/src/svg/EmptyContact.js +64 -9
- package/src/svg/EmptyContract.js +81 -0
- package/src/svg/EmptyConversation.js +65 -9
- package/src/svg/EmptyCrm.js +84 -0
- package/src/svg/EmptyCrmNotes.js +96 -0
- package/src/svg/EmptyCrmPotential.js +100 -0
- package/src/svg/EmptyCustomDomain.js +33 -0
- package/src/svg/EmptyDashboard.js +71 -10
- package/src/svg/EmptyDepartment.js +87 -0
- package/src/svg/EmptyError.js +42 -0
- package/src/svg/EmptyFeed.js +87 -0
- package/src/svg/EmptyFollowers.js +85 -0
- package/src/svg/EmptyFrame.js +83 -0
- package/src/svg/EmptyFromAddress.js +11 -8
- package/src/svg/EmptyHappiness.js +65 -9
- package/src/svg/EmptyHistory.js +63 -15
- package/src/svg/EmptyImportHistory.js +11 -8
- package/src/svg/{Inconvenience.js → EmptyInconvenience.js} +7 -8
- package/src/svg/EmptyInvoice.js +70 -9
- package/src/svg/EmptyNetwork.js +11 -8
- package/src/svg/EmptyNotification.js +65 -10
- package/src/svg/EmptyProducts.js +68 -9
- package/src/svg/EmptyRecycleBin.js +10 -7
- package/src/svg/EmptyReply.js +81 -0
- package/src/svg/EmptyReports.js +70 -9
- package/src/svg/EmptyRoles.js +11 -8
- package/src/svg/EmptySchedule.js +131 -0
- package/src/svg/EmptySearch.js +75 -9
- package/src/svg/EmptySkills.js +95 -14
- package/src/svg/EmptySla.js +81 -0
- package/src/svg/EmptySnippet.js +78 -17
- package/src/svg/EmptyStateVariables.module.css +39 -0
- package/src/svg/EmptyTag.js +67 -8
- package/src/svg/EmptyTask.js +78 -10
- package/src/svg/EmptyTeams.js +65 -9
- package/src/svg/EmptyTemplate.js +69 -11
- package/src/svg/EmptyTicket.js +69 -10
- package/src/svg/EmptyTimeEntry.js +72 -10
- package/src/svg/EmptyTimeline.js +85 -0
- package/src/svg/EmptyTopic.js +72 -9
- package/src/svg/EmptyUnauthorizedLogin.js +44 -0
- package/src/svg/EmptyWebhook.js +11 -8
- package/src/svg/EmptyWillBeRightBack.js +44 -0
- package/src/svg/ErrorInconvenience.js +128 -0
- package/src/svg/ErrorOopsSomethingMiss.js +128 -0
- package/src/svg/ErrorUnableToProcessRequest.js +128 -0
- package/src/svg/ErrorUnauthorizedLogin.js +127 -0
- package/src/svg/ErrorUrlNotFound.js +128 -0
- package/src/svg/ErrorWillBeRightBack.js +127 -0
- package/src/svg/Extractor.js +76 -0
- package/src/svg/FailureLog.js +11 -8
- package/src/svg/Import.js +85 -0
- package/src/svg/Loader.js +63 -9
- package/src/svg/NoRequestFound.js +7 -8
- package/src/svg/NotImpossible.js +80 -0
- package/src/svg/PageNotFound.js +8 -8
- package/src/svg/Predictor.js +78 -0
- package/src/svg/SVG.js +36 -17
- package/src/svg/SVG.module.css +9 -2
- package/src/svg/SvgLoader.js +21 -0
- package/src/svg/UnableToProcessRequest.js +8 -9
- package/src/svg/UnauthorizedLogin.js +7 -8
- package/src/svg/UrlNotFound.js +9 -10
- package/src/svg/WillBeRightBack.js +9 -10
- package/src/svg/ZiaAnamoly.js +76 -0
- package/src/svg/docs/SVG__common.docs.js +47 -0
- package/src/svg/docs/SVG__default.docs.js +172 -228
- package/src/svg/docs/SVG__errorstate.docs.js +75 -0
- package/src/svg/docs/SVGdocstyle.module.css +8 -0
- package/src/svg/images/EmptyCustomDomain.svg +85 -0
- package/src/svg/images/EmptySkills.svg +75 -67
- package/src/svg/utils.js +15 -0
- package/.DS_Store +0 -0
- package/es/index.js +0 -6
- package/es/svg/EmptyAccounts.js +0 -57
- package/es/svg/EmptyActiveCalls.js +0 -64
- package/es/svg/EmptyActivity.js +0 -59
- package/es/svg/EmptyAgent.js +0 -56
- package/es/svg/EmptyArchived.js +0 -55
- package/es/svg/EmptyAttach.js +0 -56
- package/es/svg/EmptyBlueprint.js +0 -56
- package/es/svg/EmptyBusinessHoliday.js +0 -56
- package/es/svg/EmptyBusinessHour.js +0 -56
- package/es/svg/EmptyCallHistory.js +0 -64
- package/es/svg/EmptyCloud.js +0 -55
- package/es/svg/EmptyCloudDanger.js +0 -131
- package/es/svg/EmptyContact.js +0 -57
- package/es/svg/EmptyConversation.js +0 -56
- package/es/svg/EmptyDashboard.js +0 -56
- package/es/svg/EmptyEdition.js +0 -56
- package/es/svg/EmptyFromAddress.js +0 -56
- package/es/svg/EmptyHappiness.js +0 -56
- package/es/svg/EmptyHistory.js +0 -63
- package/es/svg/EmptyImportHistory.js +0 -56
- package/es/svg/EmptyInvoice.js +0 -56
- package/es/svg/EmptyNetwork.js +0 -56
- package/es/svg/EmptyNotification.js +0 -56
- package/es/svg/EmptyProducts.js +0 -56
- package/es/svg/EmptyRecycleBin.js +0 -56
- package/es/svg/EmptyReports.js +0 -56
- package/es/svg/EmptyRoles.js +0 -56
- package/es/svg/EmptySearch.js +0 -56
- package/es/svg/EmptySkills.js +0 -62
- package/es/svg/EmptySnippet.js +0 -62
- package/es/svg/EmptyTag.js +0 -56
- package/es/svg/EmptyTask.js +0 -56
- package/es/svg/EmptyTeams.js +0 -56
- package/es/svg/EmptyTemplate.js +0 -57
- package/es/svg/EmptyTicket.js +0 -56
- package/es/svg/EmptyTimeEntry.js +0 -56
- package/es/svg/EmptyTopic.js +0 -56
- package/es/svg/EmptyWebhook.js +0 -56
- package/es/svg/FailureLog.js +0 -56
- package/es/svg/Inconvenience.js +0 -65
- package/es/svg/InvalidUrl.js +0 -780
- package/es/svg/Loader.js +0 -50
- package/es/svg/NoRequestFound.js +0 -65
- package/es/svg/PageNotFound.js +0 -65
- package/es/svg/SVG.js +0 -102
- package/es/svg/SVG.module.css +0 -19
- package/es/svg/SitBack.js +0 -54
- package/es/svg/UnableToProcessRequest.js +0 -65
- package/es/svg/UnauthorizedLogin.js +0 -65
- package/es/svg/UrlNotFound.js +0 -65
- package/es/svg/WillBeRightBack.js +0 -65
- package/es/svg/docs/SVG__default.docs.js +0 -605
- package/es/svg/images/EmptyAccounts.svg +0 -55
- package/es/svg/images/EmptyActiveCalls.svg +0 -57
- package/es/svg/images/EmptyActivity.svg +0 -85
- package/es/svg/images/EmptyAgent.svg +0 -52
- package/es/svg/images/EmptyArchived.svg +0 -38
- package/es/svg/images/EmptyAttach.svg +0 -39
- package/es/svg/images/EmptyBlueprint.svg +0 -78
- package/es/svg/images/EmptyBusinessHoliday.svg +0 -50
- package/es/svg/images/EmptyBusinessHour.svg +0 -42
- package/es/svg/images/EmptyCallHistory.svg +0 -46
- package/es/svg/images/EmptyCloud.svg +0 -38
- package/es/svg/images/EmptyContact.svg +0 -33
- package/es/svg/images/EmptyContactInfo.svg +0 -27
- package/es/svg/images/EmptyConversation.svg +0 -38
- package/es/svg/images/EmptyDashboard.svg +0 -42
- package/es/svg/images/EmptyEdition.svg +0 -76
- package/es/svg/images/EmptyFilter.svg +0 -62
- package/es/svg/images/EmptyFromAddress.svg +0 -41
- package/es/svg/images/EmptyHappiness.svg +0 -58
- package/es/svg/images/EmptyHistory.svg +0 -44
- package/es/svg/images/EmptyImportHistory.svg +0 -43
- package/es/svg/images/EmptyInvoice.svg +0 -45
- package/es/svg/images/EmptyNetwork.svg +0 -50
- package/es/svg/images/EmptyNotification.svg +0 -38
- package/es/svg/images/EmptyProducts.svg +0 -57
- package/es/svg/images/EmptyRecycleBin.svg +0 -58
- package/es/svg/images/EmptyReports.svg +0 -39
- package/es/svg/images/EmptyRoles.svg +0 -30
- package/es/svg/images/EmptySearch.svg +0 -37
- package/es/svg/images/EmptySkills.svg +0 -75
- package/es/svg/images/EmptySnippet.svg +0 -46
- package/es/svg/images/EmptyTag.svg +0 -43
- package/es/svg/images/EmptyTask.svg +0 -42
- package/es/svg/images/EmptyTeams.svg +0 -39
- package/es/svg/images/EmptyTemplate.svg +0 -39
- package/es/svg/images/EmptyTicket.svg +0 -33
- package/es/svg/images/EmptyTimeEntry.svg +0 -96
- package/es/svg/images/EmptyTopic.svg +0 -41
- package/es/svg/images/EmptyWebhook.svg +0 -44
- package/es/svg/images/FailureLog.svg +0 -46
- package/es/svg/images/Inconvenience.svg +0 -719
- package/es/svg/images/Loader.svg +0 -62
- package/es/svg/images/NoRequestFound.svg +0 -247
- package/es/svg/images/PageNotFound.svg +0 -405
- package/es/svg/images/ReguestUrlNotFound.svg +0 -267
- package/es/svg/images/SitBack.svg +0 -464
- package/es/svg/images/UnableToProcess.svg +0 -752
- package/es/svg/images/UnauthorizedLogin.svg +0 -1047
- package/es/svg/images/WillBack.svg +0 -633
- package/lib/svg/EmptyCloud.js +0 -77
- package/lib/svg/EmptyCloudDanger.js +0 -147
- package/lib/svg/EmptyEdition.js +0 -78
- package/lib/svg/Inconvenience.js +0 -87
- package/lib/svg/InvalidUrl.js +0 -799
- package/lib/svg/SitBack.js +0 -76
- package/lib/svg/images/EmptyAccounts.svg +0 -55
- package/lib/svg/images/EmptyActiveCalls.svg +0 -57
- package/lib/svg/images/EmptyActivity.svg +0 -85
- package/lib/svg/images/EmptyAgent.svg +0 -52
- package/lib/svg/images/EmptyArchived.svg +0 -38
- package/lib/svg/images/EmptyAttach.svg +0 -39
- package/lib/svg/images/EmptyBlueprint.svg +0 -78
- package/lib/svg/images/EmptyCallHistory.svg +0 -46
- package/lib/svg/images/EmptyCloud.svg +0 -38
- package/lib/svg/images/EmptyContact.svg +0 -33
- package/lib/svg/images/EmptyConversation.svg +0 -38
- package/lib/svg/images/EmptyDashboard.svg +0 -42
- package/lib/svg/images/EmptyEdition.svg +0 -76
- package/lib/svg/images/EmptyHappiness.svg +0 -58
- package/lib/svg/images/EmptyHistory.svg +0 -44
- package/lib/svg/images/EmptyInvoice.svg +0 -45
- package/lib/svg/images/EmptyNotification.svg +0 -38
- package/lib/svg/images/EmptyProducts.svg +0 -57
- package/lib/svg/images/EmptyReports.svg +0 -39
- package/lib/svg/images/EmptySearch.svg +0 -37
- package/lib/svg/images/EmptySnippet.svg +0 -46
- package/lib/svg/images/EmptyTag.svg +0 -43
- package/lib/svg/images/EmptyTask.svg +0 -42
- package/lib/svg/images/EmptyTeams.svg +0 -39
- package/lib/svg/images/EmptyTemplate.svg +0 -39
- package/lib/svg/images/EmptyTicket.svg +0 -33
- package/lib/svg/images/EmptyTimeEntry.svg +0 -96
- package/lib/svg/images/EmptyTopic.svg +0 -41
- package/lib/svg/images/Loader.svg +0 -62
- package/lib/svg/images/SitBack.svg +0 -464
- package/src/.DS_Store +0 -0
- package/src/svg/.DS_Store +0 -0
- package/src/svg/EmptyCloud.js +0 -28
- package/src/svg/EmptyCloudDanger.js +0 -104
- package/src/svg/EmptyEdition.js +0 -29
- package/src/svg/InvalidUrl.js +0 -755
- package/src/svg/SitBack.js +0 -29
- package/src/svg/images/EmptyAccounts.svg +0 -55
- package/src/svg/images/EmptyActiveCalls.svg +0 -57
- package/src/svg/images/EmptyActivity.svg +0 -85
- package/src/svg/images/EmptyAgent.svg +0 -52
- package/src/svg/images/EmptyArchived.svg +0 -38
- package/src/svg/images/EmptyAttach.svg +0 -39
- package/src/svg/images/EmptyBlueprint.svg +0 -78
- package/src/svg/images/EmptyCallHistory.svg +0 -46
- package/src/svg/images/EmptyCloud.svg +0 -38
- package/src/svg/images/EmptyContact.svg +0 -33
- package/src/svg/images/EmptyConversation.svg +0 -38
- package/src/svg/images/EmptyDashboard.svg +0 -42
- package/src/svg/images/EmptyEdition.svg +0 -76
- package/src/svg/images/EmptyHappiness.svg +0 -58
- package/src/svg/images/EmptyHistory.svg +0 -44
- package/src/svg/images/EmptyInvoice.svg +0 -45
- package/src/svg/images/EmptyNotification.svg +0 -38
- package/src/svg/images/EmptyProducts.svg +0 -57
- package/src/svg/images/EmptyReports.svg +0 -39
- package/src/svg/images/EmptySearch.svg +0 -37
- package/src/svg/images/EmptySnippet.svg +0 -46
- package/src/svg/images/EmptyTag.svg +0 -43
- package/src/svg/images/EmptyTask.svg +0 -42
- package/src/svg/images/EmptyTeams.svg +0 -39
- package/src/svg/images/EmptyTemplate.svg +0 -39
- package/src/svg/images/EmptyTicket.svg +0 -33
- package/src/svg/images/EmptyTimeEntry.svg +0 -96
- package/src/svg/images/EmptyTopic.svg +0 -41
- package/src/svg/images/Loader.svg +0 -62
- package/src/svg/images/SitBack.svg +0 -464
package/README.md
CHANGED
|
@@ -1,6 +1,147 @@
|
|
|
1
1
|
# DOT SVG
|
|
2
2
|
|
|
3
|
-
This Bundle
|
|
3
|
+
This Bundle Contains EmptyState Images.
|
|
4
|
+
|
|
5
|
+
# 1.0.0-beta.39 , # 1.0.0-beta.40
|
|
6
|
+
|
|
7
|
+
- Appearance css moved to assets
|
|
8
|
+
# 1.0.0-beta.38
|
|
9
|
+
|
|
10
|
+
- bg,shadow,text,border based variables removed and renamed.
|
|
11
|
+
|
|
12
|
+
# 1.0.0-beta.37
|
|
13
|
+
|
|
14
|
+
- Loader => Converted to Pure Component
|
|
15
|
+
|
|
16
|
+
# 1.0.0-beta.36
|
|
17
|
+
|
|
18
|
+
- Night mode SVG CTA primary stroke color value changed
|
|
19
|
+
|
|
20
|
+
# 1.0.0-beta.35
|
|
21
|
+
|
|
22
|
+
- EmptyError added
|
|
23
|
+
|
|
24
|
+
# 1.0.0-beta.34
|
|
25
|
+
|
|
26
|
+
- Import, ErrorInconvenience, ErrorOopsSomethingMiss, ErrorUnableToProcessRequest, ErrorUnauthorizedLogin, ErrorUrlNotFound, ErrorWillBeRightBack Svg added
|
|
27
|
+
- Docs Ui Fix
|
|
28
|
+
- Theme Files Import Separated
|
|
29
|
+
- Theme color values updated
|
|
30
|
+
- EmptyInconvenience => Svg Image Changed as Old Svg
|
|
31
|
+
- Inconvenience removed
|
|
32
|
+
- EmptyPageNotFound, EmptyUnableToProcess, EmptyUrlFound, InvalidUrl moved to deprecated
|
|
33
|
+
|
|
34
|
+
# 1.0.0-beta.33
|
|
35
|
+
|
|
36
|
+
- Palette Based Folder Structure Changed.
|
|
37
|
+
- data-theme changed to data-mode
|
|
38
|
+
- data-palette changed to data-theme
|
|
39
|
+
# 1.0.0-beta.32
|
|
40
|
+
|
|
41
|
+
- Palette Based Color System Implemented
|
|
42
|
+
# 1.0.0-beta.31
|
|
43
|
+
|
|
44
|
+
- EmptyDeparment Added
|
|
45
|
+
- Predictor, ZiaAnamoly, Extractor added
|
|
46
|
+
# 1.0.0-beta.30
|
|
47
|
+
|
|
48
|
+
- EmptySkills Image Updated
|
|
49
|
+
# 1.0.0-beta.29
|
|
50
|
+
|
|
51
|
+
- EmptyWillBeRightBack,EmptyUnauthorizedLogin,EmptyUrlNotFound,EmptyInconvenience,EmptyPageNotFound,EmptyUnableToProcess added
|
|
52
|
+
# 1.0.0-beta.28
|
|
53
|
+
|
|
54
|
+
- EmptyAgentQueue added
|
|
55
|
+
# 1.0.0-beta.27
|
|
56
|
+
|
|
57
|
+
- EmptySla,EmptyContract,EmptyReply Added
|
|
58
|
+
# 1.0.0-beta.26
|
|
59
|
+
|
|
60
|
+
- Loader => Layout issue Fixed
|
|
61
|
+
# 1.0.0-beta.25
|
|
62
|
+
|
|
63
|
+
- TemplateIcon SVG fix
|
|
64
|
+
# 1.0.0-beta.24
|
|
65
|
+
|
|
66
|
+
- Loader Svg converted to js
|
|
67
|
+
# 1.0.0-beta.23
|
|
68
|
+
|
|
69
|
+
- EmptyState.module.css file name changed as EmptyStateVariables.module.css to avoid dup file name
|
|
70
|
+
|
|
71
|
+
# 1.0.0-beta.22
|
|
72
|
+
|
|
73
|
+
- Theme changes added in EmptyBlueprint,EmptyTemplate
|
|
74
|
+
- EmptyCloud,EmptyCloudDanger,EmptyEdition Deleted
|
|
75
|
+
- danger palatte added in EmptyFrame
|
|
76
|
+
|
|
77
|
+
# 1.0.0-beta.21
|
|
78
|
+
|
|
79
|
+
- Dark Mode Variable Introduced
|
|
80
|
+
|
|
81
|
+
# 1.0.0-beta.19
|
|
82
|
+
|
|
83
|
+
- Cli Update
|
|
84
|
+
|
|
85
|
+
# 1.0.0-beta.18
|
|
86
|
+
|
|
87
|
+
- EmptyCollision, EmptyCrmNotes, EmptyCrmPotential, EmptyTimeline
|
|
88
|
+
|
|
89
|
+
# 1.0.0-beta.17
|
|
90
|
+
|
|
91
|
+
- EmptyApproval Added
|
|
92
|
+
- EmptyHistory Updated
|
|
93
|
+
|
|
94
|
+
# 1.0.0-beta.16
|
|
95
|
+
|
|
96
|
+
- EmptySchedule , EmptyColumn added
|
|
97
|
+
|
|
98
|
+
# 1.0.0-beta.15
|
|
99
|
+
|
|
100
|
+
- DefaultProps Fix
|
|
101
|
+
|
|
102
|
+
# 1.0.0-beta.14
|
|
103
|
+
|
|
104
|
+
- EmptyFrame Added
|
|
105
|
+
|
|
106
|
+
# 1.0.0-beta.13
|
|
107
|
+
|
|
108
|
+
- svgLoader Removed
|
|
109
|
+
|
|
110
|
+
# 1.0.0-beta.12
|
|
111
|
+
|
|
112
|
+
- Loads both dark mode image and ordinary image in the component.
|
|
113
|
+
|
|
114
|
+
# 1.0.0-beta.11
|
|
115
|
+
|
|
116
|
+
- SvgLoader function - replaced dynamic variable with static path. This is check version.
|
|
117
|
+
|
|
118
|
+
# 1.0.0-beta.10
|
|
119
|
+
|
|
120
|
+
- SvgLoader function fix - previous fix not worked - removing promises and using synchronous loading.
|
|
121
|
+
|
|
122
|
+
# 1.0.0-beta.9
|
|
123
|
+
|
|
124
|
+
- SvgLoader Function fix - replacing "import" with "require"
|
|
125
|
+
|
|
126
|
+
# 1.0.0-beta.8
|
|
127
|
+
|
|
128
|
+
- emptyDashboard issue fix
|
|
129
|
+
|
|
130
|
+
# 1.0.0-beta.7
|
|
131
|
+
|
|
132
|
+
-EmptyCrm,EmptyFollower,EmptyFeed, EmptyCustomDomain and Night Mode Svgs Added, Dynamic Loader Added
|
|
133
|
+
|
|
134
|
+
# 1.0.0-beta.6
|
|
135
|
+
|
|
136
|
+
- wasted
|
|
137
|
+
|
|
138
|
+
# 1.0.0-beta.5
|
|
139
|
+
|
|
140
|
+
- dataId Added, EmtyDanger SVG updated
|
|
141
|
+
|
|
142
|
+
# 1.0.0-beta.5
|
|
143
|
+
|
|
144
|
+
- SVG Loader Middle Fix
|
|
4
145
|
|
|
5
146
|
# 1.0.0-beta.4
|
|
6
147
|
|
package/lib/Provider.js
ADDED
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
|
11
|
+
|
|
12
|
+
var _AppContainer = _interopRequireDefault(require("@zohodesk/components/lib/AppContainer/AppContainer"));
|
|
13
|
+
|
|
14
|
+
var _Layout = require("@zohodesk/components/lib/Layout");
|
|
15
|
+
|
|
16
|
+
var _Switch = _interopRequireDefault(require("@zohodesk/components/lib/Switch/Switch"));
|
|
17
|
+
|
|
18
|
+
require("@zohodesk/components/assets/Appearance/default/mode/defaultMode.module.css");
|
|
19
|
+
|
|
20
|
+
require("@zohodesk/components/assets/Appearance/dark/mode/darkMode.module.css");
|
|
21
|
+
|
|
22
|
+
require("../assets/Appearance/default/themes/blue/blueDefaultCTATheme.module.css");
|
|
23
|
+
|
|
24
|
+
require("../assets/Appearance/default/themes/green/greenDefaultCTATheme.module.css");
|
|
25
|
+
|
|
26
|
+
require("../assets/Appearance/default/themes/orange/orangeDefaultCTATheme.module.css");
|
|
27
|
+
|
|
28
|
+
require("../assets/Appearance/default/themes/red/redDefaultCTATheme.module.css");
|
|
29
|
+
|
|
30
|
+
require("../assets/Appearance/default/themes/yellow/yellowDefaultCTATheme.module.css");
|
|
31
|
+
|
|
32
|
+
require("../assets/Appearance/default/mode/defaultEmptyStates.module.css");
|
|
33
|
+
|
|
34
|
+
require("../assets/Appearance/dark/themes/blue/blueDarkCTATheme.module.css");
|
|
35
|
+
|
|
36
|
+
require("../assets/Appearance/dark/themes/green/greenDarkCTATheme.module.css");
|
|
37
|
+
|
|
38
|
+
require("../assets/Appearance/dark/themes/orange/orangeDarkCTATheme.module.css");
|
|
39
|
+
|
|
40
|
+
require("../assets/Appearance/dark/themes/red/redDarkCTATheme.module.css");
|
|
41
|
+
|
|
42
|
+
require("../assets/Appearance/dark/themes/yellow/yellowDarkCTATheme.module.css");
|
|
43
|
+
|
|
44
|
+
require("../assets/Appearance/dark/mode/darkEmptyStates.module.css");
|
|
45
|
+
|
|
46
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
47
|
+
|
|
48
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
49
|
+
|
|
50
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
51
|
+
|
|
52
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
53
|
+
|
|
54
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } Object.defineProperty(subClass, "prototype", { value: Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }), writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
55
|
+
|
|
56
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
57
|
+
|
|
58
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
59
|
+
|
|
60
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
61
|
+
|
|
62
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
63
|
+
|
|
64
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
65
|
+
|
|
66
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
67
|
+
|
|
68
|
+
var Provider = /*#__PURE__*/function (_React$Component) {
|
|
69
|
+
_inherits(Provider, _React$Component);
|
|
70
|
+
|
|
71
|
+
var _super = _createSuper(Provider);
|
|
72
|
+
|
|
73
|
+
function Provider(props) {
|
|
74
|
+
var _this;
|
|
75
|
+
|
|
76
|
+
_classCallCheck(this, Provider);
|
|
77
|
+
|
|
78
|
+
_this = _super.call(this, props);
|
|
79
|
+
_this.state = {
|
|
80
|
+
appearanceName: 'default',
|
|
81
|
+
themeName: 'blue'
|
|
82
|
+
};
|
|
83
|
+
_this.switchMode = _this.switchMode.bind(_assertThisInitialized(_this));
|
|
84
|
+
_this.setTheme = _this.setTheme.bind(_assertThisInitialized(_this));
|
|
85
|
+
return _this;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
_createClass(Provider, [{
|
|
89
|
+
key: "switchMode",
|
|
90
|
+
value: function switchMode() {
|
|
91
|
+
var appearanceName = this.state.appearanceName;
|
|
92
|
+
|
|
93
|
+
if (appearanceName == 'default') {
|
|
94
|
+
this.setState({
|
|
95
|
+
appearanceName: 'dark'
|
|
96
|
+
});
|
|
97
|
+
} else {
|
|
98
|
+
this.setState({
|
|
99
|
+
appearanceName: 'default'
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}, {
|
|
104
|
+
key: "setTheme",
|
|
105
|
+
value: function setTheme(theme) {
|
|
106
|
+
this.setState({
|
|
107
|
+
themeName: theme
|
|
108
|
+
});
|
|
109
|
+
}
|
|
110
|
+
}, {
|
|
111
|
+
key: "render",
|
|
112
|
+
value: function render() {
|
|
113
|
+
var _this2 = this;
|
|
114
|
+
|
|
115
|
+
var _this$state = this.state,
|
|
116
|
+
appearanceName = _this$state.appearanceName,
|
|
117
|
+
themeName = _this$state.themeName;
|
|
118
|
+
var themeClass = {
|
|
119
|
+
width: '20px',
|
|
120
|
+
height: '20px',
|
|
121
|
+
borderRadius: '3px',
|
|
122
|
+
display: 'flex',
|
|
123
|
+
border: '1px solid #ccc',
|
|
124
|
+
margin: '0 5px',
|
|
125
|
+
cursor: 'pointer',
|
|
126
|
+
backgroundColor: '#0a73eb'
|
|
127
|
+
};
|
|
128
|
+
var green = {
|
|
129
|
+
backgroundColor: '#26a942'
|
|
130
|
+
};
|
|
131
|
+
var red = {
|
|
132
|
+
backgroundColor: '#de3535'
|
|
133
|
+
};
|
|
134
|
+
var orange = {
|
|
135
|
+
backgroundColor: '#e57717'
|
|
136
|
+
};
|
|
137
|
+
var yellow = {
|
|
138
|
+
backgroundColor: '#e8b923'
|
|
139
|
+
};
|
|
140
|
+
return /*#__PURE__*/_react["default"].createElement(_AppContainer["default"], {
|
|
141
|
+
customProps: {
|
|
142
|
+
ExtraProps: {
|
|
143
|
+
'data-mode': appearanceName,
|
|
144
|
+
'data-theme': themeName
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}, /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
148
|
+
scroll: "vertical"
|
|
149
|
+
}, this.props.children), /*#__PURE__*/_react["default"].createElement("div", {
|
|
150
|
+
style: {
|
|
151
|
+
position: 'fixed',
|
|
152
|
+
bottom: '0',
|
|
153
|
+
backgroundColor: '#272727',
|
|
154
|
+
padding: '10px',
|
|
155
|
+
borderRadius: '15px 15px 0 0',
|
|
156
|
+
minWidth: '100px',
|
|
157
|
+
textAlign: 'center',
|
|
158
|
+
left: '50%',
|
|
159
|
+
transform: 'translate(-50%)',
|
|
160
|
+
boxShadow: '0 0 3px #000',
|
|
161
|
+
fontSize: '12px',
|
|
162
|
+
zIndex: '3',
|
|
163
|
+
display: 'flex',
|
|
164
|
+
alignItems: 'center'
|
|
165
|
+
}
|
|
166
|
+
}, /*#__PURE__*/_react["default"].createElement("div", null, /*#__PURE__*/_react["default"].createElement(_Switch["default"], {
|
|
167
|
+
id: "switchMode",
|
|
168
|
+
text: "Light/Night Mode",
|
|
169
|
+
labelSize: "small",
|
|
170
|
+
onChange: this.switchMode,
|
|
171
|
+
checked: appearanceName == 'dark'
|
|
172
|
+
})), /*#__PURE__*/_react["default"].createElement("div", {
|
|
173
|
+
style: {
|
|
174
|
+
display: 'flex'
|
|
175
|
+
}
|
|
176
|
+
}, /*#__PURE__*/_react["default"].createElement("span", {
|
|
177
|
+
title: "Blue Theme",
|
|
178
|
+
style: themeClass,
|
|
179
|
+
onClick: function onClick() {
|
|
180
|
+
return _this2.setTheme('blue');
|
|
181
|
+
}
|
|
182
|
+
}), /*#__PURE__*/_react["default"].createElement("span", {
|
|
183
|
+
title: "Green Theme",
|
|
184
|
+
style: Object.assign({}, themeClass, green),
|
|
185
|
+
onClick: function onClick() {
|
|
186
|
+
return _this2.setTheme('green');
|
|
187
|
+
}
|
|
188
|
+
}), /*#__PURE__*/_react["default"].createElement("span", {
|
|
189
|
+
title: "Red Theme",
|
|
190
|
+
style: Object.assign({}, themeClass, red),
|
|
191
|
+
onClick: function onClick() {
|
|
192
|
+
return _this2.setTheme('red');
|
|
193
|
+
}
|
|
194
|
+
}), /*#__PURE__*/_react["default"].createElement("span", {
|
|
195
|
+
title: "Orange Theme",
|
|
196
|
+
style: Object.assign({}, themeClass, orange),
|
|
197
|
+
onClick: function onClick() {
|
|
198
|
+
return _this2.setTheme('orange');
|
|
199
|
+
}
|
|
200
|
+
}), /*#__PURE__*/_react["default"].createElement("span", {
|
|
201
|
+
title: "Yellow Theme",
|
|
202
|
+
style: Object.assign({}, themeClass, yellow),
|
|
203
|
+
onClick: function onClick() {
|
|
204
|
+
return _this2.setTheme('yellow');
|
|
205
|
+
}
|
|
206
|
+
}))));
|
|
207
|
+
}
|
|
208
|
+
}]);
|
|
209
|
+
|
|
210
|
+
return Provider;
|
|
211
|
+
}(_react["default"].Component);
|
|
212
|
+
|
|
213
|
+
exports["default"] = Provider;
|
package/lib/index.js
CHANGED
|
@@ -1,52 +1,73 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
|
|
7
|
-
var _react = require('react');
|
|
8
|
-
|
|
9
|
-
Object.defineProperty(exports, 'React', {
|
|
6
|
+
Object.defineProperty(exports, "React", {
|
|
10
7
|
enumerable: true,
|
|
11
8
|
get: function get() {
|
|
12
|
-
return
|
|
9
|
+
return _react["default"];
|
|
13
10
|
}
|
|
14
11
|
});
|
|
15
|
-
|
|
16
|
-
var _reactDom = require('react-dom');
|
|
17
|
-
|
|
18
|
-
Object.defineProperty(exports, 'ReactDOM', {
|
|
12
|
+
Object.defineProperty(exports, "ReactDOM", {
|
|
19
13
|
enumerable: true,
|
|
20
14
|
get: function get() {
|
|
21
|
-
return
|
|
15
|
+
return _reactDom["default"];
|
|
22
16
|
}
|
|
23
17
|
});
|
|
24
|
-
|
|
25
|
-
var _server = require('react-dom/server');
|
|
26
|
-
|
|
27
|
-
Object.defineProperty(exports, 'renderToStaticMarkup', {
|
|
18
|
+
Object.defineProperty(exports, "SVG", {
|
|
28
19
|
enumerable: true,
|
|
29
20
|
get: function get() {
|
|
30
|
-
return
|
|
21
|
+
return _SVG["default"];
|
|
31
22
|
}
|
|
32
23
|
});
|
|
33
|
-
|
|
34
|
-
var _SVG = require('./svg/SVG');
|
|
35
|
-
|
|
36
|
-
Object.defineProperty(exports, 'SVG', {
|
|
24
|
+
Object.defineProperty(exports, "SVG__common", {
|
|
37
25
|
enumerable: true,
|
|
38
26
|
get: function get() {
|
|
39
|
-
return
|
|
27
|
+
return _SVG__common["default"];
|
|
40
28
|
}
|
|
41
29
|
});
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
30
|
+
Object.defineProperty(exports, "SVG__emptystate", {
|
|
31
|
+
enumerable: true,
|
|
32
|
+
get: function get() {
|
|
33
|
+
return _SVG__default["default"];
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
Object.defineProperty(exports, "SVG__errorstate", {
|
|
46
37
|
enumerable: true,
|
|
47
38
|
get: function get() {
|
|
48
|
-
return
|
|
39
|
+
return _SVG__errorstate["default"];
|
|
49
40
|
}
|
|
50
41
|
});
|
|
42
|
+
Object.defineProperty(exports, "_provider", {
|
|
43
|
+
enumerable: true,
|
|
44
|
+
get: function get() {
|
|
45
|
+
return _Provider["default"];
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
Object.defineProperty(exports, "renderToStaticMarkup", {
|
|
49
|
+
enumerable: true,
|
|
50
|
+
get: function get() {
|
|
51
|
+
return _server.renderToStaticMarkup;
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
var _react = _interopRequireDefault(require("react"));
|
|
56
|
+
|
|
57
|
+
var _reactDom = _interopRequireDefault(require("react-dom"));
|
|
58
|
+
|
|
59
|
+
var _server = require("react-dom/server");
|
|
60
|
+
|
|
61
|
+
require("@zohodesk/variables/assets/sizeVariables.module.css");
|
|
62
|
+
|
|
63
|
+
var _Provider = _interopRequireDefault(require("./Provider"));
|
|
64
|
+
|
|
65
|
+
var _SVG = _interopRequireDefault(require("./svg/SVG"));
|
|
66
|
+
|
|
67
|
+
var _SVG__default = _interopRequireDefault(require("./svg/docs/SVG__default.docs"));
|
|
68
|
+
|
|
69
|
+
var _SVG__common = _interopRequireDefault(require("./svg/docs/SVG__common.docs"));
|
|
70
|
+
|
|
71
|
+
var _SVG__errorstate = _interopRequireDefault(require("./svg/docs/SVG__errorstate.docs"));
|
|
51
72
|
|
|
52
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
73
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
package/lib/svg/EmptyAccounts.js
CHANGED
|
@@ -1,75 +1,147 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
2
4
|
|
|
3
5
|
Object.defineProperty(exports, "__esModule", {
|
|
4
6
|
value: true
|
|
5
7
|
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
|
6
11
|
|
|
7
|
-
var
|
|
12
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
8
13
|
|
|
9
|
-
var
|
|
14
|
+
var _SVG = _interopRequireDefault(require("./SVG"));
|
|
10
15
|
|
|
11
|
-
|
|
16
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
12
17
|
|
|
13
|
-
var
|
|
18
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
14
19
|
|
|
15
|
-
|
|
20
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
16
21
|
|
|
17
|
-
var
|
|
22
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
18
23
|
|
|
19
|
-
|
|
24
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
20
25
|
|
|
21
|
-
|
|
26
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } Object.defineProperty(subClass, "prototype", { value: Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }), writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
22
27
|
|
|
23
|
-
|
|
28
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
24
29
|
|
|
25
|
-
function
|
|
30
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
26
31
|
|
|
27
|
-
function
|
|
32
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
28
33
|
|
|
29
|
-
function
|
|
34
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
30
35
|
|
|
31
|
-
function
|
|
36
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
32
37
|
|
|
33
|
-
|
|
38
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
39
|
+
|
|
40
|
+
var EmptyAccounts = /*#__PURE__*/function (_React$Component) {
|
|
34
41
|
_inherits(EmptyAccounts, _React$Component);
|
|
35
42
|
|
|
43
|
+
var _super = _createSuper(EmptyAccounts);
|
|
44
|
+
|
|
36
45
|
function EmptyAccounts() {
|
|
37
46
|
_classCallCheck(this, EmptyAccounts);
|
|
38
47
|
|
|
39
|
-
return
|
|
48
|
+
return _super.apply(this, arguments);
|
|
40
49
|
}
|
|
41
50
|
|
|
42
51
|
_createClass(EmptyAccounts, [{
|
|
43
|
-
key:
|
|
52
|
+
key: "render",
|
|
44
53
|
value: function render() {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
54
|
+
return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
|
|
55
|
+
viewBox: "0 0 200 200",
|
|
56
|
+
name: "accounts"
|
|
57
|
+
}, this.props), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("style", null, ".EmptyAccounts_svg__cls-7,.EmptyAccounts_svg__cls-9{fill:var(--zd_emptysvg_secondary_fill)}.EmptyAccounts_svg__cls-3,.EmptyAccounts_svg__cls-4,.EmptyAccounts_svg__cls-5,.EmptyAccounts_svg__cls-6,.EmptyAccounts_svg__cls-8{fill:none}.EmptyAccounts_svg__cls-3{stroke-miterlimit:10;stroke:var(--zd_emptysvg_cross)}.EmptyAccounts_svg__cls-8{stroke-miterlimit:10;stroke:var(--zd_emptysvg_tiny_circle)}.EmptyAccounts_svg__cls-4,.EmptyAccounts_svg__cls-5{stroke:var(--zd_emptysvg_plus);stroke-linecap:round;stroke-linejoin:round}.EmptyAccounts_svg__cls-5{stroke:var(--zd_emptysvg_primary_stroke)}.EmptyAccounts_svg__cls-6{stroke:var(--zd_emptysvg_small_circle);stroke-linecap:round;stroke-linejoin:round}")), /*#__PURE__*/_react["default"].createElement("path", {
|
|
58
|
+
d: "M86.51 62.52S133.43 31.67 157.17 41s40 87.37-26.06 122.41S35.22 122.19 35 108.68c-.28-13.07 0-44.23 51.51-46.16z",
|
|
59
|
+
opacity: 0.05,
|
|
60
|
+
fill: "var(--zd_emptysvg_primary_fill)"
|
|
61
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
62
|
+
cx: 156.04,
|
|
63
|
+
cy: 31.69,
|
|
64
|
+
rx: 3.54,
|
|
65
|
+
ry: 3.51,
|
|
66
|
+
strokeMiterlimit: 10,
|
|
67
|
+
stroke: "var(--zd_emptysvg_medium_circle)",
|
|
68
|
+
fill: "none"
|
|
69
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
70
|
+
className: "EmptyAccounts_svg__cls-8",
|
|
71
|
+
cx: 79.62,
|
|
72
|
+
cy: 29.6,
|
|
73
|
+
rx: 2.12,
|
|
74
|
+
ry: 2.1
|
|
75
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
76
|
+
className: "EmptyAccounts_svg__cls-4",
|
|
77
|
+
d: "M23.28 100.86l-.35 6.16M20 103.76l6.22.35"
|
|
78
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
79
|
+
className: "EmptyAccounts_svg__cls-6",
|
|
80
|
+
cx: 165.88,
|
|
81
|
+
cy: 154.09,
|
|
82
|
+
rx: 2.45,
|
|
83
|
+
ry: 2.43
|
|
84
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
85
|
+
className: "EmptyAccounts_svg__cls-3",
|
|
86
|
+
d: "M175.6 117.21l4.15 4.6M175.36 121.57l4.64-4.12"
|
|
87
|
+
}), /*#__PURE__*/_react["default"].createElement("g", {
|
|
88
|
+
opacity: 0.3
|
|
89
|
+
}, /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
90
|
+
className: "EmptyAccounts_svg__cls-7",
|
|
91
|
+
cx: 70.01,
|
|
92
|
+
cy: 92.77,
|
|
93
|
+
rx: 13.53,
|
|
94
|
+
ry: 13.42
|
|
95
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
96
|
+
className: "EmptyAccounts_svg__cls-7",
|
|
97
|
+
d: "M128.12 74.12s5.37-7.3 17.62-.47 3.25 28-11.37 26.24c0 0-4.75-.87-6.36-2-.01-.02 4.36-11.67.11-23.77z"
|
|
98
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
99
|
+
className: "EmptyAccounts_svg__cls-7",
|
|
100
|
+
cx: 104.52,
|
|
101
|
+
cy: 81.92,
|
|
102
|
+
rx: 18.72,
|
|
103
|
+
ry: 18.56
|
|
104
|
+
})), /*#__PURE__*/_react["default"].createElement("g", null, /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
105
|
+
className: "EmptyAccounts_svg__cls-9",
|
|
106
|
+
cx: 70.01,
|
|
107
|
+
cy: 92.77,
|
|
108
|
+
rx: 13.53,
|
|
109
|
+
ry: 13.42
|
|
110
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
111
|
+
className: "EmptyAccounts_svg__cls-9",
|
|
112
|
+
d: "M128.12 74.12s5.37-7.3 17.62-.47 3.25 28-11.37 26.24c0 0-4.75-.87-6.36-2-.01-.02 4.36-11.67.11-23.77z"
|
|
113
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
114
|
+
className: "EmptyAccounts_svg__cls-9",
|
|
115
|
+
cx: 104.52,
|
|
116
|
+
cy: 81.92,
|
|
117
|
+
rx: 18.72,
|
|
118
|
+
ry: 18.56
|
|
119
|
+
})), /*#__PURE__*/_react["default"].createElement("path", {
|
|
120
|
+
className: "EmptyAccounts_svg__cls-5",
|
|
121
|
+
d: "M43.12 137.27s26.19 17.89 43.6 1.66a6.4 6.4 0 002-4c.65-6.42 1-24.27-14.68-29.35a17.28 17.28 0 007.88-8.3c2.6-6.49 1.34-16.24-9-18.38-17.24-3.58-19.41 15-13 22.12l3.78 4.56s-18.89 12.48-16.32 23.95c0 0 13.38 12.34 30.06 7.68 0 0 23 28.3 52.82 2.18a7.2 7.2 0 002.43-5.47c-.07-8.11-1.8-29-17-36.76 0 0-13.62 12.11-26.54-3.49s3-32.37 14.56-31 23 5.12 19.49 30.5c0 0 7.75 12.35 20.9 3.5s5.17-20.73 1.65-23.06-13.1-5.77-17.62.47a35.44 35.44 0 01-7.18 35.44 29.18 29.18 0 00-6 10.41c-.88 2.75-1.33 5.66-.39 7.71 2.27 4.95 26.73 11 40.87-2.31a4.65 4.65 0 001.47-3.5c-.06-4.26-1.32-13.89-10.87-18.18 0 0 11.51 20.26 2.12 32.84"
|
|
122
|
+
}));
|
|
56
123
|
}
|
|
57
124
|
}]);
|
|
58
125
|
|
|
59
126
|
return EmptyAccounts;
|
|
60
|
-
}(
|
|
61
|
-
|
|
62
|
-
exports.default = EmptyAccounts;
|
|
63
|
-
|
|
127
|
+
}(_react["default"].Component);
|
|
64
128
|
|
|
129
|
+
exports["default"] = EmptyAccounts;
|
|
65
130
|
EmptyAccounts.propTypes = {
|
|
66
|
-
|
|
67
|
-
className:
|
|
68
|
-
|
|
131
|
+
alignHorizontal: _propTypes["default"].bool,
|
|
132
|
+
className: _propTypes["default"].string,
|
|
133
|
+
dataId: _propTypes["default"].string,
|
|
134
|
+
isRender: _propTypes["default"].bool,
|
|
135
|
+
size: _propTypes["default"].oneOf(['small', 'large']),
|
|
136
|
+
palette: _propTypes["default"].oneOf(['default', 'dark'])
|
|
69
137
|
};
|
|
70
138
|
EmptyAccounts.defaultProps = {
|
|
71
139
|
size: 'large',
|
|
72
|
-
alignHorizontal: true
|
|
140
|
+
alignHorizontal: true,
|
|
141
|
+
isRender: true,
|
|
142
|
+
className: '',
|
|
143
|
+
dataId: 'emptyAccounts',
|
|
144
|
+
palette: 'default'
|
|
73
145
|
};
|
|
74
146
|
|
|
75
147
|
if (false) {
|