@arco-iconbox/react-hiagent 0.2.100 → 0.3.0
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/IconWeworkBot/index.d.ts +4 -0
- package/cjs/IconWeworkBot/index.js +60 -0
- package/cjs/index.d.ts +1 -0
- package/cjs/index.js +3 -1
- package/dist/icon.min.js +1 -1
- package/esm/IconWeworkBot/index.d.ts +4 -0
- package/esm/IconWeworkBot/index.js +35 -0
- package/esm/index.d.ts +1 -0
- package/esm/index.js +1 -0
- package/package.json +1 -1
- package/src/IconWeworkBot/index.tsx +15 -0
- package/src/index.ts +1 -0
- package/umd/IconWeworkBot/index.d.ts +4 -0
- package/umd/IconWeworkBot/index.js +70 -0
- package/umd/index.d.ts +1 -0
- package/umd/index.js +4 -2
|
@@ -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 IconWeworkBotComponent(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 ? false : _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-wework_bot").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 24 24" }, rest, { ref: ref }),
|
|
56
|
+
react_1.default.createElement("rect", { width: "24", height: "24", fill: useCurrentColor ? 'currentColor' : '#DBEAFF', rx: "4" }),
|
|
57
|
+
react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#0178F0', d: "M14 2.5a1.5 1.5 0 1 1-.905 2.694 2.83 2.83 0 0 0-.583 1.534l.128.011v.003c3.13.212 5.741 2.22 6.725 4.96A2.108 2.108 0 0 1 21 13.758c0 .922-.588 1.703-1.407 1.991-.777 3.291-3.84 5.75-7.501 5.75-3.64 0-6.688-2.43-7.487-5.691A2.107 2.107 0 0 1 3 13.759c0-1.075.8-1.962 1.832-2.094.932-2.55 3.278-4.46 6.136-4.862l.54-.055c.058-1.01.458-1.79.929-2.327.031-.036.064-.07.096-.104A1.5 1.5 0 0 1 14 2.5ZM12.01 9C8.534 9 6 11.706 6 14.426S8.493 19.6 11.97 19.6c3.476 0 6.03-2.493 6.03-5.213S15.486 9 12.01 9Zm-2.715 3.352c.772 0 1.398.63 1.398 1.407s-.626 1.407-1.398 1.407c-.773 0-1.4-.63-1.4-1.407s.628-1.407 1.4-1.407Zm5.595 0c.772 0 1.399.63 1.4 1.407 0 .777-.628 1.407-1.4 1.407-.773 0-1.399-.63-1.399-1.407s.626-1.407 1.399-1.407Z" }));
|
|
58
|
+
}
|
|
59
|
+
var IconWeworkBot = react_1.default.forwardRef(IconWeworkBotComponent);
|
|
60
|
+
exports.default = IconWeworkBot;
|
package/cjs/index.d.ts
CHANGED
|
@@ -860,4 +860,5 @@ export { default as IconRuntimeConfiguration } from './IconRuntimeConfiguration'
|
|
|
860
860
|
export { default as IconKit } from './IconKit';
|
|
861
861
|
export { default as IconWorkflowGraph } from './IconWorkflowGraph';
|
|
862
862
|
export { default as IconTrajectory } from './IconTrajectory';
|
|
863
|
+
export { default as IconWeworkBot } from './IconWeworkBot';
|
|
863
864
|
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.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.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");
|
|
@@ -1759,4 +1759,6 @@ var IconWorkflowGraph_1 = require("./IconWorkflowGraph");
|
|
|
1759
1759
|
Object.defineProperty(exports, "IconWorkflowGraph", { enumerable: true, get: function () { return __importDefault(IconWorkflowGraph_1).default; } });
|
|
1760
1760
|
var IconTrajectory_1 = require("./IconTrajectory");
|
|
1761
1761
|
Object.defineProperty(exports, "IconTrajectory", { enumerable: true, get: function () { return __importDefault(IconTrajectory_1).default; } });
|
|
1762
|
+
var IconWeworkBot_1 = require("./IconWeworkBot");
|
|
1763
|
+
Object.defineProperty(exports, "IconWeworkBot", { enumerable: true, get: function () { return __importDefault(IconWeworkBot_1).default; } });
|
|
1762
1764
|
__exportStar(require("./type"), exports);
|