@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
|
@@ -0,0 +1,90 @@
|
|
|
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 _propTypes = _interopRequireDefault(require("prop-types"));
|
|
13
|
+
|
|
14
|
+
var _SVG = _interopRequireDefault(require("./SVG"));
|
|
15
|
+
|
|
16
|
+
var _EmptyCustomDomain = _interopRequireDefault(require("./images/EmptyCustomDomain.svg"));
|
|
17
|
+
|
|
18
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
19
|
+
|
|
20
|
+
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); }
|
|
21
|
+
|
|
22
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
23
|
+
|
|
24
|
+
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); } }
|
|
25
|
+
|
|
26
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
27
|
+
|
|
28
|
+
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); }
|
|
29
|
+
|
|
30
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
31
|
+
|
|
32
|
+
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); }; }
|
|
33
|
+
|
|
34
|
+
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); }
|
|
35
|
+
|
|
36
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
37
|
+
|
|
38
|
+
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; } }
|
|
39
|
+
|
|
40
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
41
|
+
|
|
42
|
+
var EmptyCustomDomain = /*#__PURE__*/function (_React$Component) {
|
|
43
|
+
_inherits(EmptyCustomDomain, _React$Component);
|
|
44
|
+
|
|
45
|
+
var _super = _createSuper(EmptyCustomDomain);
|
|
46
|
+
|
|
47
|
+
function EmptyCustomDomain() {
|
|
48
|
+
_classCallCheck(this, EmptyCustomDomain);
|
|
49
|
+
|
|
50
|
+
return _super.apply(this, arguments);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
_createClass(EmptyCustomDomain, [{
|
|
54
|
+
key: "render",
|
|
55
|
+
value: function render() {
|
|
56
|
+
return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
|
|
57
|
+
viewBox: "0 0 298 123.46",
|
|
58
|
+
name: "CustomDomain"
|
|
59
|
+
}, this.props), /*#__PURE__*/_react["default"].createElement("image", {
|
|
60
|
+
xlinkHref: _EmptyCustomDomain["default"],
|
|
61
|
+
height: "100%",
|
|
62
|
+
width: "100%"
|
|
63
|
+
}));
|
|
64
|
+
}
|
|
65
|
+
}]);
|
|
66
|
+
|
|
67
|
+
return EmptyCustomDomain;
|
|
68
|
+
}(_react["default"].Component);
|
|
69
|
+
|
|
70
|
+
exports["default"] = EmptyCustomDomain;
|
|
71
|
+
EmptyCustomDomain.propTypes = {
|
|
72
|
+
alignHorizontal: _propTypes["default"].bool,
|
|
73
|
+
className: _propTypes["default"].string,
|
|
74
|
+
dataId: _propTypes["default"].string,
|
|
75
|
+
isRender: _propTypes["default"].bool,
|
|
76
|
+
size: _propTypes["default"].oneOf(['small', 'large'])
|
|
77
|
+
};
|
|
78
|
+
EmptyCustomDomain.defaultProps = {
|
|
79
|
+
size: 'large',
|
|
80
|
+
alignHorizontal: true,
|
|
81
|
+
isRender: true,
|
|
82
|
+
className: '',
|
|
83
|
+
dataId: 'emptyCustomDomain'
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
if (false) {
|
|
87
|
+
EmptyCustomDomain.docs = {
|
|
88
|
+
componentGroup: 'SVG'
|
|
89
|
+
};
|
|
90
|
+
}
|
|
@@ -1,76 +1,126 @@
|
|
|
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;
|
|
6
9
|
|
|
7
|
-
var
|
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
11
|
|
|
9
|
-
var
|
|
12
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
10
13
|
|
|
11
|
-
var
|
|
14
|
+
var _SVG = _interopRequireDefault(require("./SVG"));
|
|
12
15
|
|
|
13
|
-
|
|
16
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
14
17
|
|
|
15
|
-
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); }
|
|
16
19
|
|
|
17
|
-
|
|
20
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
18
21
|
|
|
19
|
-
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); } }
|
|
20
23
|
|
|
21
|
-
|
|
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; }
|
|
22
25
|
|
|
23
|
-
|
|
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); }
|
|
24
27
|
|
|
25
|
-
function
|
|
28
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
26
29
|
|
|
27
|
-
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); }; }
|
|
31
|
+
|
|
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); }
|
|
33
|
+
|
|
34
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
28
35
|
|
|
29
|
-
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; } }
|
|
30
37
|
|
|
31
|
-
function
|
|
38
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
32
39
|
|
|
33
|
-
var EmptyDashboard = function (_React$Component) {
|
|
40
|
+
var EmptyDashboard = /*#__PURE__*/function (_React$Component) {
|
|
34
41
|
_inherits(EmptyDashboard, _React$Component);
|
|
35
42
|
|
|
43
|
+
var _super = _createSuper(EmptyDashboard);
|
|
44
|
+
|
|
36
45
|
function EmptyDashboard() {
|
|
37
46
|
_classCallCheck(this, EmptyDashboard);
|
|
38
47
|
|
|
39
|
-
return
|
|
48
|
+
return _super.apply(this, arguments);
|
|
40
49
|
}
|
|
41
50
|
|
|
42
51
|
_createClass(EmptyDashboard, [{
|
|
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: "dashboard"
|
|
57
|
+
}, this.props), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("style", null, ".EmptyDashboard_svg__cls-3,.EmptyDashboard_svg__cls-4,.EmptyDashboard_svg__cls-5{fill:none}.EmptyDashboard_svg__cls-3{stroke-miterlimit:10;stroke:var(--zd_emptysvg_cross)}.EmptyDashboard_svg__cls-5{stroke-miterlimit:10;stroke:var(--zd_emptysvg_tiny_circle)}.EmptyDashboard_svg__cls-4{stroke:var(--zd_emptysvg_plus);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: "EmptyDashboard_svg__cls-5",
|
|
71
|
+
cx: 79.62,
|
|
72
|
+
cy: 29.6,
|
|
73
|
+
rx: 2.12,
|
|
74
|
+
ry: 2.1
|
|
75
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
76
|
+
className: "EmptyDashboard_svg__cls-4",
|
|
77
|
+
d: "M23.28 100.86l-.35 6.16M20 103.76l6.22.35"
|
|
78
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
79
|
+
cx: 165.88,
|
|
80
|
+
cy: 154.09,
|
|
81
|
+
rx: 2.45,
|
|
82
|
+
ry: 2.43,
|
|
83
|
+
stroke: "var(--zd_emptysvg_small_circle)",
|
|
84
|
+
strokeLinecap: "round",
|
|
85
|
+
strokeLinejoin: "round",
|
|
86
|
+
fill: "none"
|
|
87
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
88
|
+
className: "EmptyDashboard_svg__cls-3",
|
|
89
|
+
d: "M175.6 117.21l4.15 4.6M175.36 121.57l4.64-4.12"
|
|
90
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
91
|
+
d: "M67.14 106.83s13.93-23.57 17.23-19 8.87 4.81 16-13.18v32.18z",
|
|
92
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
93
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
94
|
+
d: "M71.27 107l29.07-.19V74.65c-7.1 18-12.68 17.74-16 13.18s-17.23 19-17.23 19h-3a2.76 2.76 0 01-2.76-2.63c-.43-9.12-1.55-38.91 1.84-40 4-1.34 43.31-1.34 44.66 1s1.53 43 0 43.72-15-1-15.35 0 .49 39-1.15 40.47c-1 .93-31.29 1.41-32.22 0-.53-.82-.22-30.38 1.24-31.46 2.63-2 92.29-4 92.23-.26 0 1.93 1.08 45 .12 46.1-.82 1-36.74 1-46.73 1a2.58 2.58 0 01-2.58-2.56c-.11-8.24-.39-34.81-.46-40.92a1.23 1.23 0 011.26-1.25c2.55 0 8.52-.31 15.26.06 0 0-1.43-43.62-1.08-44.33 1-2.06 33-.38 34.33.39s1.54 29.34 0 30.55c-1.1.87-23.5.29-29.74.12a1.7 1.7 0 01-1.65-1.66l-.77-26.94",
|
|
95
|
+
stroke: "var(--zd_emptysvg_primary_stroke)",
|
|
96
|
+
strokeLinecap: "round",
|
|
97
|
+
strokeLinejoin: "round",
|
|
98
|
+
fill: "none"
|
|
99
|
+
}));
|
|
56
100
|
}
|
|
57
101
|
}]);
|
|
58
102
|
|
|
59
103
|
return EmptyDashboard;
|
|
60
|
-
}(
|
|
61
|
-
|
|
62
|
-
exports.default = EmptyDashboard;
|
|
63
|
-
|
|
104
|
+
}(_react["default"].Component);
|
|
64
105
|
|
|
106
|
+
exports["default"] = EmptyDashboard;
|
|
65
107
|
EmptyDashboard.propTypes = {
|
|
66
|
-
|
|
67
|
-
className:
|
|
68
|
-
|
|
108
|
+
alignHorizontal: _propTypes["default"].bool,
|
|
109
|
+
className: _propTypes["default"].string,
|
|
110
|
+
dataId: _propTypes["default"].string,
|
|
111
|
+
isRender: _propTypes["default"].bool,
|
|
112
|
+
size: _propTypes["default"].oneOf(['small', 'large']),
|
|
113
|
+
palette: _propTypes["default"].oneOf(['default', 'dark'])
|
|
69
114
|
};
|
|
70
115
|
EmptyDashboard.defaultProps = {
|
|
71
116
|
size: 'large',
|
|
72
|
-
alignHorizontal: true
|
|
117
|
+
alignHorizontal: true,
|
|
118
|
+
isRender: true,
|
|
119
|
+
className: '',
|
|
120
|
+
dataId: 'emptyDashboard',
|
|
121
|
+
palette: 'default'
|
|
73
122
|
};
|
|
123
|
+
|
|
74
124
|
if (false) {
|
|
75
125
|
EmptyDashboard.docs = {
|
|
76
126
|
componentGroup: 'SVG'
|
|
@@ -0,0 +1,122 @@
|
|
|
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 _propTypes = _interopRequireDefault(require("prop-types"));
|
|
13
|
+
|
|
14
|
+
var _SVG = _interopRequireDefault(require("./SVG"));
|
|
15
|
+
|
|
16
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
17
|
+
|
|
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); }
|
|
19
|
+
|
|
20
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
21
|
+
|
|
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); } }
|
|
23
|
+
|
|
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; }
|
|
25
|
+
|
|
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); }
|
|
27
|
+
|
|
28
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
29
|
+
|
|
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); }; }
|
|
31
|
+
|
|
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); }
|
|
33
|
+
|
|
34
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
35
|
+
|
|
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; } }
|
|
37
|
+
|
|
38
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
39
|
+
|
|
40
|
+
var EmptyDepartment = /*#__PURE__*/function (_React$Component) {
|
|
41
|
+
_inherits(EmptyDepartment, _React$Component);
|
|
42
|
+
|
|
43
|
+
var _super = _createSuper(EmptyDepartment);
|
|
44
|
+
|
|
45
|
+
function EmptyDepartment() {
|
|
46
|
+
_classCallCheck(this, EmptyDepartment);
|
|
47
|
+
|
|
48
|
+
return _super.apply(this, arguments);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
_createClass(EmptyDepartment, [{
|
|
52
|
+
key: "render",
|
|
53
|
+
value: function render() {
|
|
54
|
+
return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
|
|
55
|
+
viewBox: "0 0 200 200",
|
|
56
|
+
name: "department"
|
|
57
|
+
}, this.props), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("style", null, ".EmptyDepartment_svg__cls-4{fill:var(--zd_emptysvg_primary_fill)}.EmptyDepartment_svg__cls-6{fill:var(--zd_emptysvg_secondary_fill)}.EmptyDepartment_svg__cls-3{fill:var(--zd_emptysvg_tiny_circle)}.EmptyDepartment_svg__cls-5{fill:var(--zd_emptysvg_medium_circle)}")), /*#__PURE__*/_react["default"].createElement("path", {
|
|
58
|
+
d: "M85.65 63.06s46.91-30.84 70.66-21.55 40 87.37-26.07 122.41-95.89-41.18-96.14-54.69c-.24-13.07 0-44.23 51.55-46.17z",
|
|
59
|
+
opacity: 0.05,
|
|
60
|
+
className: "EmptyDepartment_svg__cls-4"
|
|
61
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
62
|
+
d: "M155.17 36.25a4 4 0 114-4 4 4 0 01-4 4zm0-7a3 3 0 103 3 3 3 0 00-3-3.02z",
|
|
63
|
+
className: "EmptyDepartment_svg__cls-5"
|
|
64
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
65
|
+
className: "EmptyDepartment_svg__cls-3",
|
|
66
|
+
d: "M78.75 32.74a2.6 2.6 0 112.62-2.59 2.6 2.6 0 01-2.62 2.59zm0-4.19a1.6 1.6 0 101.62 1.6 1.6 1.6 0 00-1.62-1.6z"
|
|
67
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
68
|
+
fill: "var(--zd_emptysvg_plus)",
|
|
69
|
+
d: "M22.07 108.07a.5.5 0 01-.47-.53l.35-6.16a.49.49 0 01.53-.47.5.5 0 01.47.52l-.35 6.17a.51.51 0 01-.53.47z"
|
|
70
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
71
|
+
fill: "var(--zd_emptysvg_plus)",
|
|
72
|
+
d: "M25.35 105.16l-6.22-.35a.5.5 0 01.06-1l6.22.35a.5.5 0 010 1z"
|
|
73
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
74
|
+
className: "EmptyDepartment_svg__cls-5",
|
|
75
|
+
d: "M165 157.57a2.93 2.93 0 112.95-2.93 2.95 2.95 0 01-2.95 2.93zm0-4.86a1.93 1.93 0 101.95 1.93 1.94 1.94 0 00-1.95-1.93z"
|
|
76
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
77
|
+
className: "EmptyDepartment_svg__cls-3",
|
|
78
|
+
transform: "rotate(-42.02 176.822 120.063)",
|
|
79
|
+
d: "M176.31 116.96h1v6.2h-1z"
|
|
80
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
81
|
+
className: "EmptyDepartment_svg__cls-3",
|
|
82
|
+
transform: "rotate(-41.56 176.809 120.062)",
|
|
83
|
+
d: "M173.71 119.56h6.2v1h-6.2z"
|
|
84
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
85
|
+
fill: "var(--zd_emptysvg_primary_stroke)",
|
|
86
|
+
d: "M124.9 96.51a.51.51 0 00.13-.37c-.85-11.83-1.23-24.68-.42-26 1.46-.43 6.63-.52 8.53-.52a.51.51 0 00.5-.5 24 24 0 011.73-7.88c2.2-5.3 6-8.38 11.35-9.14a21.68 21.68 0 0118.55 6.25 15.15 15.15 0 014.3 13.53 19.59 19.59 0 01-11.46 13.74 17.84 17.84 0 01-16.72-.94 15.28 15.28 0 01-7.2-12.56.5.5 0 10-1 .06 16.31 16.31 0 007.67 13.35 18.81 18.81 0 0017.64 1 20.56 20.56 0 0012-14.46 16.31 16.31 0 00-4.5-14.38 22.7 22.7 0 00-19.41-6.55c-12.23 1.75-13.74 14.8-13.92 17.51-1.63 0-6.91.09-8.44.59-1.69.57-1.07 14.57-.23 26.44l-7.92.16a.49.49 0 00-.48.44 45.47 45.47 0 01-3.22 12.64c6.14-17.46-.88-29.52-8-38.27-6.93-8.48-21.61-12.48-34.89-9.51C56.92 64 48 72.34 45.1 84.16 41 100.41 45 113.85 56.62 123c.16.14.3.24.4.32a.64.64 0 00.12.21.59.59 0 00.9-.18.51.51 0 00-.18-.6c-.44-2.1-.29-17.64-.19-28 .08-7.78.15-14.49 0-15.94A.85.85 0 0158 78c1.67-1.65 8.84-1.44 12.18-1.17a6.64 6.64 0 00.24 4.47c1 2.27 3.27 4 6.79 5.12 3.76 1.21 6.9.93 9.32-.84a9 9 0 003.61-6.44c.61-.9 8.28.13 10.8.47 1.31.18 2.3.31 2.84.34 1 2.28 1 25.08.74 39.3-.83 1.29-9.37 13.61-30.24 11.81-26-2.25-30.8-27.48-30.84-27.73a.5.5 0 10-1 .17c0 .27 4.95 26.24 31.74 28.56 1.44.12 2.83.18 4.16.18 19.43 0 27-12.45 27.09-12.58a.45.45 0 00.07-.25c.16-9 .54-38.63-1.06-40.25A.65.65 0 00104 79c-.4 0-1.56-.16-2.91-.34-5.62-.76-10.37-1.3-11.58-.25a1 1 0 00-.35.75 8.11 8.11 0 01-3.21 5.65c-2.15 1.57-5 1.8-8.43.7-3.22-1-5.3-2.57-6.16-4.55a5.66 5.66 0 010-4.32.53.53 0 000-.46.5.5 0 00-.39-.25c-1.14-.11-11.19-1-13.62 1.4a1.88 1.88 0 00-.58 1.53c.13 1.4.06 8.09 0 15.84-.16 16.74-.15 24.18.1 27.15C43 110.64 43.34 95.33 46.07 84.4 48.92 73 57.52 64.84 69.68 62.12c12.94-2.9 27.19 1 33.89 9.16 7.79 9.53 15.42 23.09 5.22 43.48a.48.48 0 00.15.62.5.5 0 00.64 0c.21-.21 5.24-5.08 7-18.52l8-.16a.52.52 0 00.32-.19z"
|
|
87
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
88
|
+
fill: "var(--zd_emptysvg_primary_stroke)",
|
|
89
|
+
d: "M169.59 117.92a19.31 19.31 0 00-22.27-10.69c-12.22 2.89-13.58 15.15-13.73 18.44a11.94 11.94 0 00-1.51.31.52.52 0 00-.36.57 16.87 16.87 0 00.41 1.78 43.94 43.94 0 01-7.79-2.21l.19-27.76a.5.5 0 00-.5-.5.5.5 0 00-.5.5l-.19 28.1a.5.5 0 00.32.47 42.33 42.33 0 008.83 2.46c2.35 6.22 8.83 12.1 15.72 13.85a17.51 17.51 0 004.31.55c5.29 0 10.15-2.58 14-7.53 4.7-6.11 5.74-12.26 3.07-18.34zm-36.8 8.91c.26-.06.55-.11.84-.15a.49.49 0 00.46.29.52.52 0 00.47-.37 1.84 1.84 0 011.3.29c.19.2.09.59 0 .89a.84.84 0 01-.49.47 4.82 4.82 0 01-2.13.21 13.5 13.5 0 01-.45-1.63zm32.91 8.82c-5.88 7.6-12.62 7.79-17.25 6.62a23.24 23.24 0 01-14.86-12.8 5 5 0 002.16-.31 1.8 1.8 0 001-1 1.75 1.75 0 00-.18-1.92 2.6 2.6 0 00-2-.62c.15-3.24 1.52-14.68 13-17.39a18.34 18.34 0 0121.13 10.12c2.49 5.65 1.49 11.5-3 17.3z"
|
|
90
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
91
|
+
className: "EmptyDepartment_svg__cls-6",
|
|
92
|
+
d: "M150.11 76.26c-4.09-2.45-4.55 2-6.8 2.2-3.42.29-7.57-.45-7.92-5.67-.62-9 7.36-19.63 21.46-14.52s7.57 22.9-.82 22.9c-3.14 0-4.76-4.17-5.92-4.91zM152.85 131.68c-4.09-2.45-4.54 2-6.8 2.19-3.42.3-7.56-.44-7.92-5.67-.61-9 7.36-19.62 21.47-14.51s7.56 22.9-.82 22.9c-3.15 0-4.78-4.21-5.93-4.91zM59.89 125.62s-1.69-46.78-.22-46.36 7-1.05 8.22.63 4 12.43 13.28 10.54 10.53-9.27 10.53-9.27l9.91.63 1.26 37.5s-15.38 18.13-42.98 6.33z"
|
|
93
|
+
}));
|
|
94
|
+
}
|
|
95
|
+
}]);
|
|
96
|
+
|
|
97
|
+
return EmptyDepartment;
|
|
98
|
+
}(_react["default"].Component);
|
|
99
|
+
|
|
100
|
+
exports["default"] = EmptyDepartment;
|
|
101
|
+
EmptyDepartment.propTypes = {
|
|
102
|
+
alignHorizontal: _propTypes["default"].bool,
|
|
103
|
+
className: _propTypes["default"].string,
|
|
104
|
+
dataId: _propTypes["default"].string,
|
|
105
|
+
isRender: _propTypes["default"].bool,
|
|
106
|
+
size: _propTypes["default"].oneOf(['small', 'large']),
|
|
107
|
+
palette: _propTypes["default"].oneOf(['default', 'dark'])
|
|
108
|
+
};
|
|
109
|
+
EmptyDepartment.defaultProps = {
|
|
110
|
+
size: 'large',
|
|
111
|
+
alignHorizontal: true,
|
|
112
|
+
isRender: true,
|
|
113
|
+
className: '',
|
|
114
|
+
dataId: 'emptyDepartment',
|
|
115
|
+
palette: 'default'
|
|
116
|
+
};
|
|
117
|
+
|
|
118
|
+
if (false) {
|
|
119
|
+
EmptyDepartment.docs = {
|
|
120
|
+
componentGroup: 'SVG'
|
|
121
|
+
};
|
|
122
|
+
}
|
|
@@ -0,0 +1,144 @@
|
|
|
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 _propTypes = _interopRequireDefault(require("prop-types"));
|
|
13
|
+
|
|
14
|
+
var _SVG = _interopRequireDefault(require("./SVG"));
|
|
15
|
+
|
|
16
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
17
|
+
|
|
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); }
|
|
19
|
+
|
|
20
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
21
|
+
|
|
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); } }
|
|
23
|
+
|
|
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; }
|
|
25
|
+
|
|
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); }
|
|
27
|
+
|
|
28
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
29
|
+
|
|
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); }; }
|
|
31
|
+
|
|
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); }
|
|
33
|
+
|
|
34
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
35
|
+
|
|
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; } }
|
|
37
|
+
|
|
38
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
39
|
+
|
|
40
|
+
var EmptyError = /*#__PURE__*/function (_React$Component) {
|
|
41
|
+
_inherits(EmptyError, _React$Component);
|
|
42
|
+
|
|
43
|
+
var _super = _createSuper(EmptyError);
|
|
44
|
+
|
|
45
|
+
function EmptyError() {
|
|
46
|
+
_classCallCheck(this, EmptyError);
|
|
47
|
+
|
|
48
|
+
return _super.apply(this, arguments);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
_createClass(EmptyError, [{
|
|
52
|
+
key: "render",
|
|
53
|
+
value: function render() {
|
|
54
|
+
return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
|
|
55
|
+
viewBox: "0 0 500 500",
|
|
56
|
+
name: "EmptyError"
|
|
57
|
+
}, this.props), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("style", null, ".EmptyError_svg__cls-1{fill:var(--zd_emptysvg_primary_fill);opacity:.05}.EmptyError_svg__cls-3,.EmptyError_svg__cls-4,.EmptyError_svg__cls-5{fill:none}.EmptyError_svg__cls-3{stroke-miterlimit:10;stroke:var(--zd_emptysvg_tiny_circle)}.EmptyError_svg__cls-5{stroke-miterlimit:10;stroke:var(--zd_emptysvg_cross)}.EmptyError_svg__cls-4{stroke:var(--zd_emptysvg_plus);stroke-linecap:round;stroke-linejoin:round}.EmptyError_svg_fill{fill: #DE3535;opacity: 0.3}.EmptyError_svg_line{fill:none;stroke:var(--zd_emptysvg_primary_stroke);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10}")), /*#__PURE__*/_react["default"].createElement("path", {
|
|
58
|
+
"class": "EmptyError_svg__cls-1",
|
|
59
|
+
d: "M217.5,155.3c0,0,113.7-75.3,171.3-52.6s96.9,213.4-63.2,298.9S93.2,301,92.6,268 C92,236.1,92.6,160,217.5,155.3z"
|
|
60
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
61
|
+
"class": "EmptyError_svg_line",
|
|
62
|
+
d: "M133.8,379.6c0,0-13.4-217.8,0-222.6c11.4-4.1,189-1.2,240.6-0.3c7.8,0.1,14,6.5,14,14.2V201l-235.8,2.3 l105.1-3.3c5.3-0.3,9.8-0.2,12.8,4.2c15.4,23.3,61.8,95.7,47.1,100.6c-17.5,5.8-114.1,8.3-116.2-2.6c-3.2-17.3,57-96.4,63.5-97.6 s122.2,3.2,123.6,6.6s10.3,168.7,2,173.6s-251,5.9-252.4-1.5s0-218.3,0-218.3"
|
|
63
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
64
|
+
"class": "EmptyError_svg_fill",
|
|
65
|
+
d: "M330.7,289.8c-1.9-5.8-33.8-78.7-47.9-85.8s-65.2,83.6-69.2,93.4s17.9,10.6,17.9,10.6s82.7,0.6,91.9-1.8 S332.6,295.6,330.7,289.8z M274.7,249.9c0-1.4,1.1-2.5,2.5-2.5s2.5,1.1,2.5,2.5v23c0,1.4-1.1,2.5-2.5,2.5s-2.5-1.1-2.5-2.5V249.9z M275.4,290.6c0,0-5.8-6.4,1-7c0,0,4.7,0.1,5,2.8S277.2,292.3,275.4,290.6L275.4,290.6z"
|
|
66
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
67
|
+
"class": "st1",
|
|
68
|
+
cx: "419.9",
|
|
69
|
+
cy: "378.9",
|
|
70
|
+
rx: "6",
|
|
71
|
+
ry: "5.9",
|
|
72
|
+
stroke: "var(--zd_emptysvg_small_circle)",
|
|
73
|
+
"stroke-linecap": "round",
|
|
74
|
+
"stroke-linejoin": "round",
|
|
75
|
+
fill: "none"
|
|
76
|
+
}), /*#__PURE__*/_react["default"].createElement("line", {
|
|
77
|
+
"class": "EmptyFrame_svg__cls-3",
|
|
78
|
+
x1: "162.2",
|
|
79
|
+
y1: "412.4",
|
|
80
|
+
x2: "172.3",
|
|
81
|
+
y2: "423.6"
|
|
82
|
+
}), /*#__PURE__*/_react["default"].createElement("line", {
|
|
83
|
+
"class": "EmptyFrame_svg__cls-3",
|
|
84
|
+
x1: "161.6",
|
|
85
|
+
y1: "423",
|
|
86
|
+
x2: "172.9",
|
|
87
|
+
y2: "413"
|
|
88
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
89
|
+
"class": "st4",
|
|
90
|
+
cx: "396",
|
|
91
|
+
cy: "80",
|
|
92
|
+
rx: "8.6",
|
|
93
|
+
ry: "8.6",
|
|
94
|
+
"stroke-miterlimit": "10",
|
|
95
|
+
stroke: "var(--zd_emptysvg_medium_circle)",
|
|
96
|
+
fill: "none"
|
|
97
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
98
|
+
"class": "EmptyFrame_svg__cls-5",
|
|
99
|
+
cx: "210.8",
|
|
100
|
+
cy: "74.9",
|
|
101
|
+
rx: "5.1",
|
|
102
|
+
ry: "5.1"
|
|
103
|
+
}), /*#__PURE__*/_react["default"].createElement("line", {
|
|
104
|
+
"class": "EmptyFrame_svg__cls-4",
|
|
105
|
+
x1: "70.4",
|
|
106
|
+
y1: "274.5",
|
|
107
|
+
x2: "69.6",
|
|
108
|
+
y2: "289.6"
|
|
109
|
+
}), /*#__PURE__*/_react["default"].createElement("line", {
|
|
110
|
+
"class": "EmptyFrame_svg__cls-4",
|
|
111
|
+
x1: "62.4",
|
|
112
|
+
y1: "281.6",
|
|
113
|
+
x2: "77.5",
|
|
114
|
+
y2: "282.5"
|
|
115
|
+
}));
|
|
116
|
+
}
|
|
117
|
+
}]);
|
|
118
|
+
|
|
119
|
+
return EmptyError;
|
|
120
|
+
}(_react["default"].Component);
|
|
121
|
+
|
|
122
|
+
exports["default"] = EmptyError;
|
|
123
|
+
EmptyError.propTypes = {
|
|
124
|
+
alignHorizontal: _propTypes["default"].bool,
|
|
125
|
+
className: _propTypes["default"].string,
|
|
126
|
+
dataId: _propTypes["default"].string,
|
|
127
|
+
isRender: _propTypes["default"].bool,
|
|
128
|
+
size: _propTypes["default"].oneOf(['small', 'large']),
|
|
129
|
+
palette: _propTypes["default"].oneOf(['dark', 'danger'])
|
|
130
|
+
};
|
|
131
|
+
EmptyError.defaultProps = {
|
|
132
|
+
size: 'large',
|
|
133
|
+
alignHorizontal: true,
|
|
134
|
+
isRender: true,
|
|
135
|
+
className: '',
|
|
136
|
+
dataId: 'EmptyError',
|
|
137
|
+
palette: 'danger'
|
|
138
|
+
};
|
|
139
|
+
|
|
140
|
+
if (false) {
|
|
141
|
+
EmptyError.docs = {
|
|
142
|
+
componentGroup: 'SVG'
|
|
143
|
+
};
|
|
144
|
+
}
|