@arco-iconbox/react-hiagent 0.2.96 → 0.2.97
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/{IconLlm → IconLLM}/index.d.ts +2 -2
- package/cjs/{IconLlm → IconLLM}/index.js +4 -4
- package/cjs/index.d.ts +1 -1
- package/cjs/index.js +3 -3
- package/dist/icon.min.js +1 -1
- package/{umd/IconLlm → esm/IconLLM}/index.d.ts +2 -2
- package/esm/{IconLlm → IconLLM}/index.js +4 -4
- package/esm/index.d.ts +1 -1
- package/esm/index.js +1 -1
- package/package.json +1 -1
- package/src/{IconLlm → IconLLM}/index.tsx +4 -4
- package/src/index.ts +1 -1
- package/{esm/IconLlm → umd/IconLLM}/index.d.ts +2 -2
- package/umd/{IconLlm → IconLLM}/index.js +4 -4
- package/umd/index.d.ts +1 -1
- package/umd/index.js +4 -4
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { OriginIconProps } from '../type';
|
|
3
|
-
declare const
|
|
4
|
-
export default
|
|
3
|
+
declare const IconLLM: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4
|
+
export default IconLLM;
|
|
@@ -47,14 +47,14 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
47
47
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
48
48
|
var react_1 = __importStar(require("react"));
|
|
49
49
|
var context_1 = require("../context");
|
|
50
|
-
function
|
|
50
|
+
function IconLLMComponent(props, ref) {
|
|
51
51
|
var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
|
|
52
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
53
|
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
54
54
|
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
55
|
-
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-
|
|
55
|
+
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-LLM").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
56
|
react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#57A9FB', d: "M17 0H7a7 7 0 0 0-7 7v10a7 7 0 0 0 7 7h10a7 7 0 0 0 7-7V7a7 7 0 0 0-7-7Z" }),
|
|
57
57
|
react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', fillRule: "evenodd", d: "M6.055 9.43a.37.37 0 0 0-.555.315v5.59c0 .196.053.39.153.56.1.171.245.312.418.411l4.64 2.619a.575.575 0 0 0 .774-.205.551.551 0 0 0 .077-.28v-5.87a.059.059 0 0 0-.006-.026.048.048 0 0 0-.02-.02L6.057 9.43ZM12.033 5a.576.576 0 0 0-.283.075L6.334 8.133a.226.226 0 0 0-.114.194.221.221 0 0 0 .114.194l5.414 3.057a.575.575 0 0 0 .564 0l5.417-3.06a.225.225 0 0 0 .084-.306.223.223 0 0 0-.084-.082l-5.413-3.055A.575.575 0 0 0 12.033 5Zm6.533 10.336v-5.59a.363.363 0 0 0-.186-.317.376.376 0 0 0-.37-.001l-5.477 3.093a.056.056 0 0 0-.028.05v5.87a.554.554 0 0 0 .283.483.573.573 0 0 0 .568.002l4.64-2.62a1.11 1.11 0 0 0 .57-.97Z", clipRule: "evenodd" }));
|
|
58
58
|
}
|
|
59
|
-
var
|
|
60
|
-
exports.default =
|
|
59
|
+
var IconLLM = react_1.default.forwardRef(IconLLMComponent);
|
|
60
|
+
exports.default = IconLLM;
|
package/cjs/index.d.ts
CHANGED
|
@@ -851,7 +851,7 @@ export { default as IconAddFolder2 } from './IconAddFolder2';
|
|
|
851
851
|
export { default as IconCreateFile2 } from './IconCreateFile2';
|
|
852
852
|
export { default as IconSkills2 } from './IconSkills2';
|
|
853
853
|
export { default as IconSkillCenter } from './IconSkillCenter';
|
|
854
|
-
export { default as
|
|
854
|
+
export { default as IconLLM } from './IconLLM';
|
|
855
855
|
export { default as IconScale } from './IconScale';
|
|
856
856
|
export { default as IconJinja } from './IconJinja';
|
|
857
857
|
export { default as IconYAML } from './IconYAML';
|
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.IconRuntimeConfiguration = exports.IconEnVariable = exports.IconYAML = exports.IconJinja = exports.IconScale = exports.
|
|
37
|
+
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");
|
|
@@ -1741,8 +1741,8 @@ var IconSkills2_1 = require("./IconSkills2");
|
|
|
1741
1741
|
Object.defineProperty(exports, "IconSkills2", { enumerable: true, get: function () { return __importDefault(IconSkills2_1).default; } });
|
|
1742
1742
|
var IconSkillCenter_1 = require("./IconSkillCenter");
|
|
1743
1743
|
Object.defineProperty(exports, "IconSkillCenter", { enumerable: true, get: function () { return __importDefault(IconSkillCenter_1).default; } });
|
|
1744
|
-
var
|
|
1745
|
-
Object.defineProperty(exports, "
|
|
1744
|
+
var IconLLM_1 = require("./IconLLM");
|
|
1745
|
+
Object.defineProperty(exports, "IconLLM", { enumerable: true, get: function () { return __importDefault(IconLLM_1).default; } });
|
|
1746
1746
|
var IconScale_1 = require("./IconScale");
|
|
1747
1747
|
Object.defineProperty(exports, "IconScale", { enumerable: true, get: function () { return __importDefault(IconScale_1).default; } });
|
|
1748
1748
|
var IconJinja_1 = require("./IconJinja");
|