@arco-iconbox/react-hiagent 0.3.10 → 0.3.12

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.
Files changed (58) hide show
  1. package/cjs/IconAiTest/index.d.ts +4 -0
  2. package/cjs/IconAiTest/index.js +64 -0
  3. package/cjs/IconDiffReport/index.d.ts +4 -0
  4. package/cjs/IconDiffReport/index.js +59 -0
  5. package/cjs/IconDynamicDecisionMaking/index.d.ts +4 -0
  6. package/cjs/IconDynamicDecisionMaking/index.js +63 -0
  7. package/cjs/IconHandTap/index.d.ts +4 -0
  8. package/cjs/IconHandTap/index.js +59 -0
  9. package/cjs/IconLanguageAiOutlined/index.d.ts +4 -0
  10. package/cjs/IconLanguageAiOutlined/index.js +60 -0
  11. package/cjs/IconPluginOutlined/index.d.ts +4 -0
  12. package/cjs/IconPluginOutlined/index.js +59 -0
  13. package/cjs/IconWorkflowWaiting/index.d.ts +4 -0
  14. package/cjs/IconWorkflowWaiting/index.js +60 -0
  15. package/cjs/index.d.ts +7 -0
  16. package/cjs/index.js +15 -1
  17. package/dist/icon.min.js +1 -1
  18. package/esm/IconAiTest/index.d.ts +4 -0
  19. package/esm/IconAiTest/index.js +39 -0
  20. package/esm/IconDiffReport/index.d.ts +4 -0
  21. package/esm/IconDiffReport/index.js +34 -0
  22. package/esm/IconDynamicDecisionMaking/index.d.ts +4 -0
  23. package/esm/IconDynamicDecisionMaking/index.js +38 -0
  24. package/esm/IconHandTap/index.d.ts +4 -0
  25. package/esm/IconHandTap/index.js +34 -0
  26. package/esm/IconLanguageAiOutlined/index.d.ts +4 -0
  27. package/esm/IconLanguageAiOutlined/index.js +35 -0
  28. package/esm/IconPluginOutlined/index.d.ts +4 -0
  29. package/esm/IconPluginOutlined/index.js +34 -0
  30. package/esm/IconWorkflowWaiting/index.d.ts +4 -0
  31. package/esm/IconWorkflowWaiting/index.js +35 -0
  32. package/esm/index.d.ts +7 -0
  33. package/esm/index.js +7 -0
  34. package/package.json +1 -1
  35. package/src/IconAiTest/index.tsx +15 -0
  36. package/src/IconDiffReport/index.tsx +15 -0
  37. package/src/IconDynamicDecisionMaking/index.tsx +15 -0
  38. package/src/IconHandTap/index.tsx +15 -0
  39. package/src/IconLanguageAiOutlined/index.tsx +15 -0
  40. package/src/IconPluginOutlined/index.tsx +15 -0
  41. package/src/IconWorkflowWaiting/index.tsx +15 -0
  42. package/src/index.ts +7 -0
  43. package/umd/IconAiTest/index.d.ts +4 -0
  44. package/umd/IconAiTest/index.js +74 -0
  45. package/umd/IconDiffReport/index.d.ts +4 -0
  46. package/umd/IconDiffReport/index.js +69 -0
  47. package/umd/IconDynamicDecisionMaking/index.d.ts +4 -0
  48. package/umd/IconDynamicDecisionMaking/index.js +73 -0
  49. package/umd/IconHandTap/index.d.ts +4 -0
  50. package/umd/IconHandTap/index.js +69 -0
  51. package/umd/IconLanguageAiOutlined/index.d.ts +4 -0
  52. package/umd/IconLanguageAiOutlined/index.js +70 -0
  53. package/umd/IconPluginOutlined/index.d.ts +4 -0
  54. package/umd/IconPluginOutlined/index.js +69 -0
  55. package/umd/IconWorkflowWaiting/index.d.ts +4 -0
  56. package/umd/IconWorkflowWaiting/index.js +70 -0
  57. package/umd/index.d.ts +7 -0
  58. 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 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,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconDynamicDecisionMaking: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconDynamicDecisionMaking;
@@ -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,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconHandTap: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconHandTap;
@@ -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,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconLanguageAiOutlined: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconLanguageAiOutlined;
@@ -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 IconLanguageAiOutlinedComponent(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-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 }),
65
+ 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" }),
66
+ 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" }));
67
+ }
68
+ var IconLanguageAiOutlined = react_1.default.forwardRef(IconLanguageAiOutlinedComponent);
69
+ exports.default = IconLanguageAiOutlined;
70
+ });
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconPluginOutlined: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconPluginOutlined;
@@ -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 IconPluginOutlinedComponent(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-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 }),
65
+ 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" }));
66
+ }
67
+ var IconPluginOutlined = react_1.default.forwardRef(IconPluginOutlinedComponent);
68
+ exports.default = IconPluginOutlined;
69
+ });
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconWorkflowWaiting: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconWorkflowWaiting;
@@ -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
@@ -872,4 +872,11 @@ export { default as IconLog } from './IconLog';
872
872
  export { default as IconInferenceEngine } from './IconInferenceEngine';
873
873
  export { default as IconAlertAI } from './IconAlertAI';
874
874
  export { default as IconTraceAI } from './IconTraceAI';
875
+ export { default as IconPluginOutlined } from './IconPluginOutlined';
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';
875
882
  export * from './type';