@arco-iconbox/react-hiagent 0.3.9 → 0.3.11
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/IconAlertAI/index.d.ts +4 -0
- package/cjs/IconAlertAI/index.js +59 -0
- package/cjs/IconLanguageAiOutlined/index.d.ts +4 -0
- package/cjs/IconLanguageAiOutlined/index.js +60 -0
- package/cjs/IconPluginOutlined/index.d.ts +4 -0
- package/cjs/IconPluginOutlined/index.js +59 -0
- package/cjs/IconTraceAI/index.d.ts +4 -0
- package/cjs/IconTraceAI/index.js +59 -0
- package/cjs/index.d.ts +4 -0
- package/cjs/index.js +9 -1
- package/dist/icon.min.js +1 -1
- package/esm/IconAlertAI/index.d.ts +4 -0
- package/esm/IconAlertAI/index.js +34 -0
- package/esm/IconLanguageAiOutlined/index.d.ts +4 -0
- package/esm/IconLanguageAiOutlined/index.js +35 -0
- package/esm/IconPluginOutlined/index.d.ts +4 -0
- package/esm/IconPluginOutlined/index.js +34 -0
- package/esm/IconTraceAI/index.d.ts +4 -0
- package/esm/IconTraceAI/index.js +34 -0
- package/esm/index.d.ts +4 -0
- package/esm/index.js +4 -0
- package/package.json +1 -1
- package/src/IconAlertAI/index.tsx +15 -0
- package/src/IconLanguageAiOutlined/index.tsx +15 -0
- package/src/IconPluginOutlined/index.tsx +15 -0
- package/src/IconTraceAI/index.tsx +15 -0
- package/src/index.ts +4 -0
- package/umd/IconAlertAI/index.d.ts +4 -0
- package/umd/IconAlertAI/index.js +69 -0
- package/umd/IconLanguageAiOutlined/index.d.ts +4 -0
- package/umd/IconLanguageAiOutlined/index.js +70 -0
- package/umd/IconPluginOutlined/index.d.ts +4 -0
- package/umd/IconPluginOutlined/index.js +69 -0
- package/umd/IconTraceAI/index.d.ts +4 -0
- package/umd/IconTraceAI/index.js +69 -0
- package/umd/index.d.ts +4 -0
- package/umd/index.js +10 -2
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14
|
+
if (k2 === undefined) k2 = k;
|
|
15
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
16
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
17
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
18
|
+
}
|
|
19
|
+
Object.defineProperty(o, k2, desc);
|
|
20
|
+
}) : (function(o, m, k, k2) {
|
|
21
|
+
if (k2 === undefined) k2 = k;
|
|
22
|
+
o[k2] = m[k];
|
|
23
|
+
}));
|
|
24
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
25
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
26
|
+
}) : function(o, v) {
|
|
27
|
+
o["default"] = v;
|
|
28
|
+
});
|
|
29
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
30
|
+
if (mod && mod.__esModule) return mod;
|
|
31
|
+
var result = {};
|
|
32
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
33
|
+
__setModuleDefault(result, mod);
|
|
34
|
+
return result;
|
|
35
|
+
};
|
|
36
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
37
|
+
var t = {};
|
|
38
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
39
|
+
t[p] = s[p];
|
|
40
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
41
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
42
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
43
|
+
t[p[i]] = s[p[i]];
|
|
44
|
+
}
|
|
45
|
+
return t;
|
|
46
|
+
};
|
|
47
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
48
|
+
var react_1 = __importStar(require("react"));
|
|
49
|
+
var context_1 = require("../context");
|
|
50
|
+
function IconAlertAIComponent(props, ref) {
|
|
51
|
+
var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
|
|
52
|
+
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"]);
|
|
53
|
+
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
54
|
+
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
55
|
+
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-AlertAI").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 16 16" }, rest, { ref: ref }),
|
|
56
|
+
react_1.default.createElement("path", { d: "M9.667 13.333c.184 0 .333.15.333.334v.666a.334.334 0 0 1-.333.334H6.333A.334.334 0 0 1 6 14.333v-.666c0-.184.15-.334.333-.334h3.334ZM9 1c.184 0 .333.15.333.333v.507c.254.067.39.109.559.184a.24.24 0 0 1 .093.36l-.5.71a.261.261 0 0 1-.295.094A3.846 3.846 0 0 0 8 3C5.791 3 4 4.869 4 7.174V11h8V8.35a.25.25 0 0 1 .25-.25h.833a.25.25 0 0 1 .25.25V11h1c.184 0 .334.15.334.333V12c0 .184-.15.333-.334.333H1.667A.334.334 0 0 1 1.333 12v-.667c0-.184.15-.333.334-.333h1V7.172c0-2.565 1.7-4.721 4-5.332v-.507c0-.184.15-.333.333-.333h2Zm.161 3.518c.098-.378.635-.38.735-.002l.098.376c.14.528.553.94 1.081 1.08l.375.1c.378.099.377.636-.002.734l-.368.095a1.519 1.519 0 0 0-1.088 1.082l-.096.368c-.1.378-.637.376-.735-.002l-.093-.36a1.518 1.518 0 0 0-1.09-1.09l-.36-.093c-.379-.099-.38-.635-.002-.735l.367-.096a1.52 1.52 0 0 0 1.083-1.088l.095-.37Zm3.557-2.302c.074-.287.48-.288.557-.002l.075.284c.106.4.418.714.818.82l.284.075c.287.075.286.482 0 .556l-.28.072a1.15 1.15 0 0 0-.824.82l-.073.278c-.076.286-.482.285-.557 0l-.07-.274a1.151 1.151 0 0 0-.826-.825l-.273-.07c-.286-.075-.288-.482-.002-.557l.278-.074c.403-.106.716-.421.82-.824l.073-.28Z" }));
|
|
57
|
+
}
|
|
58
|
+
var IconAlertAI = react_1.default.forwardRef(IconAlertAIComponent);
|
|
59
|
+
exports.default = IconAlertAI;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14
|
+
if (k2 === undefined) k2 = k;
|
|
15
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
16
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
17
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
18
|
+
}
|
|
19
|
+
Object.defineProperty(o, k2, desc);
|
|
20
|
+
}) : (function(o, m, k, k2) {
|
|
21
|
+
if (k2 === undefined) k2 = k;
|
|
22
|
+
o[k2] = m[k];
|
|
23
|
+
}));
|
|
24
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
25
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
26
|
+
}) : function(o, v) {
|
|
27
|
+
o["default"] = v;
|
|
28
|
+
});
|
|
29
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
30
|
+
if (mod && mod.__esModule) return mod;
|
|
31
|
+
var result = {};
|
|
32
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
33
|
+
__setModuleDefault(result, mod);
|
|
34
|
+
return result;
|
|
35
|
+
};
|
|
36
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
37
|
+
var t = {};
|
|
38
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
39
|
+
t[p] = s[p];
|
|
40
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
41
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
42
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
43
|
+
t[p[i]] = s[p[i]];
|
|
44
|
+
}
|
|
45
|
+
return t;
|
|
46
|
+
};
|
|
47
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
48
|
+
var react_1 = __importStar(require("react"));
|
|
49
|
+
var context_1 = require("../context");
|
|
50
|
+
function IconLanguageAiOutlinedComponent(props, ref) {
|
|
51
|
+
var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
|
|
52
|
+
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"]);
|
|
53
|
+
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
54
|
+
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
55
|
+
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-language-ai_outlined").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 }),
|
|
56
|
+
react_1.default.createElement("path", { d: "M7.99999 0.666626C8.10153 0.666626 8.20435 0.669231 8.30793 0.674438C8.70694 0.690953 9.09778 0.737942 9.47785 0.815715H9.41601C9.7422 0.880187 10.0587 0.961832 10.3496 1.0553C10.1735 1.72772 9.6272 2.23953 8.94465 2.37105L8.67056 2.42379C8.50674 2.22042 8.33628 2.08173 8.16405 2.02665V2.02795C8.10932 2.01048 8.05489 1.99996 7.99999 1.99996C6.99999 1.99996 5.99995 4.99996 6.01366 7.33329H9.98632C9.9867 7.26867 9.98552 7.20355 9.98437 7.13798C9.9774 6.40216 9.90448 5.81337 9.71483 5.04618C10.5124 5.1142 11.1815 5.70414 11.2676 6.49996C11.2991 6.79175 11.3196 7.07701 11.321 7.33329H13.9635C13.898 6.74054 13.7449 6.17429 13.5195 5.64644C13.5306 5.61052 13.5435 5.57514 13.5579 5.54032C13.6182 5.39482 13.707 5.26238 13.8183 5.151C13.9297 5.03969 14.0622 4.9515 14.2077 4.89124C14.3329 4.83939 14.4659 4.81074 14.6009 4.80334C14.9073 5.43494 15.1248 6.11718 15.2396 6.83394C15.3043 7.16031 15.3333 7.52664 15.3333 7.99996C15.3333 12.05 12.0501 15.3333 7.99999 15.3333C3.9499 15.3333 0.666657 12.05 0.666656 7.99996C0.666656 3.94987 3.9499 0.666626 7.99999 0.666626ZM6.01366 8.66663C5.99995 11 6.99999 14 7.99999 14C8.99999 14 10 11 9.98632 8.66663H6.01366ZM2.03645 8.66663C2.28357 10.9021 3.75905 12.7674 5.77278 13.5729C5.33338 12.6665 4.68916 10.5333 4.67903 8.66663H2.03645ZM11.321 8.66663C11.3108 10.7999 10.6666 12.6665 10.2272 13.5729C12.2409 12.7674 13.7164 10.9021 13.9635 8.66663H11.321ZM5.77278 2.42704C3.75905 3.23256 2.28357 5.09781 2.03645 7.33329H4.67903C4.68916 5.2 5.33338 3.3334 5.77278 2.42704Z" }),
|
|
57
|
+
react_1.default.createElement("path", { d: "M12 0.666626C12.0736 0.666626 12.1329 0.72655 12.1367 0.80009C12.2038 2.09298 13.2403 3.12947 14.5332 3.19657C14.6067 3.20039 14.6667 3.25965 14.6667 3.33329C14.6667 3.40693 14.6067 3.4662 14.5332 3.47001C14.3004 3.48209 14.0759 3.52555 13.8639 3.59631L13.8646 3.59762C13.8082 3.61642 13.7523 3.63667 13.6973 3.65946C13.4444 3.76419 13.2105 3.90884 13.0045 4.08785C12.502 4.52506 12.1735 5.15725 12.1367 5.8665C12.1329 5.94004 12.0736 5.99996 12 5.99996C11.9264 5.99996 11.8671 5.94004 11.8633 5.8665C11.7962 4.57361 10.7597 3.53712 9.46679 3.47001C9.39325 3.4662 9.33332 3.40693 9.33332 3.33329C9.33332 3.25965 9.39325 3.20039 9.46679 3.19657C10.7597 3.12947 11.7962 2.09298 11.8633 0.80009C11.8671 0.72655 11.9264 0.666626 12 0.666626Z" }));
|
|
58
|
+
}
|
|
59
|
+
var IconLanguageAiOutlined = react_1.default.forwardRef(IconLanguageAiOutlinedComponent);
|
|
60
|
+
exports.default = IconLanguageAiOutlined;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14
|
+
if (k2 === undefined) k2 = k;
|
|
15
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
16
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
17
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
18
|
+
}
|
|
19
|
+
Object.defineProperty(o, k2, desc);
|
|
20
|
+
}) : (function(o, m, k, k2) {
|
|
21
|
+
if (k2 === undefined) k2 = k;
|
|
22
|
+
o[k2] = m[k];
|
|
23
|
+
}));
|
|
24
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
25
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
26
|
+
}) : function(o, v) {
|
|
27
|
+
o["default"] = v;
|
|
28
|
+
});
|
|
29
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
30
|
+
if (mod && mod.__esModule) return mod;
|
|
31
|
+
var result = {};
|
|
32
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
33
|
+
__setModuleDefault(result, mod);
|
|
34
|
+
return result;
|
|
35
|
+
};
|
|
36
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
37
|
+
var t = {};
|
|
38
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
39
|
+
t[p] = s[p];
|
|
40
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
41
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
42
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
43
|
+
t[p[i]] = s[p[i]];
|
|
44
|
+
}
|
|
45
|
+
return t;
|
|
46
|
+
};
|
|
47
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
48
|
+
var react_1 = __importStar(require("react"));
|
|
49
|
+
var context_1 = require("../context");
|
|
50
|
+
function IconPluginOutlinedComponent(props, ref) {
|
|
51
|
+
var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
|
|
52
|
+
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"]);
|
|
53
|
+
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
54
|
+
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
55
|
+
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-plugin_outlined").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 }),
|
|
56
|
+
react_1.default.createElement("path", { d: "M8.33332 0.666626C9.57586 0.666626 10.62 1.51647 10.916 2.66663H13.1198C13.2881 2.66664 13.4219 2.69235 13.5625 2.76754C13.7059 2.8442 13.8224 2.96079 13.8991 3.10413C13.9743 3.24473 14 3.37853 14 3.54683V6.99996H13.3333C12.5969 6.99996 12 7.59689 12 8.33329C12 9.06969 12.5969 9.66663 13.3333 9.66663H14V13.1198C14 13.2881 13.9743 13.4218 13.8991 13.5625C13.8224 13.7058 13.7059 13.8224 13.5625 13.899C13.4219 13.9742 13.2881 14 13.1198 14H3.54686C3.37856 14 3.24476 13.9742 3.10416 13.899C2.96082 13.8224 2.84423 13.7058 2.76757 13.5625C2.69238 13.4218 2.66667 13.2881 2.66666 13.1198V10.916C1.5165 10.62 0.666656 9.57583 0.666656 8.33329C0.666656 7.09076 1.5165 6.04664 2.66666 5.75061V3.54683C2.66667 3.37853 2.69238 3.24473 2.76757 3.10413C2.84423 2.96079 2.96082 2.8442 3.10416 2.76754C3.24476 2.69235 3.37856 2.66664 3.54686 2.66663H5.75064C6.04667 1.51647 7.09079 0.666626 8.33332 0.666626ZM8.33332 1.99996C7.59692 1.99996 6.99999 2.59691 6.99999 3.33329V3.99996H3.99999V6.99996H3.33332C2.59694 6.99996 1.99999 7.59689 1.99999 8.33329C1.99999 9.06969 2.59694 9.66663 3.33332 9.66663H3.99999V12.6666H12.6667V10.916C11.5165 10.62 10.6667 9.57583 10.6667 8.33329C10.6667 7.09076 11.5165 6.04664 12.6667 5.75061V3.99996H9.66666V3.33329C9.66666 2.59691 9.06972 1.99996 8.33332 1.99996Z" }));
|
|
57
|
+
}
|
|
58
|
+
var IconPluginOutlined = react_1.default.forwardRef(IconPluginOutlinedComponent);
|
|
59
|
+
exports.default = IconPluginOutlined;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14
|
+
if (k2 === undefined) k2 = k;
|
|
15
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
16
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
17
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
18
|
+
}
|
|
19
|
+
Object.defineProperty(o, k2, desc);
|
|
20
|
+
}) : (function(o, m, k, k2) {
|
|
21
|
+
if (k2 === undefined) k2 = k;
|
|
22
|
+
o[k2] = m[k];
|
|
23
|
+
}));
|
|
24
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
25
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
26
|
+
}) : function(o, v) {
|
|
27
|
+
o["default"] = v;
|
|
28
|
+
});
|
|
29
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
30
|
+
if (mod && mod.__esModule) return mod;
|
|
31
|
+
var result = {};
|
|
32
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
33
|
+
__setModuleDefault(result, mod);
|
|
34
|
+
return result;
|
|
35
|
+
};
|
|
36
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
37
|
+
var t = {};
|
|
38
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
39
|
+
t[p] = s[p];
|
|
40
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
41
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
42
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
43
|
+
t[p[i]] = s[p[i]];
|
|
44
|
+
}
|
|
45
|
+
return t;
|
|
46
|
+
};
|
|
47
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
48
|
+
var react_1 = __importStar(require("react"));
|
|
49
|
+
var context_1 = require("../context");
|
|
50
|
+
function IconTraceAIComponent(props, ref) {
|
|
51
|
+
var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
|
|
52
|
+
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"]);
|
|
53
|
+
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
54
|
+
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
55
|
+
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-TraceAI").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 16 16" }, rest, { ref: ref }),
|
|
56
|
+
react_1.default.createElement("path", { d: "M3.5 6.333c.368 0 .667.299.667.667v.667H6c.184 0 .333.149.333.333v.667A.333.333 0 0 1 6 9H4.167v3.083c0 .194.04.37.102.493l.023.044.023.034.01.013H6c.184 0 .333.149.333.333v.667A.333.333 0 0 1 6 14H4.262c-.854 0-1.399-.858-1.427-1.837l-.002-.08V7c0-.368.299-.667.667-.667Zm10.848 6.334c.176 0 .319.149.319.333v.666a.327.327 0 0 1-.32.334H7.653a.327.327 0 0 1-.319-.334V13c0-.184.143-.333.32-.333h6.695Zm0-5c.176 0 .319.149.319.333v.666a.327.327 0 0 1-.32.334H7.653a.327.327 0 0 1-.319-.334V8c0-.184.143-.333.32-.333h6.695ZM3.105 1.469c.104-.402.673-.403.779-.002l.103.388a1.61 1.61 0 0 0 1.154 1.149l.39.101c.402.104.403.673.002.779l-.397.105c-.56.148-.999.586-1.147 1.147l-.105.397c-.106.401-.675.4-.778-.002l-.102-.39a1.61 1.61 0 0 0-1.149-1.154l-.388-.103c-.401-.106-.4-.675.002-.779l.382-.1a1.61 1.61 0 0 0 1.155-1.154l.1-.382Zm11.243 1.198c.176 0 .319.149.319.333v.667a.327.327 0 0 1-.32.333H7.653a.327.327 0 0 1-.319-.333V3c0-.184.143-.333.32-.333h6.695Z" }));
|
|
57
|
+
}
|
|
58
|
+
var IconTraceAI = react_1.default.forwardRef(IconTraceAIComponent);
|
|
59
|
+
exports.default = IconTraceAI;
|
package/cjs/index.d.ts
CHANGED
|
@@ -870,4 +870,8 @@ export { default as IconDiamond } from './IconDiamond';
|
|
|
870
870
|
export { default as IconXMind } from './IconXMind';
|
|
871
871
|
export { default as IconLog } from './IconLog';
|
|
872
872
|
export { default as IconInferenceEngine } from './IconInferenceEngine';
|
|
873
|
+
export { default as IconAlertAI } from './IconAlertAI';
|
|
874
|
+
export { default as IconTraceAI } from './IconTraceAI';
|
|
875
|
+
export { default as IconPluginOutlined } from './IconPluginOutlined';
|
|
876
|
+
export { default as IconLanguageAiOutlined } from './IconLanguageAiOutlined';
|
|
873
877
|
export * from './type';
|
package/cjs/index.js
CHANGED
|
@@ -34,7 +34,7 @@ exports.IconDataProcessing1 = exports.IconModelExperienceCenter = exports.IconOb
|
|
|
34
34
|
exports.IconThumbUp = exports.IconArrowDown = exports.IconCalendarClock = exports.IconCloseCircle = exports.IconCopy = exports.IconLaunch = exports.IconMenu = exports.IconMessage = exports.IconDataProduction = exports.IconTransform1 = exports.IconAgentChatStop = exports.IconDebugging = exports.IconResultEvaluation = exports.IconTraceText = exports.IconTraceRaw = exports.IconAgentpro = exports.IconAgentproStop = exports.IconTaskDone = exports.IconArtifactsBrowse = exports.IconAgentproReportDownload = exports.IconArtifactsCode = exports.IconAgentproFileList = exports.IconArtifactsKnowledge = exports.IconAgentproConfiguration = exports.IconArtifactsOther = exports.IconArtifactsShell = exports.IconArtifactsSearch = exports.IconArtifactsFile = exports.IconArtifactsPic = exports.IconVideoAgentKnowledge = exports.IconSpeaker = exports.IconExperienceCenter = exports.IconLinkArrowSmall = exports.IconSavedConditions = exports.IconSaveButton = exports.IconText2video1 = exports.IconVolume = exports.IconFullscreen = exports.IconVideoTag = exports.IconMoonshot = exports.IconBGE = exports.IconQwen = exports.IconGPT35 = exports.IconGPT4 = exports.IconDoubao = exports.IconGoogleGemini = exports.IconDeepseek = exports.IconAWS = exports.IconClaude = exports.IconReleaseManagement = void 0;
|
|
35
35
|
exports.IconMermaidFull = exports.IconSafeTag = exports.IconEvalOnline = exports.IconEvalOffline = exports.IconUserLine = exports.IconAdministratorLine = exports.IconMultimodalLoading = exports.IconTextProcessing = exports.IconSankeyDiagram = exports.IconTerminology = exports.IconAgentproFollow = exports.IconUploadFile = exports.IconUploadRadio = exports.IconKnowledgeBoard = exports.IconIndicatorMonitoring = exports.IconLoading2 = exports.IconQAExtract = exports.IconMore = exports.IconKnowledgeDataSynchronization = exports.IconKnowledgeChartTable = exports.IconTreeTerminologySearch = exports.IconTreeQASearch = exports.IconWorkflowKnowledgeRetrieval = exports.IconCompletedComparison = exports.IconPDSeparation = exports.IconRise2 = exports.IconComparison = exports.IconDecline2 = exports.IconAutomaticOptimization = exports.IconPromptWordTemplate = exports.IconGeneratedDocument = exports.IconTreeObject = exports.IconTreeRules = exports.IconDiagramCracking2 = exports.IconTaskCompleted = exports.IconFullscreenExit = exports.IconEmpty = exports.IconTag = exports.IconRotateLeft = exports.IconWorkflowChecklist = exports.IconDataInsight = exports.IconMenuIndicators = exports.IconMenuEvaluationSet = exports.IconDataOnlineTagging = exports.IconMenuHiagent = exports.IconModelGallery = exports.IconThumbDown = exports.IconZoomOut = exports.IconZoomIn = exports.IconMinusCircle = void 0;
|
|
36
36
|
exports.IconAddFolder2 = exports.IconJSONFormat = exports.IconExtractText = exports.IconSchema = exports.IconOperatingHistory = exports.IconLastRun = exports.IconAnnotation = exports.IconNextStep = exports.IconLastStep = exports.IconOptimizeLayout = exports.IconTouchpadMouseWorkflow = exports.IconTouchpadModeWorkflow = exports.IconBuildCommunity = exports.IconWorkflowCondition = exports.IconWorkflowCode = exports.IconModelTraining = exports.IconBasicDatabase = exports.IconGraphTriplet = exports.IconGraphFoldingPanel = exports.IconGraphLWindow = exports.IconGraphNode = exports.IconGraphThumbnail = exports.IconGraphSchema = exports.IconGraphConsolidatedEntity = exports.IconGraphSWindow = exports.IconReport2 = exports.IconIntelligentSynthesis = exports.IconBailian = exports.IconVolcengine = exports.IconOpenai = exports.IconServiceRouting = exports.IconNewWindow1 = exports.IconSpecifiedResource = exports.IconSelfBuiltResources = exports.IconNewNoService = exports.IconNewNoData = exports.IconNewGeneralDefault = exports.IconTabelNodata = exports.IconMermaidClose = exports.IconSkills = exports.IconTimeout = exports.IconGuarantee = exports.IconVoicecallCancel = exports.IconVoicecallConfirm = exports.IconAddAgentEval = exports.IconMermaidScale = exports.IconMermaidCopy = exports.IconMermaidShrink = exports.IconMermaidMagnify = exports.IconMermaidDownload = void 0;
|
|
37
|
-
exports.IconInferenceEngine = exports.IconLog = exports.IconXMind = exports.IconDiamond = exports.IconA2A = exports.IconAiGenerateVariationSpark = exports.IconAiSummary = exports.IconGenerating = exports.IconTrajectoryQa = exports.IconWeworkBot = exports.IconTrajectory = exports.IconWorkflowGraph = exports.IconKit = exports.IconRuntimeConfiguration = exports.IconEnVariable = exports.IconYAML = exports.IconJinja = exports.IconScale = exports.IconLLM = exports.IconSkillCenter = exports.IconSkills2 = exports.IconCreateFile2 = void 0;
|
|
37
|
+
exports.IconLanguageAiOutlined = exports.IconPluginOutlined = exports.IconTraceAI = exports.IconAlertAI = exports.IconInferenceEngine = exports.IconLog = exports.IconXMind = exports.IconDiamond = exports.IconA2A = exports.IconAiGenerateVariationSpark = exports.IconAiSummary = exports.IconGenerating = exports.IconTrajectoryQa = exports.IconWeworkBot = exports.IconTrajectory = exports.IconWorkflowGraph = exports.IconKit = exports.IconRuntimeConfiguration = exports.IconEnVariable = exports.IconYAML = exports.IconJinja = exports.IconScale = exports.IconLLM = exports.IconSkillCenter = exports.IconSkills2 = exports.IconCreateFile2 = void 0;
|
|
38
38
|
var IconWorkflowNodata_1 = require("./IconWorkflowNodata");
|
|
39
39
|
Object.defineProperty(exports, "IconWorkflowNodata", { enumerable: true, get: function () { return __importDefault(IconWorkflowNodata_1).default; } });
|
|
40
40
|
var IconAgentNodata_1 = require("./IconAgentNodata");
|
|
@@ -1779,4 +1779,12 @@ var IconLog_1 = require("./IconLog");
|
|
|
1779
1779
|
Object.defineProperty(exports, "IconLog", { enumerable: true, get: function () { return __importDefault(IconLog_1).default; } });
|
|
1780
1780
|
var IconInferenceEngine_1 = require("./IconInferenceEngine");
|
|
1781
1781
|
Object.defineProperty(exports, "IconInferenceEngine", { enumerable: true, get: function () { return __importDefault(IconInferenceEngine_1).default; } });
|
|
1782
|
+
var IconAlertAI_1 = require("./IconAlertAI");
|
|
1783
|
+
Object.defineProperty(exports, "IconAlertAI", { enumerable: true, get: function () { return __importDefault(IconAlertAI_1).default; } });
|
|
1784
|
+
var IconTraceAI_1 = require("./IconTraceAI");
|
|
1785
|
+
Object.defineProperty(exports, "IconTraceAI", { enumerable: true, get: function () { return __importDefault(IconTraceAI_1).default; } });
|
|
1786
|
+
var IconPluginOutlined_1 = require("./IconPluginOutlined");
|
|
1787
|
+
Object.defineProperty(exports, "IconPluginOutlined", { enumerable: true, get: function () { return __importDefault(IconPluginOutlined_1).default; } });
|
|
1788
|
+
var IconLanguageAiOutlined_1 = require("./IconLanguageAiOutlined");
|
|
1789
|
+
Object.defineProperty(exports, "IconLanguageAiOutlined", { enumerable: true, get: function () { return __importDefault(IconLanguageAiOutlined_1).default; } });
|
|
1782
1790
|
__exportStar(require("./type"), exports);
|