@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/lib/svg/EmptySkills.js
CHANGED
|
@@ -1,80 +1,166 @@
|
|
|
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 EmptySkills = /*#__PURE__*/function (_React$Component) {
|
|
34
41
|
_inherits(EmptySkills, _React$Component);
|
|
35
42
|
|
|
43
|
+
var _super = _createSuper(EmptySkills);
|
|
44
|
+
|
|
36
45
|
function EmptySkills() {
|
|
37
46
|
_classCallCheck(this, EmptySkills);
|
|
38
47
|
|
|
39
|
-
return
|
|
48
|
+
return _super.apply(this, arguments);
|
|
40
49
|
}
|
|
41
50
|
|
|
42
51
|
_createClass(EmptySkills, [{
|
|
43
|
-
key:
|
|
52
|
+
key: "render",
|
|
44
53
|
value: function render() {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
54
|
+
return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
|
|
55
|
+
viewBox: "0 0 200 200",
|
|
56
|
+
name: "search"
|
|
57
|
+
}, this.props), /*#__PURE__*/_react["default"].createElement("style", null, ".EmptySkills_svg__st2,.EmptySkills_svg__st4{fill:none;stroke:var(--zd_emptysvg_tiny_circle);stroke-miterlimit:10}.EmptySkills_svg__st4{stroke:var(--zd_emptysvg_cross)}.EmptySkills_svg__st3{fill:none;stroke:var(--zd_emptysvg_plus);stroke-linecap:round;stroke-linejoin:round}.EmptySkills_svg__st7{opacity:.25}.EmptySkills_svg__st9{fill:none;stroke:var(--zd_emptysvg_primary_fill);stroke-width:.5;stroke-miterlimit:10}"), /*#__PURE__*/_react["default"].createElement("path", {
|
|
58
|
+
d: "M86.5 62.5s46.9-30.9 70.7-21.5 40 87.4-26.1 122.4-95.9-41.2-96.1-54.7c-.3-13.1 0-44.3 51.5-46.2z",
|
|
59
|
+
opacity: 0.05,
|
|
60
|
+
fill: "var(--zd_emptysvg_primary_fill)"
|
|
61
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
62
|
+
cx: 156,
|
|
63
|
+
cy: 31.7,
|
|
64
|
+
fill: "none",
|
|
65
|
+
stroke: "var(--zd_emptysvg_medium_circle)",
|
|
66
|
+
strokeMiterlimit: 10,
|
|
67
|
+
r: 3.5
|
|
68
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
69
|
+
className: "EmptySkills_svg__st2",
|
|
70
|
+
cx: 79.6,
|
|
71
|
+
cy: 29.6,
|
|
72
|
+
r: 2.1
|
|
73
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
74
|
+
className: "EmptySkills_svg__st3",
|
|
75
|
+
d: "M23.3 100.9l-.4 6.1M20 103.8l6.2.3"
|
|
76
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
77
|
+
cx: 165.9,
|
|
78
|
+
cy: 154.1,
|
|
79
|
+
fill: "none",
|
|
80
|
+
stroke: "var(--zd_emptysvg_medium_circle)",
|
|
81
|
+
strokeLinecap: "round",
|
|
82
|
+
strokeLinejoin: "round",
|
|
83
|
+
r: 2.4
|
|
84
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
85
|
+
className: "EmptySkills_svg__st4",
|
|
86
|
+
d: "M175.6 117.2l4.2 4.6M175.4 121.6l4.6-4.2"
|
|
87
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
88
|
+
d: "M25.9 124.2s28.6-2.9 35.8-25.2 29.5-22.8 35.6-24.2l.7-.2c6.6-2.4 11.3-8.9 11.3-16.3 0-9.5-7.7-17.2-17.2-17.2S75 48.8 75 58.3c0 8.2 5.7 15 13.4 16.7h0c2.1.7 4.5 1.6 7.3 1.9 2.2.2 4.5.3 6.8.2 5.3-.2 18.5 2.2 23.3 13.8 6.3 15.4 16.9 30.2 36.4 30.2 0 0-44.3 6.3-51.1-23 0 0 3.2 1.1 0 15.1S92.4 142 66.5 128s-30.6 18.7-5 22.3 58.3-18.4 72.7-22 24.1 5 24.1 12.2c0 20.2-79.2 33.1-83.2-42.5",
|
|
89
|
+
fill: "none",
|
|
90
|
+
stroke: "var(--zd_emptysvg_primary_stroke)",
|
|
91
|
+
strokeMiterlimit: 10
|
|
92
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
93
|
+
cx: 97.2,
|
|
94
|
+
cy: 58.1,
|
|
95
|
+
r: 17.1,
|
|
96
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
97
|
+
}), /*#__PURE__*/_react["default"].createElement("g", {
|
|
98
|
+
className: "EmptySkills_svg__st7"
|
|
99
|
+
}, /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("circle", {
|
|
100
|
+
id: "EmptySkills_svg__SVGID_1_",
|
|
101
|
+
cx: 147.6,
|
|
102
|
+
cy: 58.7,
|
|
103
|
+
r: 12.7
|
|
104
|
+
})), /*#__PURE__*/_react["default"].createElement("clipPath", {
|
|
105
|
+
id: "EmptySkills_svg__SVGID_2_"
|
|
106
|
+
}, /*#__PURE__*/_react["default"].createElement("use", {
|
|
107
|
+
xlinkHref: "#EmptySkills_svg__SVGID_1_",
|
|
108
|
+
overflow: "visible"
|
|
109
|
+
})), /*#__PURE__*/_react["default"].createElement("g", {
|
|
110
|
+
clipPath: "url(#EmptySkills_svg__SVGID_2_)"
|
|
111
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
112
|
+
className: "EmptySkills_svg__st9",
|
|
113
|
+
d: "M162.5 47.7l-4.1 26M160.9 47.5l-4.1 26M159.3 47.2l-4.1 26M157.7 47l-4.1 26M156.1 46.7l-4.2 26M154.5 46.5l-4.1 25.9M152.9 46.2l-4.2 26M151.3 45.9l-4.2 26M149.7 45.7l-4.2 26M148.1 45.4l-4.2 26M146.5 45.2l-4.2 26M144.9 44.9l-4.2 26M143.2 44.7l-4.1 26M141.6 44.4l-4.1 26M140 44.2l-4.1 26M138.4 43.9l-4.1 26M136.8 43.6l-4.1 26"
|
|
114
|
+
})), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
115
|
+
className: "EmptySkills_svg__st9",
|
|
116
|
+
cx: 147.6,
|
|
117
|
+
cy: 58.7,
|
|
118
|
+
r: 12.7
|
|
119
|
+
})), /*#__PURE__*/_react["default"].createElement("g", {
|
|
120
|
+
className: "EmptySkills_svg__st7"
|
|
121
|
+
}, /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("circle", {
|
|
122
|
+
id: "EmptySkills_svg__SVGID_3_",
|
|
123
|
+
cx: 34.3,
|
|
124
|
+
cy: 61.8,
|
|
125
|
+
r: 12.7
|
|
126
|
+
})), /*#__PURE__*/_react["default"].createElement("clipPath", {
|
|
127
|
+
id: "EmptySkills_svg__SVGID_4_"
|
|
128
|
+
}, /*#__PURE__*/_react["default"].createElement("use", {
|
|
129
|
+
xlinkHref: "#EmptySkills_svg__SVGID_3_",
|
|
130
|
+
overflow: "visible"
|
|
131
|
+
})), /*#__PURE__*/_react["default"].createElement("g", {
|
|
132
|
+
clipPath: "url(#EmptySkills_svg__SVGID_4_)"
|
|
133
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
134
|
+
className: "EmptySkills_svg__st9",
|
|
135
|
+
d: "M47.7 50.6l-4.2 26M44.5 50.1l-4.2 26M41.2 49.6l-4.1 26M38 49l-4.1 26.1M34.8 48.5l-4.1 26M31.6 48l-4.1 26M28.4 47.5l-4.2 26M25.2 47L21 73"
|
|
136
|
+
})), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
137
|
+
className: "EmptySkills_svg__st9",
|
|
138
|
+
cx: 34.3,
|
|
139
|
+
cy: 61.8,
|
|
140
|
+
r: 12.7
|
|
141
|
+
})));
|
|
62
142
|
}
|
|
63
143
|
}]);
|
|
64
144
|
|
|
65
145
|
return EmptySkills;
|
|
66
|
-
}(
|
|
67
|
-
|
|
68
|
-
exports.default = EmptySkills;
|
|
146
|
+
}(_react["default"].Component);
|
|
69
147
|
|
|
148
|
+
exports["default"] = EmptySkills;
|
|
70
149
|
EmptySkills.propTypes = {
|
|
71
|
-
|
|
72
|
-
className:
|
|
73
|
-
|
|
150
|
+
alignHorizontal: _propTypes["default"].bool,
|
|
151
|
+
className: _propTypes["default"].string,
|
|
152
|
+
dataId: _propTypes["default"].string,
|
|
153
|
+
isRender: _propTypes["default"].bool,
|
|
154
|
+
size: _propTypes["default"].oneOf(['small', 'large']),
|
|
155
|
+
palette: _propTypes["default"].oneOf(['default', 'dark'])
|
|
74
156
|
};
|
|
75
157
|
EmptySkills.defaultProps = {
|
|
76
158
|
size: 'large',
|
|
77
|
-
alignHorizontal: true
|
|
159
|
+
alignHorizontal: true,
|
|
160
|
+
isRender: true,
|
|
161
|
+
className: '',
|
|
162
|
+
dataId: 'emptySkills',
|
|
163
|
+
palette: 'default'
|
|
78
164
|
};
|
|
79
165
|
|
|
80
166
|
if (false) {
|
|
@@ -0,0 +1,117 @@
|
|
|
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 EmptySla = /*#__PURE__*/function (_React$Component) {
|
|
41
|
+
_inherits(EmptySla, _React$Component);
|
|
42
|
+
|
|
43
|
+
var _super = _createSuper(EmptySla);
|
|
44
|
+
|
|
45
|
+
function EmptySla() {
|
|
46
|
+
_classCallCheck(this, EmptySla);
|
|
47
|
+
|
|
48
|
+
return _super.apply(this, arguments);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
_createClass(EmptySla, [{
|
|
52
|
+
key: "render",
|
|
53
|
+
value: function render() {
|
|
54
|
+
return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
|
|
55
|
+
viewBox: "0 0 200 200",
|
|
56
|
+
name: "Sla"
|
|
57
|
+
}, this.props), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("style", null, '.EmptySla_svg-3{fill:var(--zd_emptysvg_tiny_circle)}.EmptySla_svg-4{fill:var(--zd_emptysvg_plus)}')), /*#__PURE__*/_react["default"].createElement("path", {
|
|
58
|
+
d: "M88.4 67.4s41.2-27.13 62.06-19 35.09 76.86-22.89 107.68S43.36 119.89 43.13 108c-.21-11.5 0-38.9 45.27-40.6z",
|
|
59
|
+
fill: "var(--zd_emptysvg_primary_fill)",
|
|
60
|
+
opacity: 0.05
|
|
61
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
62
|
+
d: "M158.11 150.45a2.5 2.5 0 112.51-2.5 2.51 2.51 0 01-2.51 2.5zm0-4.28a1.78 1.78 0 101.79 1.83 1.79 1.79 0 00-1.79-1.83z",
|
|
63
|
+
fill: "var(--zd_emptysvg_small_circle)"
|
|
64
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
65
|
+
d: "M149.46 43.73a3.45 3.45 0 113.47-3.45 3.47 3.47 0 01-3.47 3.45zm0-6.17a2.73 2.73 0 102.75 2.72 2.74 2.74 0 00-2.75-2.72z",
|
|
66
|
+
fill: "var(--zd_emptysvg_medium_circle)"
|
|
67
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
68
|
+
className: "EmptySla_svg-3",
|
|
69
|
+
d: "M82.35 40.64a2.21 2.21 0 112.21-2.2 2.2 2.2 0 01-2.21 2.2zm0-3.68a1.48 1.48 0 101.49 1.48A1.49 1.49 0 0082.35 37z"
|
|
70
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
71
|
+
className: "EmptySla_svg-4",
|
|
72
|
+
d: "M32.57 106.9a.35.35 0 01-.33-.38l.3-5.42a.36.36 0 01.72 0l-.31 5.42a.35.35 0 01-.38.38z"
|
|
73
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
74
|
+
className: "EmptySla_svg-4",
|
|
75
|
+
d: "M35.45 104.34L30 104a.36.36 0 010-.72l5.46.3a.37.37 0 01.34.38.35.35 0 01-.35.38z"
|
|
76
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
77
|
+
className: "EmptySla_svg-3",
|
|
78
|
+
d: "M170.29 119.92a.36.36 0 01-.27-.12l-3.65-4a.36.36 0 01.54-.49l3.64 4a.35.35 0 010 .51.34.34 0 01-.26.1z"
|
|
79
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
80
|
+
className: "EmptySla_svg-3",
|
|
81
|
+
d: "M166.42 119.7a.36.36 0 01-.23-.63l4.07-3.62a.36.36 0 01.48.54l-4.08 3.62a.34.34 0 01-.24.09z"
|
|
82
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
83
|
+
d: "M101.93 94.22s-8.08 10.21-7.18 10.78 10.83 13 11.47 12.27 34-25.4 34-25.4-.49-3-2.92-1.62C129 95 109.68 109.18 109 108.23c-.9-1.23-7.07-14.01-7.07-14.01z",
|
|
84
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
85
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
86
|
+
d: "M105.4 156.63h-.15c-1.5-.29-10.69-7.45-18.34-14-5-4.23-16.69-14.49-18.07-18.39-2.21-6.26-1.62-50.79-1.59-52.68a.74.74 0 01.33-.59c.56-.42 2.67-.73 5.76-1 0-1.24.06-2.13.06-2.55a1 1 0 01.34-.75c3.71-3.64 54.81-3 60.63-2.91a.52.52 0 01.52.53.53.53 0 01-.53.52c-.14 0-14.77-.22-29.44 0-27 .47-30.16 2.09-30.46 2.6 0 .43 0 1.28-.06 2.45 7.24-.47 18.92-.54 29.14-.49 16.31.07 34 .52 35.75.91.54.12.84.18.8 9.33 0 4.31-.13 8.66-.13 8.71a.5.5 0 01-.23.42l-30.44 19.83a.53.53 0 01-.44.07.55.55 0 01-.33-.3c-.05-.1-4.6-10.57-6.39-12.79a.35.35 0 00-.34-.17c-1.59.1-4.94 5.63-6 7.44-.24.41-.44.73-.58.94 0 .38.76 2.64 11.19 14.34l.1.11c2.53-.89 21.19-15.53 32.65-24.78a.53.53 0 01.55-.07.53.53 0 01.3.47c0 .95.3 23.3-.51 27.34-.46 2.3-8.31 10.3-15.41 16.75-3.5 3.18-15.2 13.58-18.61 13.58-5.31 0-28.89-25.58-32-31.47-1.6-3-1.06-23.91-.25-46 0-1.13.08-2.15.11-3a19.34 19.34 0 00-5 .7c0 2.93-.55 46.23 1.54 52.14.89 2.54 7.53 9.24 17.74 17.93 9.53 8.11 17 13.56 17.88 13.75 1.32 0 10.34-6.53 20.23-15.66 10.83-10 17.09-17.93 17.19-21.78l.42-16.48a.52.52 0 01.52-.51.53.53 0 01.51.54l-.42 16.48c-.17 6.81-16.75 22.52-27.85 31.43-3.32 2.69-9.01 7.06-10.69 7.06zM74.35 71c0 .92-.07 2-.11 3.15-.47 12.66-1.56 42.29.12 45.49 1.57 3 8.06 10.65 15.11 17.85 7.77 7.93 14 13.06 16 13.06s9.15-5.35 17.91-13.31c9.4-8.55 14.79-14.72 15.08-16.18.69-3.44.55-21.43.51-26-2.28 1.83-8.84 7.09-15.41 12.2-16.74 13-17.2 12.51-17.68 12l-.26-.3c-12.41-13.92-11.67-15-11.31-15.56.12-.18.33-.52.59-1 2.46-4.06 5-7.83 6.87-7.95a1.42 1.42 0 011.22.56c1.64 2.05 5.29 10.21 6.28 12.47l29.69-19.35c.18-7.27.19-15.28-.1-16.75-2.57-.33-18.67-.77-35.38-.85-14.41-.08-23.7.13-29.13.47zm32.26 47.49zm-11.45-14.66z",
|
|
87
|
+
fill: "var(--zd_emptysvg_primary_stroke)"
|
|
88
|
+
}));
|
|
89
|
+
}
|
|
90
|
+
}]);
|
|
91
|
+
|
|
92
|
+
return EmptySla;
|
|
93
|
+
}(_react["default"].Component);
|
|
94
|
+
|
|
95
|
+
exports["default"] = EmptySla;
|
|
96
|
+
EmptySla.propTypes = {
|
|
97
|
+
alignHorizontal: _propTypes["default"].bool,
|
|
98
|
+
className: _propTypes["default"].string,
|
|
99
|
+
dataId: _propTypes["default"].string,
|
|
100
|
+
isRender: _propTypes["default"].bool,
|
|
101
|
+
size: _propTypes["default"].oneOf(['small', 'large']),
|
|
102
|
+
palette: _propTypes["default"].oneOf(['default', 'dark'])
|
|
103
|
+
};
|
|
104
|
+
EmptySla.defaultProps = {
|
|
105
|
+
size: 'large',
|
|
106
|
+
alignHorizontal: true,
|
|
107
|
+
isRender: true,
|
|
108
|
+
className: '',
|
|
109
|
+
dataId: 'EmptySla',
|
|
110
|
+
palette: 'default'
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
if (false) {
|
|
114
|
+
EmptySla.docs = {
|
|
115
|
+
componentGroup: 'SVG'
|
|
116
|
+
};
|
|
117
|
+
}
|
package/lib/svg/EmptySnippet.js
CHANGED
|
@@ -1,84 +1,132 @@
|
|
|
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
|
-
|
|
34
|
-
_inherits(EmptyRoles, _React$Component);
|
|
38
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
35
39
|
|
|
36
|
-
|
|
37
|
-
|
|
40
|
+
var EmptySnippet = /*#__PURE__*/function (_React$Component) {
|
|
41
|
+
_inherits(EmptySnippet, _React$Component);
|
|
38
42
|
|
|
39
|
-
|
|
43
|
+
var _super = _createSuper(EmptySnippet);
|
|
44
|
+
|
|
45
|
+
function EmptySnippet() {
|
|
46
|
+
_classCallCheck(this, EmptySnippet);
|
|
47
|
+
|
|
48
|
+
return _super.apply(this, arguments);
|
|
40
49
|
}
|
|
41
50
|
|
|
42
|
-
_createClass(
|
|
43
|
-
key:
|
|
51
|
+
_createClass(EmptySnippet, [{
|
|
52
|
+
key: "render",
|
|
44
53
|
value: function render() {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
54
|
+
return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
|
|
55
|
+
viewBox: "0 0 200 200",
|
|
56
|
+
name: "snippet"
|
|
57
|
+
}, this.props), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("style", null, ".EmptySnippet_svg__cls-6{fill:var(--zd_emptysvg_secondary_fill)}.EmptySnippet_svg__cls-3,.EmptySnippet_svg__cls-4,.EmptySnippet_svg__cls-5,.EmptySnippet_svg__cls-7,.EmptySnippet_svg__cls-8{fill:none}.EmptySnippet_svg__cls-3{stroke-miterlimit:10;stroke:var(--zd_emptysvg_tiny_circle)}.EmptySnippet_svg__cls-7{stroke-miterlimit:10;stroke:var(--zd_emptysvg_cross)}.EmptySnippet_svg__cls-4,.EmptySnippet_svg__cls-5{stroke:var(--zd_emptysvg_plus);stroke-linecap:round;stroke-linejoin:round}.EmptySnippet_svg__cls-5{stroke:var(--zd_emptysvg_primary_stroke)}.EmptySnippet_svg__cls-8{stroke:var(--zd_emptysvg_small_circle);stroke-linecap:round;stroke-linejoin:round}")), /*#__PURE__*/_react["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: "EmptySnippet_svg__cls-3",
|
|
71
|
+
cx: 79.62,
|
|
72
|
+
cy: 29.6,
|
|
73
|
+
rx: 2.12,
|
|
74
|
+
ry: 2.1
|
|
75
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
76
|
+
className: "EmptySnippet_svg__cls-4",
|
|
77
|
+
d: "M23.28 100.86l-.35 6.16M20 103.76l6.22.35"
|
|
78
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
79
|
+
className: "EmptySnippet_svg__cls-8",
|
|
80
|
+
cx: 165.88,
|
|
81
|
+
cy: 154.09,
|
|
82
|
+
rx: 2.45,
|
|
83
|
+
ry: 2.43
|
|
84
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
85
|
+
className: "EmptySnippet_svg__cls-7",
|
|
86
|
+
d: "M175.6 117.21l4.15 4.6M175.36 121.57l4.64-4.12"
|
|
87
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
88
|
+
className: "EmptySnippet_svg__cls-6",
|
|
89
|
+
d: "M119.87 139.21s-11.87-8.72 1.14-35c13.82-27.89 38.05-42 47.15-31.63 4.7 5.42-31.72 67.7-48.29 66.63z"
|
|
90
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
91
|
+
className: "EmptySnippet_svg__cls-5",
|
|
92
|
+
d: "M107.71 147.22l-31.65 6s-7.53-9.06-5-52.27c1.32-22.39-8.82-32.16-8.82-32.16L128.41 55s6.26 11.49 3.83 27.54C129.6 100 115.6 102.17 116.78 134a1.14 1.14 0 002.15.38c5.62-11.24 24.49-47.73 35-52.54 0 0-38.4 48.36-37.33 71.47 0 0 4.51-11.69 4.56-13.86.06-2.47-4.9-2.75-3.87 0s16.48-3.56 29.8-25.06 27.17-36.09 19.56-43.9c-11.08-11.37-44.18 23-49.23 42.72-5.82 22.72 1.45 26.5 5.41 27.16s12.66-8.83 12.66-8.83 2.14 9.75 4.22 11.94l-16.38 2.91"
|
|
93
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
94
|
+
d: "M123.26 116.23s3.32-11.21 10.42-19.74",
|
|
95
|
+
stroke: "var(--zd_emptysvg_circle_fill)",
|
|
96
|
+
strokeWidth: 3,
|
|
97
|
+
strokeLinecap: "round",
|
|
98
|
+
strokeLinejoin: "round",
|
|
99
|
+
fill: "none"
|
|
100
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
101
|
+
className: "EmptySnippet_svg__cls-6",
|
|
102
|
+
d: "M94.37 100.23s9.48-1.35 9.48-10.19c0 0-.08 10 8.44 10.19 0 0-8.52-.12-8.49 8 0 .02-.47-8.52-9.43-8zM88.34 121.72s9.48-1.35 9.48-10.19c0 0-.08 10 8.44 10.19 0 0-8.52-.11-8.49 8 0 .02-.47-8.51-9.43-8zM83.26 107s5.38-.77 5.38-5.79c0 0 0 5.68 4.79 5.79 0 0-4.84-.07-4.82 4.55a4.81 4.81 0 00-5.35-4.55z"
|
|
103
|
+
}));
|
|
62
104
|
}
|
|
63
105
|
}]);
|
|
64
106
|
|
|
65
|
-
return
|
|
66
|
-
}(
|
|
67
|
-
|
|
68
|
-
exports
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
107
|
+
return EmptySnippet;
|
|
108
|
+
}(_react["default"].Component);
|
|
109
|
+
|
|
110
|
+
exports["default"] = EmptySnippet;
|
|
111
|
+
EmptySnippet.propTypes = {
|
|
112
|
+
alignHorizontal: _propTypes["default"].bool,
|
|
113
|
+
className: _propTypes["default"].string,
|
|
114
|
+
dataId: _propTypes["default"].string,
|
|
115
|
+
isRender: _propTypes["default"].bool,
|
|
116
|
+
size: _propTypes["default"].oneOf(['small', 'large']),
|
|
117
|
+
palette: _propTypes["default"].oneOf(['default', 'dark'])
|
|
74
118
|
};
|
|
75
|
-
|
|
119
|
+
EmptySnippet.defaultProps = {
|
|
76
120
|
size: 'large',
|
|
77
|
-
alignHorizontal: true
|
|
121
|
+
alignHorizontal: true,
|
|
122
|
+
isRender: true,
|
|
123
|
+
className: '',
|
|
124
|
+
dataId: 'emptySnippet',
|
|
125
|
+
palette: 'default'
|
|
78
126
|
};
|
|
79
127
|
|
|
80
128
|
if (false) {
|
|
81
|
-
|
|
129
|
+
EmptySnippet.docs = {
|
|
82
130
|
componentGroup: 'SVG'
|
|
83
131
|
};
|
|
84
132
|
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
.default {
|
|
2
|
+
/* empty svg default palette variables */
|
|
3
|
+
--zd_emptysvg_primary_fill: var(--zdt_svg_default_primary_fill);
|
|
4
|
+
--zd_emptysvg_primary_stroke: var(--zdt_svg_default_primary_stroke);
|
|
5
|
+
--zd_emptysvg_secondary_fill: var(--zdt_svg_default_secondary_fill);
|
|
6
|
+
--zd_emptysvg_secondary_plainfill: var(--zdt_svg_default_secondary_plainfill);
|
|
7
|
+
--zd_emptysvg_plus: var(--zdt_svg_default_plus);
|
|
8
|
+
--zd_emptysvg_cross: var(--zdt_svg_default_cross);
|
|
9
|
+
--zd_emptysvg_medium_circle: var(--zdt_svg_default_medium_circle);
|
|
10
|
+
--zd_emptysvg_tiny_circle: var(--zdt_svg_default_tiny_circle);
|
|
11
|
+
--zd_emptysvg_small_circle: var(--zdt_svg_default_small_circle);
|
|
12
|
+
--zd_emptysvg_circle_fill: var(--zdt_svg_default_circle_fill);
|
|
13
|
+
}
|
|
14
|
+
.dark {
|
|
15
|
+
/* empty svg dark palette variables */
|
|
16
|
+
--zd_emptysvg_primary_fill: var(--zdt_svg_dark_primary_fill);
|
|
17
|
+
--zd_emptysvg_primary_stroke: var(--zdt_svg_dark_primary_stroke);
|
|
18
|
+
--zd_emptysvg_secondary_fill: var(--zdt_svg_dark_secondary_fill);
|
|
19
|
+
--zd_emptysvg_secondary_plainfill: var(--zdt_svg_dark_secondary_plainfill);
|
|
20
|
+
--zd_emptysvg_plus: var(--zdt_svg_dark_plus);
|
|
21
|
+
--zd_emptysvg_cross: var(--zdt_svg_dark_cross);
|
|
22
|
+
--zd_emptysvg_medium_circle: var(--zdt_svg_dark_medium_circle);
|
|
23
|
+
--zd_emptysvg_tiny_circle: var(--zdt_svg_dark_tiny_circle);
|
|
24
|
+
--zd_emptysvg_small_circle: var(--zdt_svg_dark_small_circle);
|
|
25
|
+
--zd_emptysvg_circle_fill: var(--zdt_svg_dark_circle_fill);
|
|
26
|
+
}
|
|
27
|
+
.danger {
|
|
28
|
+
/* empty svg danger palette variables */
|
|
29
|
+
--zd_emptysvg_primary_fill: var(--zdt_svg_danger_primary_fill);
|
|
30
|
+
--zd_emptysvg_primary_stroke: var(--zdt_svg_danger_primary_stroke);
|
|
31
|
+
--zd_emptysvg_secondary_fill: var(--zdt_svg_danger_secondary_fill);
|
|
32
|
+
--zd_emptysvg_secondary_plainfill: var(--zdt_svg_danger_secondary_plainfill);
|
|
33
|
+
--zd_emptysvg_plus: var(--zdt_svg_danger_plus);
|
|
34
|
+
--zd_emptysvg_cross: var(--zdt_svg_danger_cross);
|
|
35
|
+
--zd_emptysvg_medium_circle: var(--zdt_svg_danger_medium_circle);
|
|
36
|
+
--zd_emptysvg_tiny_circle: var(--zdt_svg_danger_tiny_circle);
|
|
37
|
+
--zd_emptysvg_small_circle: var(--zdt_svg_danger_small_circle);
|
|
38
|
+
--zd_emptysvg_circle_fill: var(--zdt_svg_danger_circle_fill);
|
|
39
|
+
}
|