@arco-iconbox/react-hiagent 0.3.11 → 0.3.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/IconAiTest/index.d.ts +4 -0
- package/cjs/IconAiTest/index.js +64 -0
- package/cjs/IconArrangementKnDownload/index.d.ts +4 -0
- package/cjs/IconArrangementKnDownload/index.js +59 -0
- package/cjs/IconDiffReport/index.d.ts +4 -0
- package/cjs/IconDiffReport/index.js +59 -0
- package/cjs/IconDynamicDecisionMaking/index.d.ts +4 -0
- package/cjs/IconDynamicDecisionMaking/index.js +63 -0
- package/cjs/IconEditNew/index.d.ts +4 -0
- package/cjs/IconEditNew/index.js +59 -0
- package/cjs/IconHandTap/index.d.ts +4 -0
- package/cjs/IconHandTap/index.js +59 -0
- package/cjs/IconWorkflowWaiting/index.d.ts +4 -0
- package/cjs/IconWorkflowWaiting/index.js +60 -0
- package/cjs/index.d.ts +7 -0
- package/cjs/index.js +15 -1
- package/dist/icon.min.js +1 -1
- package/esm/IconAiTest/index.d.ts +4 -0
- package/esm/IconAiTest/index.js +39 -0
- package/esm/IconArrangementKnDownload/index.d.ts +4 -0
- package/esm/IconArrangementKnDownload/index.js +34 -0
- package/esm/IconDiffReport/index.d.ts +4 -0
- package/esm/IconDiffReport/index.js +34 -0
- package/esm/IconDynamicDecisionMaking/index.d.ts +4 -0
- package/esm/IconDynamicDecisionMaking/index.js +38 -0
- package/esm/IconEditNew/index.d.ts +4 -0
- package/esm/IconEditNew/index.js +34 -0
- package/esm/IconHandTap/index.d.ts +4 -0
- package/esm/IconHandTap/index.js +34 -0
- package/esm/IconWorkflowWaiting/index.d.ts +4 -0
- package/esm/IconWorkflowWaiting/index.js +35 -0
- package/esm/index.d.ts +7 -0
- package/esm/index.js +7 -0
- package/package.json +1 -1
- package/src/IconAiTest/index.tsx +15 -0
- package/src/IconArrangementKnDownload/index.tsx +15 -0
- package/src/IconDiffReport/index.tsx +15 -0
- package/src/IconDynamicDecisionMaking/index.tsx +15 -0
- package/src/IconEditNew/index.tsx +15 -0
- package/src/IconHandTap/index.tsx +15 -0
- package/src/IconWorkflowWaiting/index.tsx +15 -0
- package/src/index.ts +7 -0
- package/umd/IconAiTest/index.d.ts +4 -0
- package/umd/IconAiTest/index.js +74 -0
- package/umd/IconArrangementKnDownload/index.d.ts +4 -0
- package/umd/IconArrangementKnDownload/index.js +69 -0
- package/umd/IconDiffReport/index.d.ts +4 -0
- package/umd/IconDiffReport/index.js +69 -0
- package/umd/IconDynamicDecisionMaking/index.d.ts +4 -0
- package/umd/IconDynamicDecisionMaking/index.js +73 -0
- package/umd/IconEditNew/index.d.ts +4 -0
- package/umd/IconEditNew/index.js +69 -0
- package/umd/IconHandTap/index.d.ts +4 -0
- package/umd/IconHandTap/index.js +69 -0
- package/umd/IconWorkflowWaiting/index.d.ts +4 -0
- package/umd/IconWorkflowWaiting/index.js +70 -0
- package/umd/index.d.ts +7 -0
- package/umd/index.js +16 -2
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
15
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
16
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
17
|
+
}
|
|
18
|
+
Object.defineProperty(o, k2, desc);
|
|
19
|
+
}) : (function(o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
o[k2] = m[k];
|
|
22
|
+
}));
|
|
23
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
24
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
25
|
+
}) : function(o, v) {
|
|
26
|
+
o["default"] = v;
|
|
27
|
+
});
|
|
28
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
32
|
+
__setModuleDefault(result, mod);
|
|
33
|
+
return result;
|
|
34
|
+
};
|
|
35
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
36
|
+
var t = {};
|
|
37
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
38
|
+
t[p] = s[p];
|
|
39
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
40
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
41
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
42
|
+
t[p[i]] = s[p[i]];
|
|
43
|
+
}
|
|
44
|
+
return t;
|
|
45
|
+
};
|
|
46
|
+
(function (factory) {
|
|
47
|
+
if (typeof module === "object" && typeof module.exports === "object") {
|
|
48
|
+
var v = factory(require, exports);
|
|
49
|
+
if (v !== undefined) module.exports = v;
|
|
50
|
+
}
|
|
51
|
+
else if (typeof define === "function" && define.amd) {
|
|
52
|
+
define(["require", "exports", "react", "../context"], factory);
|
|
53
|
+
}
|
|
54
|
+
})(function (require, exports) {
|
|
55
|
+
"use strict";
|
|
56
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57
|
+
var react_1 = __importStar(require("react"));
|
|
58
|
+
var context_1 = require("../context");
|
|
59
|
+
function IconArrangementKnDownloadComponent(props, ref) {
|
|
60
|
+
var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
|
|
61
|
+
var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? false : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
|
|
62
|
+
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
63
|
+
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
64
|
+
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-arrangement-kn-download").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 18 18" }, rest, { ref: ref }),
|
|
65
|
+
react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#50A3EF', d: "M10.625 1.575c.656 0 1.286.26 1.75.725l2.32 2.32a2.48 2.48 0 0 1 .725 1.75v7.58a2.475 2.475 0 0 1-2.475 2.475h-7.9A2.475 2.475 0 0 1 2.57 13.95v-9.9a2.475 2.475 0 0 1 2.475-2.475h5.58Zm-1.7 4.5a.675.675 0 0 0-.675.675v3.621L7.153 9.272a.675.675 0 1 0-.954.955l2.25 2.25c.263.264.69.264.954 0l2.25-2.25a.676.676 0 0 0-.954-.955L9.6 10.37V6.75a.675.675 0 0 0-.677-.674Z" }));
|
|
66
|
+
}
|
|
67
|
+
var IconArrangementKnDownload = react_1.default.forwardRef(IconArrangementKnDownloadComponent);
|
|
68
|
+
exports.default = IconArrangementKnDownload;
|
|
69
|
+
});
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
15
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
16
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
17
|
+
}
|
|
18
|
+
Object.defineProperty(o, k2, desc);
|
|
19
|
+
}) : (function(o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
o[k2] = m[k];
|
|
22
|
+
}));
|
|
23
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
24
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
25
|
+
}) : function(o, v) {
|
|
26
|
+
o["default"] = v;
|
|
27
|
+
});
|
|
28
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
32
|
+
__setModuleDefault(result, mod);
|
|
33
|
+
return result;
|
|
34
|
+
};
|
|
35
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
36
|
+
var t = {};
|
|
37
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
38
|
+
t[p] = s[p];
|
|
39
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
40
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
41
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
42
|
+
t[p[i]] = s[p[i]];
|
|
43
|
+
}
|
|
44
|
+
return t;
|
|
45
|
+
};
|
|
46
|
+
(function (factory) {
|
|
47
|
+
if (typeof module === "object" && typeof module.exports === "object") {
|
|
48
|
+
var v = factory(require, exports);
|
|
49
|
+
if (v !== undefined) module.exports = v;
|
|
50
|
+
}
|
|
51
|
+
else if (typeof define === "function" && define.amd) {
|
|
52
|
+
define(["require", "exports", "react", "../context"], factory);
|
|
53
|
+
}
|
|
54
|
+
})(function (require, exports) {
|
|
55
|
+
"use strict";
|
|
56
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57
|
+
var react_1 = __importStar(require("react"));
|
|
58
|
+
var context_1 = require("../context");
|
|
59
|
+
function IconDiffReportComponent(props, ref) {
|
|
60
|
+
var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
|
|
61
|
+
var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? true : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
|
|
62
|
+
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
63
|
+
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
64
|
+
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-diff_report").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 16 16", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
|
|
65
|
+
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.31461 1.70736C8.31461 1.3164 7.99764 0.999466 7.60672 0.999466C7.21573 0.999466 6.89883 1.3164 6.89883 1.70736V1.78601H3.67414C2.41439 1.78601 1.39316 2.80724 1.39316 4.067V11.6178C1.39316 12.8776 2.41439 13.8988 3.67414 13.8988H6.89883V14.2921C6.89883 14.6831 7.21573 15 7.60672 15C7.99764 15 8.31461 14.6831 8.31461 14.2921V1.70736ZM3.67414 3.2018C3.1963 3.2018 2.80894 3.58916 2.80894 4.067V11.6178C2.80894 12.0957 3.1963 12.483 3.67414 12.483H6.74168V3.2018H3.67414ZM12.326 12.7983C12.8038 12.7983 13.1912 12.4109 13.1912 11.9331V4.06761C13.1912 3.58978 12.8038 3.20241 12.326 3.20241H9.96636C9.57537 3.20241 9.25847 2.88548 9.25847 2.49452C9.25847 2.10356 9.57537 1.78663 9.96636 1.78663H12.326C13.5857 1.78663 14.607 2.80786 14.607 4.06761V11.9331C14.607 13.1928 13.5857 14.2141 12.326 14.2141H9.96636C9.57537 14.2141 9.25847 13.8971 9.25847 13.5062C9.25847 13.1152 9.57537 12.7983 9.96636 12.7983H12.326Z" }));
|
|
66
|
+
}
|
|
67
|
+
var IconDiffReport = react_1.default.forwardRef(IconDiffReportComponent);
|
|
68
|
+
exports.default = IconDiffReport;
|
|
69
|
+
});
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
15
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
16
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
17
|
+
}
|
|
18
|
+
Object.defineProperty(o, k2, desc);
|
|
19
|
+
}) : (function(o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
o[k2] = m[k];
|
|
22
|
+
}));
|
|
23
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
24
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
25
|
+
}) : function(o, v) {
|
|
26
|
+
o["default"] = v;
|
|
27
|
+
});
|
|
28
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
32
|
+
__setModuleDefault(result, mod);
|
|
33
|
+
return result;
|
|
34
|
+
};
|
|
35
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
36
|
+
var t = {};
|
|
37
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
38
|
+
t[p] = s[p];
|
|
39
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
40
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
41
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
42
|
+
t[p[i]] = s[p[i]];
|
|
43
|
+
}
|
|
44
|
+
return t;
|
|
45
|
+
};
|
|
46
|
+
(function (factory) {
|
|
47
|
+
if (typeof module === "object" && typeof module.exports === "object") {
|
|
48
|
+
var v = factory(require, exports);
|
|
49
|
+
if (v !== undefined) module.exports = v;
|
|
50
|
+
}
|
|
51
|
+
else if (typeof define === "function" && define.amd) {
|
|
52
|
+
define(["require", "exports", "react", "../context"], factory);
|
|
53
|
+
}
|
|
54
|
+
})(function (require, exports) {
|
|
55
|
+
"use strict";
|
|
56
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57
|
+
var react_1 = __importStar(require("react"));
|
|
58
|
+
var context_1 = require("../context");
|
|
59
|
+
function IconDynamicDecisionMakingComponent(props, ref) {
|
|
60
|
+
var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
|
|
61
|
+
var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? true : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
|
|
62
|
+
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
63
|
+
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
64
|
+
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-dynamic-decision-making").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 16 16", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
|
|
65
|
+
react_1.default.createElement("g", { clipPath: "url(#svg_128d199c52__clip0_2418_15298)" },
|
|
66
|
+
react_1.default.createElement("path", { d: "M14.0566 7.71387C14.1173 7.65073 14.2156 7.65084 14.2764 7.71387L15.9697 9.48145C16.0102 9.52368 16.0101 9.59247 15.9697 9.63477C15.9503 9.65502 15.9239 9.66694 15.8965 9.66699H14.8008C14.053 12.7282 11.2916 15 8 15C4.70842 15 1.947 12.7282 1.19922 9.66699H2.58203C3.29381 11.9831 5.45049 13.667 8 13.667C10.5495 13.667 12.7062 11.9831 13.418 9.66699H12.4375C12.3803 9.66699 12.3331 9.6183 12.333 9.55859C12.333 9.52988 12.3438 9.50175 12.3633 9.48145L14.0566 7.71387ZM7.76465 5C7.89478 4.87006 8.10522 4.87006 8.23535 5L10.5928 7.35742C10.7227 7.48756 10.7227 7.69801 10.5928 7.82812L10.1211 8.2998C9.99099 8.4298 9.78055 8.42972 9.65039 8.2998L8.6709 7.32031V10.7646C8.67071 10.9485 8.52179 11.0976 8.33789 11.0977H7.6709C7.48699 11.0976 7.33808 10.9485 7.33789 10.7646V7.31152L6.34961 8.2998C6.21945 8.42972 6.00901 8.42981 5.87891 8.2998L5.40723 7.82812C5.2773 7.69801 5.27733 7.48756 5.40723 7.35742L7.76465 5ZM3.5625 6.33301C3.59001 6.33301 3.61727 6.34493 3.63672 6.36523C3.67117 6.40149 3.67609 6.45738 3.65137 6.49902L3.63672 6.51855L1.94336 8.28613C1.89027 8.34139 1.80834 8.34804 1.74805 8.30664L1.72363 8.28613L0.0302734 6.51855C0.0108242 6.49825 0 6.47012 0 6.44141C9.17717e-05 6.39024 0.0343238 6.34714 0.0800781 6.33594L0.103516 6.33301H1.19922C1.947 3.27177 4.70842 1 8 1C11.2916 1 14.053 3.27177 14.8008 6.33301H13.418C12.7062 4.01688 10.5495 2.33301 8 2.33301C5.45049 2.33301 3.29381 4.01688 2.58203 6.33301H3.5625Z" })),
|
|
67
|
+
react_1.default.createElement("defs", null,
|
|
68
|
+
react_1.default.createElement("clipPath", { id: "svg_128d199c52__clip0_2418_15298" },
|
|
69
|
+
react_1.default.createElement("path", { d: "M0 0H16V16H0z" }))));
|
|
70
|
+
}
|
|
71
|
+
var IconDynamicDecisionMaking = react_1.default.forwardRef(IconDynamicDecisionMakingComponent);
|
|
72
|
+
exports.default = IconDynamicDecisionMaking;
|
|
73
|
+
});
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
15
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
16
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
17
|
+
}
|
|
18
|
+
Object.defineProperty(o, k2, desc);
|
|
19
|
+
}) : (function(o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
o[k2] = m[k];
|
|
22
|
+
}));
|
|
23
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
24
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
25
|
+
}) : function(o, v) {
|
|
26
|
+
o["default"] = v;
|
|
27
|
+
});
|
|
28
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
32
|
+
__setModuleDefault(result, mod);
|
|
33
|
+
return result;
|
|
34
|
+
};
|
|
35
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
36
|
+
var t = {};
|
|
37
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
38
|
+
t[p] = s[p];
|
|
39
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
40
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
41
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
42
|
+
t[p[i]] = s[p[i]];
|
|
43
|
+
}
|
|
44
|
+
return t;
|
|
45
|
+
};
|
|
46
|
+
(function (factory) {
|
|
47
|
+
if (typeof module === "object" && typeof module.exports === "object") {
|
|
48
|
+
var v = factory(require, exports);
|
|
49
|
+
if (v !== undefined) module.exports = v;
|
|
50
|
+
}
|
|
51
|
+
else if (typeof define === "function" && define.amd) {
|
|
52
|
+
define(["require", "exports", "react", "../context"], factory);
|
|
53
|
+
}
|
|
54
|
+
})(function (require, exports) {
|
|
55
|
+
"use strict";
|
|
56
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57
|
+
var react_1 = __importStar(require("react"));
|
|
58
|
+
var context_1 = require("../context");
|
|
59
|
+
function IconEditNewComponent(props, ref) {
|
|
60
|
+
var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
|
|
61
|
+
var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? true : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
|
|
62
|
+
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
63
|
+
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
64
|
+
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-edit_new").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 24 24", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
|
|
65
|
+
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M16.2636 3.57066C15.5216 2.82866 14.3185 2.82866 13.5765 3.57066L4.89677 12.2504C4.63422 12.513 4.48672 12.8691 4.48672 13.2404V15.9603C4.48672 16.7554 5.13129 17.3999 5.9264 17.3999H8.64628C9.01758 17.3999 9.37367 17.2524 9.63623 16.9899L18.316 8.31012C19.058 7.56812 19.058 6.36511 18.316 5.62311L16.2636 3.57066ZM14.8493 4.84345C14.8884 4.8044 14.9517 4.8044 14.9908 4.84345L17.0432 6.8959C17.0823 6.93496 17.0823 6.99827 17.0432 7.03732L8.48059 15.5999H6.28672V13.4061L14.8493 4.84345ZM4.5 19.5999C4.00294 19.5999 3.6 20.0029 3.6 20.4999C3.6 20.997 4.00294 21.3999 4.5 21.3999H19.5C19.9971 21.3999 20.4 20.997 20.4 20.4999C20.4 20.0029 19.9971 19.5999 19.5 19.5999H4.5Z" }));
|
|
66
|
+
}
|
|
67
|
+
var IconEditNew = react_1.default.forwardRef(IconEditNewComponent);
|
|
68
|
+
exports.default = IconEditNew;
|
|
69
|
+
});
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
15
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
16
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
17
|
+
}
|
|
18
|
+
Object.defineProperty(o, k2, desc);
|
|
19
|
+
}) : (function(o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
o[k2] = m[k];
|
|
22
|
+
}));
|
|
23
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
24
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
25
|
+
}) : function(o, v) {
|
|
26
|
+
o["default"] = v;
|
|
27
|
+
});
|
|
28
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
32
|
+
__setModuleDefault(result, mod);
|
|
33
|
+
return result;
|
|
34
|
+
};
|
|
35
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
36
|
+
var t = {};
|
|
37
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
38
|
+
t[p] = s[p];
|
|
39
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
40
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
41
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
42
|
+
t[p[i]] = s[p[i]];
|
|
43
|
+
}
|
|
44
|
+
return t;
|
|
45
|
+
};
|
|
46
|
+
(function (factory) {
|
|
47
|
+
if (typeof module === "object" && typeof module.exports === "object") {
|
|
48
|
+
var v = factory(require, exports);
|
|
49
|
+
if (v !== undefined) module.exports = v;
|
|
50
|
+
}
|
|
51
|
+
else if (typeof define === "function" && define.amd) {
|
|
52
|
+
define(["require", "exports", "react", "../context"], factory);
|
|
53
|
+
}
|
|
54
|
+
})(function (require, exports) {
|
|
55
|
+
"use strict";
|
|
56
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57
|
+
var react_1 = __importStar(require("react"));
|
|
58
|
+
var context_1 = require("../context");
|
|
59
|
+
function IconHandTapComponent(props, ref) {
|
|
60
|
+
var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
|
|
61
|
+
var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? true : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
|
|
62
|
+
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
63
|
+
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
64
|
+
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-hand_tap").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 40 40", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
|
|
65
|
+
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M23.6513 6.51186C23.0656 5.92608 23.0656 4.97633 23.6513 4.39054L25.4191 2.62278C26.0049 2.037 26.9546 2.037 27.5404 2.62278C28.1263 3.20856 28.1263 4.15831 27.5404 4.74409L25.7726 6.51186C25.1869 7.09766 24.2371 7.09766 23.6513 6.51186ZM18.1616 10.1001C17.2581 10.1001 16.5257 10.8325 16.5257 11.736V24.2708C16.5257 24.8455 16.1786 25.3632 15.647 25.5815C15.1153 25.7997 14.5046 25.675 14.1009 25.2662L12.723 23.8703C12.0279 23.1662 10.9299 23.1062 10.1655 23.7255C9.46129 24.2963 9.28354 25.2208 9.67247 25.9283C11.0226 28.3842 13.2812 31.8438 16.1292 34.0348C17.2841 34.9233 18.8553 35.25 20.6286 35.25H25.9234C28.8229 35.25 31.1734 32.8995 31.1734 30V27.9143V25.3962C31.1734 24.557 30.6276 23.8155 29.8264 23.566L20.7929 20.7537C20.2008 20.5693 19.7974 20.0212 19.7974 19.401V11.736C19.7974 10.8325 19.0651 10.1001 18.1616 10.1001ZM18.1616 7.26678C20.6298 7.26678 22.6308 9.26769 22.6308 11.736V18.3583L30.6686 20.8608C32.6541 21.479 34.0068 23.3167 34.0068 25.3962V27.9143V30C34.0068 34.4643 30.3876 38.0833 25.9234 38.0833H20.6286C18.5833 38.0833 16.2731 37.7203 14.4015 36.2805C11.0802 33.7253 8.59339 29.8467 7.18966 27.2933C6.08956 25.2925 6.69617 22.8902 8.38161 21.5243C9.92926 20.2702 12.0363 20.1412 13.6924 21.0775V11.736C13.6924 9.26769 15.6933 7.26678 18.1616 7.26678ZM26.3786 10.517C25.5503 10.517 24.8786 11.1885 24.8786 12.017C24.8786 12.8454 25.5503 13.517 26.3786 13.517H28.8786C29.7071 13.517 30.3786 12.8454 30.3786 12.017C30.3786 11.1885 29.7071 10.517 28.8786 10.517H26.3786ZM12.6375 6.51186C13.2233 5.92608 13.2233 4.97633 12.6375 4.39054L10.8697 2.62278C10.2839 2.037 9.33419 2.037 8.74841 2.62278C8.16261 3.20856 8.16261 4.15831 8.74841 4.74409L10.5162 6.51186C11.102 7.09766 12.0517 7.09766 12.6375 6.51186ZM9.91016 10.517C10.7386 10.517 11.4102 11.1885 11.4102 12.017C11.4102 12.8454 10.7386 13.517 9.91016 13.517H7.41016C6.58174 13.517 5.91016 12.8454 5.91016 12.017C5.91016 11.1885 6.58174 10.517 7.41016 10.517H9.91016Z" }));
|
|
66
|
+
}
|
|
67
|
+
var IconHandTap = react_1.default.forwardRef(IconHandTapComponent);
|
|
68
|
+
exports.default = IconHandTap;
|
|
69
|
+
});
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
15
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
16
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
17
|
+
}
|
|
18
|
+
Object.defineProperty(o, k2, desc);
|
|
19
|
+
}) : (function(o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
o[k2] = m[k];
|
|
22
|
+
}));
|
|
23
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
24
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
25
|
+
}) : function(o, v) {
|
|
26
|
+
o["default"] = v;
|
|
27
|
+
});
|
|
28
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
32
|
+
__setModuleDefault(result, mod);
|
|
33
|
+
return result;
|
|
34
|
+
};
|
|
35
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
36
|
+
var t = {};
|
|
37
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
38
|
+
t[p] = s[p];
|
|
39
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
40
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
41
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
42
|
+
t[p[i]] = s[p[i]];
|
|
43
|
+
}
|
|
44
|
+
return t;
|
|
45
|
+
};
|
|
46
|
+
(function (factory) {
|
|
47
|
+
if (typeof module === "object" && typeof module.exports === "object") {
|
|
48
|
+
var v = factory(require, exports);
|
|
49
|
+
if (v !== undefined) module.exports = v;
|
|
50
|
+
}
|
|
51
|
+
else if (typeof define === "function" && define.amd) {
|
|
52
|
+
define(["require", "exports", "react", "../context"], factory);
|
|
53
|
+
}
|
|
54
|
+
})(function (require, exports) {
|
|
55
|
+
"use strict";
|
|
56
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57
|
+
var react_1 = __importStar(require("react"));
|
|
58
|
+
var context_1 = require("../context");
|
|
59
|
+
function IconWorkflowWaitingComponent(props, ref) {
|
|
60
|
+
var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
|
|
61
|
+
var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? false : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
|
|
62
|
+
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
63
|
+
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
64
|
+
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-workflow_waiting").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 20 20" }, rest, { ref: ref }),
|
|
65
|
+
react_1.default.createElement("rect", { width: "20", height: "20", fill: useCurrentColor ? 'currentColor' : '#F6BB45', rx: "6" }),
|
|
66
|
+
react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', fillRule: "evenodd", d: "M16.222 10a6.222 6.222 0 1 1-12.444 0 6.222 6.222 0 0 1 12.444 0Zm-3.11.835v-.692a.345.345 0 0 0-.345-.345h-2.552V7.233a.345.345 0 0 0-.345-.344h-.69a.345.345 0 0 0-.346.345v3.6c0 .085.031.167.087.23l.03.029.031.025a.346.346 0 0 0 .198.063h3.588a.345.345 0 0 0 .346-.346Z", clipRule: "evenodd" }));
|
|
67
|
+
}
|
|
68
|
+
var IconWorkflowWaiting = react_1.default.forwardRef(IconWorkflowWaitingComponent);
|
|
69
|
+
exports.default = IconWorkflowWaiting;
|
|
70
|
+
});
|
package/umd/index.d.ts
CHANGED
|
@@ -874,4 +874,11 @@ export { default as IconAlertAI } from './IconAlertAI';
|
|
|
874
874
|
export { default as IconTraceAI } from './IconTraceAI';
|
|
875
875
|
export { default as IconPluginOutlined } from './IconPluginOutlined';
|
|
876
876
|
export { default as IconLanguageAiOutlined } from './IconLanguageAiOutlined';
|
|
877
|
+
export { default as IconDynamicDecisionMaking } from './IconDynamicDecisionMaking';
|
|
878
|
+
export { default as IconHandTap } from './IconHandTap';
|
|
879
|
+
export { default as IconAiTest } from './IconAiTest';
|
|
880
|
+
export { default as IconDiffReport } from './IconDiffReport';
|
|
881
|
+
export { default as IconWorkflowWaiting } from './IconWorkflowWaiting';
|
|
882
|
+
export { default as IconEditNew } from './IconEditNew';
|
|
883
|
+
export { default as IconArrangementKnDownload } from './IconArrangementKnDownload';
|
|
877
884
|
export * from './type';
|