@zohodesk/svg 1.0.0-temp.41 → 1.0.0-temp.44
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 +20 -0
- package/assets/Appearance/dark/themes/blue/blueDarkCTATheme.module.css +1 -1
- package/deprecated/june_2022/ErrorUnauthorizedLogin.js +127 -0
- package/es/svg/CustomModule.js +70 -0
- package/es/svg/EmptyDelete.js +63 -0
- package/es/svg/ErrorUnauthorizedLogin.js +81 -73
- package/es/svg/Export.js +67 -0
- package/es/svg/Extensions.js +73 -0
- package/es/svg/GCBot.js +64 -0
- package/es/svg/GCConversation.js +66 -0
- package/es/svg/KBBot.js +79 -0
- package/es/svg/Multilingual.js +72 -0
- package/es/svg/NetworkError.js +75 -0
- package/es/svg/ReadRecipients.js +71 -0
- package/es/svg/Variable.js +70 -0
- package/lib/svg/CustomModule.js +120 -0
- package/lib/svg/EmptyDelete.js +113 -0
- package/lib/svg/ErrorUnauthorizedLogin.js +81 -73
- package/lib/svg/Export.js +117 -0
- package/lib/svg/Extensions.js +123 -0
- package/lib/svg/GCBot.js +114 -0
- package/lib/svg/GCConversation.js +116 -0
- package/lib/svg/KBBot.js +129 -0
- package/lib/svg/Multilingual.js +122 -0
- package/lib/svg/NetworkError.js +125 -0
- package/lib/svg/ReadRecipients.js +121 -0
- package/lib/svg/Variable.js +120 -0
- package/package.json +12 -6
package/lib/svg/GCBot.js
ADDED
|
@@ -0,0 +1,114 @@
|
|
|
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"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { 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 GCBot = /*#__PURE__*/function (_React$Component) {
|
|
41
|
+
_inherits(GCBot, _React$Component);
|
|
42
|
+
|
|
43
|
+
var _super = _createSuper(GCBot);
|
|
44
|
+
|
|
45
|
+
function GCBot() {
|
|
46
|
+
_classCallCheck(this, GCBot);
|
|
47
|
+
|
|
48
|
+
return _super.apply(this, arguments);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
_createClass(GCBot, [{
|
|
52
|
+
key: "render",
|
|
53
|
+
value: function render() {
|
|
54
|
+
return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
|
|
55
|
+
viewBox: "0 0 200 200",
|
|
56
|
+
name: "GCBot"
|
|
57
|
+
}, this.props), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("style", null, ".GCBot_svg__cls-2{fill:var(--zd_emptysvg_plus)}.GCBot_svg__cls-3{fill:var(--zd_emptysvg_medium_circle)}.GCBot_svg__cls-4{fill:var(--zd_emptysvg_cross)}.GCBot_svg__cls-5{fill:var(--zd_emptysvg_secondary_fill);}.GCBot_svg__cls-6{fill:none;stroke:var(--zd_emptysvg_primary_stroke);stroke-linecap:round;stroke-linejoin:round}")), /*#__PURE__*/_react["default"].createElement("path", {
|
|
58
|
+
d: "M84.12 58.19S130.78 27 154.39 36.4s39.74 88.3-25.92 123.72-95.36-41.65-95.57-55.3c-.28-13.21 0-44.7 51.22-46.63Z",
|
|
59
|
+
style: {
|
|
60
|
+
fill: "var(--zd_emptysvg_primary_fill)",
|
|
61
|
+
isolation: "isolate",
|
|
62
|
+
opacity: 0.1
|
|
63
|
+
}
|
|
64
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
65
|
+
className: "GCBot_svg__cls-2",
|
|
66
|
+
d: "M17.9 119.3a.5.5 0 0 1-.47-.52l.41-7.47a.52.52 0 0 1 .53-.47.5.5 0 0 1 .47.53l-.41 7.47a.49.49 0 0 1-.5.48Z"
|
|
67
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
68
|
+
className: "GCBot_svg__cls-2",
|
|
69
|
+
d: "m21.76 115.77-7.34-.42a.5.5 0 0 1-.47-.53.52.52 0 0 1 .53-.47l7.34.42a.49.49 0 0 1 .48.51.49.49 0 0 1-.51.48Z"
|
|
70
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
71
|
+
className: "GCBot_svg__cls-3",
|
|
72
|
+
d: "M175.07 22.8a4.75 4.75 0 1 0 4.68 4.82v-.08a4.72 4.72 0 0 0-4.68-4.74Zm0 8.5a3.76 3.76 0 1 1 3.69-3.83v.07a3.72 3.72 0 0 1-3.69 3.76ZM128.32 175.07a3.45 3.45 0 1 0 3.4 3.5 3.42 3.42 0 0 0-3.4-3.5Zm0 5.9a2.45 2.45 0 1 1 2.4-2.5v.05a2.42 2.42 0 0 1-2.4 2.48Z"
|
|
73
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
74
|
+
className: "GCBot_svg__cls-4",
|
|
75
|
+
d: "M84.83 22a3 3 0 1 0 3 3 3 3 0 0 0-3-3Zm0 5.09a2 2 0 1 1 .06 0ZM193.75 131.81a.49.49 0 0 0-.69 0l-2.38 2.19-2.12-2.4a.5.5 0 0 0-.7 0 .51.51 0 0 0-.05.61l2.09 2.38-2.38 2.17a.5.5 0 0 0 0 .7.45.45 0 0 0 .37.16.44.44 0 0 0 .33-.13l2.37-2.15 2.11 2.41a.52.52 0 0 0 .38.17.48.48 0 0 0 .33-.12.5.5 0 0 0 0-.71l-2.13-2.42 2.38-2.16a.48.48 0 0 0 .11-.68Z"
|
|
76
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
77
|
+
className: "GCBot_svg__cls-5",
|
|
78
|
+
d: "M137.93 125.8c-.09-9.55 8.73-4.26 11.57-7.44 4.31-4.82 7.48-12.16-1.88-19.72-16.13-13-44.75-15.13-50.71 13.29s34.45 42.32 43.66 29.52c3.43-4.8-2.57-12.94-2.64-15.65Z"
|
|
79
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
80
|
+
className: "GCBot_svg__cls-5",
|
|
81
|
+
d: "M125.63 119.48c0-1.24 1.13-.55 1.5-1a1.58 1.58 0 0 0-.24-2.56c-2.1-1.69-5.81-2-6.58 1.72s4.47 5.49 5.66 3.83c.45-.58-.34-1.64-.34-1.99ZM138.7 120.82c0-1.24 1.13-.56 1.5-1a1.58 1.58 0 0 0-.24-2.56c-2.09-1.69-5.81-2-6.58 1.73s4.47 5.49 5.66 3.83c.45-.6-.34-1.65-.34-2ZM109.48 119.48c0-1.24 1.14-.55 1.51-1a1.58 1.58 0 0 0-.25-2.56c-2.09-1.69-5.8-2-6.58 1.72s4.47 5.49 5.67 3.83c.45-.58-.34-1.64-.35-1.99Z"
|
|
82
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
83
|
+
className: "GCBot_svg__cls-6",
|
|
84
|
+
d: "M108.43 122.26c5.17-1.7 2.12-10.64-1.92-7.87s-4.61 11.06 7.16 12 14.75-6.1 13.9-9.5-6.45-4.54-6.95 1.27 7.3 8.94 14.32 7.54 4.89-10.65 1.84-10.51-5.6 5.6 2.71 10.87 13.95.59 12.3-16.85c-2-20.84-43.54-31.28-55.41-.88-8.49 21.74 9.29 31.54 12.44 33.69S96 156 97.38 156.43s26.43-10 26.43-10a29.06 29.06 0 0 0 21.63-5.43 34.1 34.1 0 0 0 12.21-38.62 36 36 0 0 0-13.88-18c-1.55-8.82-9.93-13.69-19.12-14.32l-.25-5.14c-4.65-1.47-4-5.19-2.32-6.72a2.75 2.75 0 0 1 4.46 2.5c-.25 2.69-3.74 3.43-3.74 3.43v5.86h-1.38a17.77 17.77 0 0 0-16.87 13s25.77-.1 28.83-.31a2.37 2.37 0 0 0 2.23-2.52 5.08 5.08 0 0 0-.7-2.19c-1.52-2.67-19-1.05-19-1.05s-2.32.48-2.29 3.85l.08 1.23c-8 .24-22.31 6.76-26.53 21.89 0 0-8.29 22.8 13.62 38.69M76 83.34a13.39 13.39 0 0 0 6 7.49s-6.51.38-9.37-3.75c0 0-14.8 8.23-24.31-2.09s1.5-31.78 18.34-26.48c0 0 5.5 2.78 4.28 7.74s-6 2-3.67-.43 9.28-2.11 9.56 7.87S68 83.49 67 83.06c-2-1-3.14-4.86-1.37-7.73s-.75 7.52-4.71 7.18.27-8.93-3.15-7.59c-2.33.92-5 8.34-4.44 8.55s1.48-18.32 5.19-21c5.4-3.9 7.87 8.75-6.7 12.65"
|
|
85
|
+
}));
|
|
86
|
+
}
|
|
87
|
+
}]);
|
|
88
|
+
|
|
89
|
+
return GCBot;
|
|
90
|
+
}(_react["default"].Component);
|
|
91
|
+
|
|
92
|
+
exports["default"] = GCBot;
|
|
93
|
+
GCBot.propTypes = {
|
|
94
|
+
alignHorizontal: _propTypes["default"].bool,
|
|
95
|
+
className: _propTypes["default"].string,
|
|
96
|
+
dataId: _propTypes["default"].string,
|
|
97
|
+
isRender: _propTypes["default"].bool,
|
|
98
|
+
size: _propTypes["default"].oneOf(['small', 'large']),
|
|
99
|
+
palette: _propTypes["default"].oneOf(['default', 'dark'])
|
|
100
|
+
};
|
|
101
|
+
GCBot.defaultProps = {
|
|
102
|
+
size: 'large',
|
|
103
|
+
alignHorizontal: true,
|
|
104
|
+
isRender: true,
|
|
105
|
+
className: '',
|
|
106
|
+
dataId: 'GCBot',
|
|
107
|
+
palette: 'default'
|
|
108
|
+
};
|
|
109
|
+
|
|
110
|
+
if (false) {
|
|
111
|
+
GCBot.docs = {
|
|
112
|
+
componentGroup: 'SVG'
|
|
113
|
+
};
|
|
114
|
+
}
|
|
@@ -0,0 +1,116 @@
|
|
|
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"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { 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 GCConversation = /*#__PURE__*/function (_React$Component) {
|
|
41
|
+
_inherits(GCConversation, _React$Component);
|
|
42
|
+
|
|
43
|
+
var _super = _createSuper(GCConversation);
|
|
44
|
+
|
|
45
|
+
function GCConversation() {
|
|
46
|
+
_classCallCheck(this, GCConversation);
|
|
47
|
+
|
|
48
|
+
return _super.apply(this, arguments);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
_createClass(GCConversation, [{
|
|
52
|
+
key: "render",
|
|
53
|
+
value: function render() {
|
|
54
|
+
return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
|
|
55
|
+
viewBox: "0 0 200 200",
|
|
56
|
+
name: "GCConversation"
|
|
57
|
+
}, this.props), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("style", null, ".GCConversation_svg__cls-5{isolation:isolate}.GCConversation_svg__cls-2{fill:var(--zd_emptysvg_plus)}.GCConversation_svg__cls-3{fill:var(--zd_emptysvg_medium_circle)}.GCConversation_svg__cls-4{fill:var(--zd_emptysvg_cross)}.GCConversation_svg__cls-5{fill:var(--zd_emptysvg_secondary_fill)}")), /*#__PURE__*/_react["default"].createElement("path", {
|
|
58
|
+
d: "M78.11 58.19S124.77 27 148.38 36.4s39.74 88.3-25.92 123.72-95.36-41.65-95.57-55.3c-.28-13.21 0-44.7 51.22-46.63Z",
|
|
59
|
+
style: {
|
|
60
|
+
isolation: "isolate",
|
|
61
|
+
fill: "var(--zd_emptysvg_primary_fill)",
|
|
62
|
+
opacity: 0.1
|
|
63
|
+
}
|
|
64
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
65
|
+
className: "GCConversation_svg__cls-2",
|
|
66
|
+
d: "M11.89 119.3a.5.5 0 0 1-.47-.52l.41-7.47a.52.52 0 0 1 .53-.47.5.5 0 0 1 .47.53l-.41 7.47a.49.49 0 0 1-.51.48Z"
|
|
67
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
68
|
+
className: "GCConversation_svg__cls-2",
|
|
69
|
+
d: "m15.75 115.77-7.34-.42a.5.5 0 0 1-.47-.53.52.52 0 0 1 .53-.47l7.34.42a.49.49 0 0 1 .47.51.49.49 0 0 1-.52.48Z"
|
|
70
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
71
|
+
className: "GCConversation_svg__cls-3",
|
|
72
|
+
d: "M169.06 22.8a4.75 4.75 0 1 0 4.68 4.82v-.08a4.73 4.73 0 0 0-4.68-4.74Zm0 8.5a3.76 3.76 0 1 1 3.69-3.83v.07a3.72 3.72 0 0 1-3.69 3.76ZM122.31 175.07a3.45 3.45 0 1 0 3.4 3.5 3.43 3.43 0 0 0-3.4-3.5Zm0 5.9a2.45 2.45 0 1 1 2.4-2.5v.05a2.42 2.42 0 0 1-2.4 2.48Z"
|
|
73
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
74
|
+
className: "GCConversation_svg__cls-4",
|
|
75
|
+
d: "M78.82 22a3 3 0 1 0 3 3 3 3 0 0 0-3-3Zm0 5.09a2 2 0 1 1 .05 0ZM187.74 131.81a.49.49 0 0 0-.69 0l-2.38 2.19-2.12-2.4a.5.5 0 0 0-.75.65l2.09 2.38-2.38 2.17a.5.5 0 0 0 0 .7.45.45 0 0 0 .37.16.44.44 0 0 0 .33-.13l2.37-2.15 2.11 2.41a.52.52 0 0 0 .38.17.5.5 0 0 0 .33-.12.51.51 0 0 0 0-.71l-2.13-2.42 2.38-2.16a.47.47 0 0 0 .1-.68Z"
|
|
76
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
77
|
+
className: "GCConversation_svg__cls-5",
|
|
78
|
+
d: "M76 76.74s-8.2 3.16.32 4.26 48 .18 45-2.19S76 76.74 76 76.74ZM75.62 87.45s-4.66 3 .18 3.87 27.05.17 25.38-2-25.56-1.87-25.56-1.87ZM140.53 106.6c0-2.54-2.37-1.14-3.07-2-1.14-1.31-2-3.25.53-5.27 4.3-3.51 12-4 13.61 3.6s-9.22 11.34-11.68 7.91c-.92-1.34.61-3.45.61-4.24ZM58 86.49c0-2-1.84-.88-2.37-1.58a2.57 2.57 0 0 1 .35-4.13c3.34-2.72 9.32-3.16 10.55 2.72s-7.21 8.79-9 6.15c-.79-.88.47-2.65.47-3.16ZM81 116.09s8.17 3.16-.35 4.22-48 .17-45.06-2.29S81 116.09 81 116.09ZM81.33 126.72s4.66 3-.17 3.86-27.06.18-25.39-2 25.56-1.86 25.56-1.86ZM98.9 125.84c0-2 1.84-.88 2.37-1.58a2.57 2.57 0 0 0-.35-4.13c-3.34-2.72-9.31-3.16-10.54 2.72s7.2 8.79 9.05 6.15c.79-1-.53-2.63-.53-3.16Z"
|
|
79
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
80
|
+
d: "m109.18 137.08-23.63.27-.62 7.65-8.26-8s-46.64 1.49-47.52-.62-2.1-26-.61-26 82-1.76 83.53.62 2.46 27 .88 26c-2.63-1.67-.61-38.39-.61-38.39L87 99.49s-10.89 5.62-9.75 5.88-.88-6.5-.88-6.5-24.77 2.38-25.12-1.14-.88-26.88.88-26.88 86.35-1.75 86.7 1.14c0 0 2.9 11.51-1.14 13.09-1.76.71-3.87 1.85-5.89.09l-5.8-4.48s-6.15 6.24-6.06 7.12 7.38 6.14 5.45 9.39-10.72 2.73-10.72 2.73-1 9.22.18 9.4 9.92.79 10.54 2.9-4.57 9-4.57 9 4.13 6.24 5.53 6.15 7-6.59 10.46-3.86 2.72 9.83 3.51 10 3.95-.09 3.95-.09l-.09-17.74s-12.21-.18-11.42-11.51c.71-10.1 12-13.26 17.66-7.46 6.68 6.85 1.93 17-5 17.56L144.4 75s3.34-1.23 3.6 2.11c.18 2.55-.44 10.19 4.22 9.13s6.41-6.32 10.1-4.12 4.13 3.77 3.69 5-5.36 7.91-4.39 9.49 9.48 2.11 10 2.81.79 5.89.18 7.91-6.86 1-8.7 2.46.61 7.64 3.43 11.24c0 0-2.2 5.09-4.57 5.88s-8.26-6.32-11.33-3.51-.71 8.78-2.64 10.19",
|
|
81
|
+
style: {
|
|
82
|
+
fill: "none",
|
|
83
|
+
stroke: "var(--zd_emptysvg_primary_stroke)",
|
|
84
|
+
strokeLinecap: "round",
|
|
85
|
+
strokeLinejoin: "round"
|
|
86
|
+
}
|
|
87
|
+
}));
|
|
88
|
+
}
|
|
89
|
+
}]);
|
|
90
|
+
|
|
91
|
+
return GCConversation;
|
|
92
|
+
}(_react["default"].Component);
|
|
93
|
+
|
|
94
|
+
exports["default"] = GCConversation;
|
|
95
|
+
GCConversation.propTypes = {
|
|
96
|
+
alignHorizontal: _propTypes["default"].bool,
|
|
97
|
+
className: _propTypes["default"].string,
|
|
98
|
+
dataId: _propTypes["default"].string,
|
|
99
|
+
isRender: _propTypes["default"].bool,
|
|
100
|
+
size: _propTypes["default"].oneOf(['small', 'large']),
|
|
101
|
+
palette: _propTypes["default"].oneOf(['default', 'dark'])
|
|
102
|
+
};
|
|
103
|
+
GCConversation.defaultProps = {
|
|
104
|
+
size: 'large',
|
|
105
|
+
alignHorizontal: true,
|
|
106
|
+
isRender: true,
|
|
107
|
+
className: '',
|
|
108
|
+
dataId: 'GCConversation',
|
|
109
|
+
palette: 'default'
|
|
110
|
+
};
|
|
111
|
+
|
|
112
|
+
if (false) {
|
|
113
|
+
GCConversation.docs = {
|
|
114
|
+
componentGroup: 'SVG'
|
|
115
|
+
};
|
|
116
|
+
}
|
package/lib/svg/KBBot.js
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
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"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { 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 KBBot = /*#__PURE__*/function (_React$Component) {
|
|
41
|
+
_inherits(KBBot, _React$Component);
|
|
42
|
+
|
|
43
|
+
var _super = _createSuper(KBBot);
|
|
44
|
+
|
|
45
|
+
function KBBot() {
|
|
46
|
+
_classCallCheck(this, KBBot);
|
|
47
|
+
|
|
48
|
+
return _super.apply(this, arguments);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
_createClass(KBBot, [{
|
|
52
|
+
key: "render",
|
|
53
|
+
value: function render() {
|
|
54
|
+
return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
|
|
55
|
+
viewBox: "0 0 200 200",
|
|
56
|
+
name: "KBBot"
|
|
57
|
+
}, this.props), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("style", null, ".KBBot_svg__cls-2{fill:var(--zd_emptysvg_plus)}.KBBot_svg__cls-3{fill:var(--zd_emptysvg_medium_circle)}.KBBot_svg__cls-4{fill:var(--zd_emptysvg_cross)}.KBBot_svg__cls-5{fill:none;stroke:var(--zd_emptysvg_primary_stroke);stroke-linecap:round;stroke-linejoin:round}.KBBot_svg__cls-6{fill:var(--zd_emptysvg_secondary_fill);}")), /*#__PURE__*/_react["default"].createElement("path", {
|
|
58
|
+
d: "M80.05 58.19S126.71 27 150.32 36.4s39.74 88.3-25.92 123.72-95.4-41.65-95.57-55.3c-.28-13.21 0-44.7 51.22-46.63Z",
|
|
59
|
+
style: {
|
|
60
|
+
fill: "var(--zd_emptysvg_primary_fill)",
|
|
61
|
+
isolation: "isolate",
|
|
62
|
+
opacity: 0.1
|
|
63
|
+
}
|
|
64
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
65
|
+
className: "KBBot_svg__cls-2",
|
|
66
|
+
d: "M13.83 119.3a.49.49 0 0 1-.47-.52l.41-7.47a.5.5 0 0 1 .53-.47.52.52 0 0 1 .47.53l-.41 7.47a.5.5 0 0 1-.51.48Z"
|
|
67
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
68
|
+
className: "KBBot_svg__cls-2",
|
|
69
|
+
d: "m17.69 115.77-7.34-.42a.49.49 0 0 1-.47-.53.5.5 0 0 1 .53-.47l7.34.42a.49.49 0 0 1 .47.51.49.49 0 0 1-.52.48Z"
|
|
70
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
71
|
+
className: "KBBot_svg__cls-3",
|
|
72
|
+
d: "M171 22.8a4.75 4.75 0 1 0 4.68 4.82v-.08A4.73 4.73 0 0 0 171 22.8Zm0 8.5a3.76 3.76 0 1 1 3.69-3.83v.07A3.73 3.73 0 0 1 171 31.3ZM124.25 175.07a3.45 3.45 0 1 0 3.4 3.5 3.43 3.43 0 0 0-3.4-3.5Zm0 5.9a2.45 2.45 0 1 1 2.4-2.5v.05a2.42 2.42 0 0 1-2.4 2.48Z"
|
|
73
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
74
|
+
className: "KBBot_svg__cls-4",
|
|
75
|
+
d: "M80.76 22a3 3 0 1 0 3 3 3 3 0 0 0-3-3Zm0 5.09a2 2 0 1 1 2-2.05 2 2 0 0 1-2 2.05ZM189.68 131.81a.49.49 0 0 0-.69 0l-2.38 2.19-2.12-2.4a.51.51 0 0 0-.71 0 .5.5 0 0 0 0 .61l2.09 2.38-2.38 2.17a.49.49 0 0 0 0 .7.44.44 0 0 0 .37.16.46.46 0 0 0 .33-.13l2.37-2.15 2.11 2.41a.5.5 0 0 0 .38.17.48.48 0 0 0 .33-.83l-2.13-2.42 2.38-2.16a.48.48 0 0 0 .1-.68Z"
|
|
76
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
77
|
+
className: "KBBot_svg__cls-5",
|
|
78
|
+
d: "M100 37.77s8.57.84 7.85 9.48-14 8.28-15.6 0 6.66-8.9 8.94-8-.22 27.23-.22 27.23 33-.17 43.7 28.79-.71 30.54-4.22 24.92-5.26-21.78 6.85-23.7 9.2 27 .52 25.77c0 0-6.84 38.2-47.82 39.94s-47.38-49.81-45-57 5.85-2.12 7.76 2.48.22 22-11.21 18.81S42.66 98.92 57.4 98c0 0 7.93-31.29 41.36-31.53 0 0-.66 28.6 3 32.13 1.35 1.3 6.63 3.43 7 9.37s-5.37 9.6-11.08 8.11-10.4-12.68 1.6-18.5l1-2.89A4.23 4.23 0 0 1 105.5 92c4.08 1.22 9.85 4.85 10.31 15.56.5 11.37-9.68 17-19.15 14.78a16 16 0 0 1-11.49-20.71c1.43-4.1 4.71-8.09 11.69-9.88"
|
|
79
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
80
|
+
className: "KBBot_svg__cls-6",
|
|
81
|
+
cx: 101.12,
|
|
82
|
+
cy: 114.08,
|
|
83
|
+
r: 43.01
|
|
84
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
85
|
+
className: "KBBot_svg__cls-6",
|
|
86
|
+
cx: 101.12,
|
|
87
|
+
cy: 108.08,
|
|
88
|
+
r: 8.97
|
|
89
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
90
|
+
className: "KBBot_svg__cls-6",
|
|
91
|
+
cx: 101.12,
|
|
92
|
+
cy: 46.75,
|
|
93
|
+
r: 8.97
|
|
94
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
95
|
+
className: "KBBot_svg__cls-5",
|
|
96
|
+
d: "M92 150.75s-1.71-8.87-.46-8.87h19.54s-.26 8.46-1.83 8.87-15.68 0-15.68 0"
|
|
97
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
98
|
+
className: "KBBot_svg__cls-6",
|
|
99
|
+
d: "M93.45 149.82s2.86-8 5.1-6 8.41-1.91 10.21-.31-.75 6.34-.75 6.34Z"
|
|
100
|
+
}));
|
|
101
|
+
}
|
|
102
|
+
}]);
|
|
103
|
+
|
|
104
|
+
return KBBot;
|
|
105
|
+
}(_react["default"].Component);
|
|
106
|
+
|
|
107
|
+
exports["default"] = KBBot;
|
|
108
|
+
KBBot.propTypes = {
|
|
109
|
+
alignHorizontal: _propTypes["default"].bool,
|
|
110
|
+
className: _propTypes["default"].string,
|
|
111
|
+
dataId: _propTypes["default"].string,
|
|
112
|
+
isRender: _propTypes["default"].bool,
|
|
113
|
+
size: _propTypes["default"].oneOf(['small', 'large']),
|
|
114
|
+
palette: _propTypes["default"].oneOf(['default', 'dark'])
|
|
115
|
+
};
|
|
116
|
+
KBBot.defaultProps = {
|
|
117
|
+
size: 'large',
|
|
118
|
+
alignHorizontal: true,
|
|
119
|
+
isRender: true,
|
|
120
|
+
className: '',
|
|
121
|
+
dataId: 'KBBot',
|
|
122
|
+
palette: 'default'
|
|
123
|
+
};
|
|
124
|
+
|
|
125
|
+
if (false) {
|
|
126
|
+
KBBot.docs = {
|
|
127
|
+
componentGroup: 'SVG'
|
|
128
|
+
};
|
|
129
|
+
}
|
|
@@ -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"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { 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 Multilingual = /*#__PURE__*/function (_React$Component) {
|
|
41
|
+
_inherits(Multilingual, _React$Component);
|
|
42
|
+
|
|
43
|
+
var _super = _createSuper(Multilingual);
|
|
44
|
+
|
|
45
|
+
function Multilingual() {
|
|
46
|
+
_classCallCheck(this, Multilingual);
|
|
47
|
+
|
|
48
|
+
return _super.apply(this, arguments);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
_createClass(Multilingual, [{
|
|
52
|
+
key: "render",
|
|
53
|
+
value: function render() {
|
|
54
|
+
return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
|
|
55
|
+
viewBox: "0 0 200 200",
|
|
56
|
+
name: "multilingual"
|
|
57
|
+
}, this.props), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("style", null, ".cls-2{fill:var(--zd_emptysvg_plus)}.cls-3{fill:var(--zd_emptysvg_medium_circle)}.cls-4{fill:var(--zd_emptysvg_cross)}.cls-5{fill:none;stroke:var(--zd_emptysvg_primary_stroke);stroke-linecap:round;stroke-linejoin:round}.cls-6{fill:var(--zd_emptysvg_secondary_fill);}")), /*#__PURE__*/_react["default"].createElement("path", {
|
|
58
|
+
d: "M80.22 58s46.66-31.17 70.27-21.79 39.74 88.3-25.92 123.72-95.36-41.65-95.57-55.3c-.28-13.21 0-44.7 51.22-46.63Z",
|
|
59
|
+
style: {
|
|
60
|
+
fill: "var(--zd_emptysvg_primary_fill)",
|
|
61
|
+
opacity: 0.1
|
|
62
|
+
}
|
|
63
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
64
|
+
className: "cls-2",
|
|
65
|
+
d: "M14 119.11a.5.5 0 0 1-.47-.53l.41-7.47a.5.5 0 1 1 1 .06l-.41 7.47a.49.49 0 0 1-.53.47Z"
|
|
66
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
67
|
+
className: "cls-2",
|
|
68
|
+
d: "m17.86 115.58-7.34-.42a.5.5 0 1 1 .06-1l7.34.42a.49.49 0 0 1 .47.52.5.5 0 0 1-.53.48Z"
|
|
69
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
70
|
+
className: "cls-3",
|
|
71
|
+
d: "M171.17 22.61a4.75 4.75 0 1 0 4.68 4.74 4.72 4.72 0 0 0-4.68-4.74Zm0 8.5a3.76 3.76 0 1 1 3.69-3.76 3.73 3.73 0 0 1-3.69 3.76ZM124.42 174.88a3.45 3.45 0 1 0 3.4 3.45 3.43 3.43 0 0 0-3.4-3.45Zm0 5.9a2.45 2.45 0 1 1 2.4-2.45 2.43 2.43 0 0 1-2.4 2.45Z"
|
|
72
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
73
|
+
className: "cls-4",
|
|
74
|
+
d: "M80.93 21.77a3 3 0 1 0 3 3 3 3 0 0 0-3-3Zm0 5.09a2 2 0 1 1 2-2.05 2 2 0 0 1-2 2.05ZM189.85 131.62a.49.49 0 0 0-.7 0l-2.37 2.15-2.12-2.4a.5.5 0 0 0-.75.65l2.09 2.38-2.38 2.17a.49.49 0 0 0 0 .7.49.49 0 0 0 .37.16.5.5 0 0 0 .33-.13l2.37-2.15 2.11 2.41a.52.52 0 0 0 .38.17.54.54 0 0 0 .33-.12.51.51 0 0 0 0-.71l-2.13-2.42 2.38-2.16a.49.49 0 0 0 .09-.7Z"
|
|
75
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
76
|
+
className: "cls-5",
|
|
77
|
+
d: "m27.3 153.13 37.47-.31s23.09-18.58 22.79-19.9-6.16 3.08.59 3.38 30.66 0 30.66 0v-32.42l11.14-.15 22.51 18.15s1.45-24.44-.24-23.47-2.42 6.29 3.63 6.78a62.63 62.63 0 0 0 11.61-.25s4.12-59.53-.24-59.77-71.87-1.45-70.91 1.69-1.69 53.49.25 55.42 21.53-1 21.53-1-19.8 4.86-22.81 3.86-2.21-29.1-2.21-29.1-45.35 0-45.75 2.21-1.2 57.39 1 58 15-.2 15.25.4-.4 17.46-.4 17.46l109.57-1.2"
|
|
78
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
79
|
+
className: "cls-6",
|
|
80
|
+
d: "M80.62 84.09s-24.36-5.65-24.36 6.53 2.61 33.93 5.66 33.49 12.88-14 20.87-8.7 20 14.36 23.93 9.57-13-10.44-17.84-22.62a154.23 154.23 0 0 0-8.26-18.27Z"
|
|
81
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
82
|
+
className: "cls-5",
|
|
83
|
+
d: "m70.5 120.11 9.67-24.73 10.62 25.37M75.26 111.55l11.89.16"
|
|
84
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
85
|
+
className: "cls-6",
|
|
86
|
+
d: "M106.44 58.87a4 4 0 0 1 3.85-3.87c8.6-.27 28.83-.42 28.83 4 0 5.68-16.67 8.16-6 11s22.7 10.29 23.77 17.38-50.76 12.42-50.76 5.32c0-5.55.22-25.45.31-33.83Z"
|
|
87
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
88
|
+
className: "cls-5",
|
|
89
|
+
d: "M122.49 64.36h25.3M121.62 89s21.16-7.85 20.28-24.65"
|
|
90
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
91
|
+
className: "cls-5",
|
|
92
|
+
d: "M130.34 71.78s4.15 13.08 17 17.23M134.86 64.3v-4.28"
|
|
93
|
+
}));
|
|
94
|
+
}
|
|
95
|
+
}]);
|
|
96
|
+
|
|
97
|
+
return Multilingual;
|
|
98
|
+
}(_react["default"].Component);
|
|
99
|
+
|
|
100
|
+
exports["default"] = Multilingual;
|
|
101
|
+
Multilingual.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
|
+
Multilingual.defaultProps = {
|
|
110
|
+
size: 'large',
|
|
111
|
+
alignHorizontal: true,
|
|
112
|
+
isRender: true,
|
|
113
|
+
className: '',
|
|
114
|
+
dataId: 'multilingual',
|
|
115
|
+
palette: 'default'
|
|
116
|
+
};
|
|
117
|
+
|
|
118
|
+
if (false) {
|
|
119
|
+
Multilingual.docs = {
|
|
120
|
+
componentGroup: 'SVG'
|
|
121
|
+
};
|
|
122
|
+
}
|
|
@@ -0,0 +1,125 @@
|
|
|
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"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { 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 NetworkError = /*#__PURE__*/function (_React$Component) {
|
|
41
|
+
_inherits(NetworkError, _React$Component);
|
|
42
|
+
|
|
43
|
+
var _super = _createSuper(NetworkError);
|
|
44
|
+
|
|
45
|
+
function NetworkError() {
|
|
46
|
+
_classCallCheck(this, NetworkError);
|
|
47
|
+
|
|
48
|
+
return _super.apply(this, arguments);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
_createClass(NetworkError, [{
|
|
52
|
+
key: "render",
|
|
53
|
+
value: function render() {
|
|
54
|
+
return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
|
|
55
|
+
viewBox: "0 0 200 200",
|
|
56
|
+
name: "NetworkError"
|
|
57
|
+
}, this.props), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("style", null, ".NetworkError_svg__cls-2{fill:var(--zd_emptysvg_plus)}.NetworkError_svg__cls-3{fill:var(--zd_emptysvg_cross)}")), /*#__PURE__*/_react["default"].createElement("path", {
|
|
58
|
+
d: "M83.58 69.05s45.64-29.14 68.74-20.37S191.2 131.25 127 164.36s-93.29-38.91-93.54-51.68c-.27-12.35-.03-41.8 50.12-43.63Z",
|
|
59
|
+
style: {
|
|
60
|
+
opacity: 0.1,
|
|
61
|
+
fill: "var(--zd_emptysvg_primary_fill)"
|
|
62
|
+
}
|
|
63
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
64
|
+
className: "NetworkError_svg__cls-2",
|
|
65
|
+
d: "M18 111.51a.49.49 0 0 1-.47-.52l.39-6.7a.5.5 0 0 1 .53-.47.51.51 0 0 1 .47.52l-.4 6.71a.5.5 0 0 1-.52.46Z"
|
|
66
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
67
|
+
className: "NetworkError_svg__cls-2",
|
|
68
|
+
d: "m21.71 108.34-7-.38a.5.5 0 1 1 .06-1l7 .38a.5.5 0 0 1 0 1Z"
|
|
69
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
70
|
+
fill: "var(--zd_emptysvg_small_circle)",
|
|
71
|
+
d: "M139.6 186.47a3.15 3.15 0 1 1 3.25-3.15 3.2 3.2 0 0 1-3.25 3.15Zm0-5.3a2.15 2.15 0 1 0 2.25 2.15 2.21 2.21 0 0 0-2.25-2.15Z"
|
|
72
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
73
|
+
className: "NetworkError_svg__cls-3",
|
|
74
|
+
d: "M184.47 146a.46.46 0 0 1-.36-.16l-4.65-5a.49.49 0 0 1 0-.7.51.51 0 0 1 .71 0l4.64 5a.49.49 0 0 1 0 .7.48.48 0 0 1-.34.16Z"
|
|
75
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
76
|
+
className: "NetworkError_svg__cls-3",
|
|
77
|
+
d: "M179.55 145.75a.52.52 0 0 1-.38-.17.49.49 0 0 1 .05-.7l5.2-4.47a.51.51 0 0 1 .71.05.49.49 0 0 1 0 .7l-5.2 4.47a.52.52 0 0 1-.38.12ZM76.11 31.09a3.31 3.31 0 1 1 3.33-3.31 3.33 3.33 0 0 1-3.33 3.31Zm0-5.62a2.31 2.31 0 1 0 2.33 2.31 2.33 2.33 0 0 0-2.33-2.31Z"
|
|
78
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
79
|
+
d: "M156.05 25.35a4.33 4.33 0 1 1 4.37-4.35 4.35 4.35 0 0 1-4.37 4.35Zm0-7.67a3.34 3.34 0 1 0 3.37 3.32 3.36 3.36 0 0 0-3.37-3.32Z",
|
|
80
|
+
style: {
|
|
81
|
+
fill: "var(--zd_emptysvg_medium_circle)"
|
|
82
|
+
}
|
|
83
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
84
|
+
d: "M70.93 54.19S26.22 71.38 35 122.2s73.87 45.48 89.63 29h0a32 32 0 0 0 4.44-5.92c3.32-5.7 10.67-17.76 15.88-22.52 5.83-5.32 21 16.22 24.93 24a3 3 0 0 1-2 4.13c-8.66 1.62-36.29 6.29-37.8.29-1-3.86 2.89-12.52 6.62-19.65a59.16 59.16 0 0 0 6.77-25.33h0c0-20.63-26.22-56.55-55.72-54.26 0 0-14.37 3.48-8.18 13.74S94.32 63.15 94 61.21c-.32-1.76-5.7-3.38-11.3 6.79a6.26 6.26 0 0 1-6.59 3.1c-2.15-.38-4.43-1-5.39-2.07C68.6 66.76 63 71.2 67 74.09s5.15 3.17 3 5.25-8.5 6.33-4.34 8.23 31.3 8.69 35.92.73S63 83.14 58.1 102.82c0 0-3.44 9.45 9.86 12.8s4.07 34 16.47 32c0 0 5.79-1.35 9.14-10 2-5.1 6.88-7.69 9.82-8.38a2.76 2.76 0 0 1 3.38 3.13c-.39 2.41-2.38 6.15-5 7.69-4.71 2.81-4.82-7.32-2.68-10.76s7.45-16 0-21.88-8.47-2.73-8.45-1.55c.09 4.16 11.13 13.93 18 11s10-10.4 9-13.66-8.5-6.69-9.86-4.25 5.16 6.06 12.67 4.34 16.28-.27 15.19 10.14",
|
|
85
|
+
style: {
|
|
86
|
+
fill: "none",
|
|
87
|
+
stroke: "var(--zd_emptysvg_primary_stroke)",
|
|
88
|
+
strokeLinecap: "round",
|
|
89
|
+
strokeLinejoin: "round"
|
|
90
|
+
}
|
|
91
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
92
|
+
d: "M110.51 98.21c6.3 2 8.62 5.37 5 12.94s-12.82 2.44-12.61 5.81-4.17 15-5.29 15.15-6.13 9.57-6.13 9.57-13.37 16.87-14.91-7.39-13.09-12.44-18.26-25.46S71 89.27 71 89.27c13.71 1.28 33.21 7 39.51 8.94ZM168.57 149c-2 4.13-2.42 2.44-9.82 3.42s-24.51 4.24-28.61-1.26c0 0 9.27-27.27 14.85-28.4s25.56 22.07 23.58 26.24Zm-21.85-8a1 1 0 0 0 2 0v-9.24a1 1 0 0 0-2 0Zm3.36 5.4c-.14-1.08-2-1.13-2-1.13-2.72.24-.4 2.8-.4 2.8.71.64 2.54-.64 2.4-1.72Z",
|
|
93
|
+
style: {
|
|
94
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
95
|
+
}
|
|
96
|
+
}));
|
|
97
|
+
}
|
|
98
|
+
}]);
|
|
99
|
+
|
|
100
|
+
return NetworkError;
|
|
101
|
+
}(_react["default"].Component);
|
|
102
|
+
|
|
103
|
+
exports["default"] = NetworkError;
|
|
104
|
+
NetworkError.propTypes = {
|
|
105
|
+
alignHorizontal: _propTypes["default"].bool,
|
|
106
|
+
className: _propTypes["default"].string,
|
|
107
|
+
dataId: _propTypes["default"].string,
|
|
108
|
+
isRender: _propTypes["default"].bool,
|
|
109
|
+
size: _propTypes["default"].oneOf(['small', 'large']),
|
|
110
|
+
palette: _propTypes["default"].oneOf(['default', 'dark'])
|
|
111
|
+
};
|
|
112
|
+
NetworkError.defaultProps = {
|
|
113
|
+
size: 'large',
|
|
114
|
+
alignHorizontal: true,
|
|
115
|
+
isRender: true,
|
|
116
|
+
className: '',
|
|
117
|
+
dataId: 'NetworkError',
|
|
118
|
+
palette: 'default'
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
if (false) {
|
|
122
|
+
NetworkError.docs = {
|
|
123
|
+
componentGroup: 'SVG'
|
|
124
|
+
};
|
|
125
|
+
}
|