@arco-iconbox/react-hiagent 0.2.42 → 0.2.43
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/IconWorkflowKnowledgeRetrieval/index.d.ts +4 -0
- package/cjs/IconWorkflowKnowledgeRetrieval/index.js +66 -0
- package/cjs/index.d.ts +1 -0
- package/cjs/index.js +3 -1
- package/dist/icon.min.js +1 -1
- package/esm/IconWorkflowKnowledgeRetrieval/index.d.ts +4 -0
- package/esm/IconWorkflowKnowledgeRetrieval/index.js +41 -0
- package/esm/index.d.ts +1 -0
- package/esm/index.js +1 -0
- package/package.json +1 -1
- package/src/IconWorkflowKnowledgeRetrieval/index.tsx +15 -0
- package/src/index.ts +1 -0
- package/umd/IconWorkflowKnowledgeRetrieval/index.d.ts +4 -0
- package/umd/IconWorkflowKnowledgeRetrieval/index.js +76 -0
- package/umd/index.d.ts +1 -0
- package/umd/index.js +4 -2
|
@@ -0,0 +1,66 @@
|
|
|
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 IconWorkflowKnowledgeRetrievalComponent(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-workflow_knowledge_retrieval").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 24 24", fill: useCurrentColor ? 'currentColor' : 'none', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
|
|
56
|
+
react_1.default.createElement("g", { clipPath: "url(#svg_aa002359fd__svg_8bedce4e54__clip0_37122_1120080)" },
|
|
57
|
+
react_1.default.createElement("path", { d: "M16.8 0H7.2C3.22355 0 0 3.22355 0 7.2V16.8C0 20.7765 3.22355 24 7.2 24H16.8C20.7765 24 24 20.7765 24 16.8V7.2C24 3.22355 20.7765 0 16.8 0Z", fill: useCurrentColor ? 'currentColor' : '#F6BB45' }),
|
|
58
|
+
react_1.default.createElement("g", { fill: useCurrentColor ? 'currentColor' : '#fff' },
|
|
59
|
+
react_1.default.createElement("path", { d: "M13.8717 5.00037C14.018 5.00033 14.1585 5.05745 14.263 5.15974L18.1327 8.94022C18.1857 8.99231 18.2281 9.05442 18.2569 9.12303C18.2857 9.19183 18.3003 9.26638 18.3002 9.34099C18.3002 10.8934 18.2895 12.4323 18.2791 13.9734C17.9713 13.4028 17.5232 12.9185 16.9725 12.573C16.3746 12.1982 15.6813 12 14.9756 12H14.7073L14.6943 12.0117C14.1927 12.0494 13.7017 12.1868 13.2529 12.4183C12.7208 12.6931 12.2618 13.0916 11.9146 13.5797C11.5676 14.0679 11.343 14.633 11.2584 15.2262C11.1739 15.8195 11.2314 16.425 11.4283 16.991C11.6253 17.5571 11.9558 18.0678 12.3904 18.4805C12.601 18.6804 12.8338 18.8539 13.083 18.9996H6.26036C5.95056 18.9996 5.70038 18.7495 5.7002 18.4406V5.55935C5.70051 5.4112 5.75951 5.2692 5.86426 5.16443C5.96928 5.05957 6.11195 5.0004 6.26036 5.00037H13.8717ZM12.3435 17.4047C12.3187 17.3649 12.294 17.3249 12.2709 17.2839L12.1842 17.1199C12.2319 17.2177 12.2859 17.3125 12.3435 17.4047ZM17.9358 14.8077L17.9943 15.0164C17.9696 14.9156 17.9379 14.8167 17.9029 14.7187C17.9134 14.7486 17.9262 14.7777 17.9358 14.8077ZM17.774 14.4024C17.8195 14.4962 17.858 14.5931 17.8935 14.6906C17.8579 14.5934 17.8182 14.4973 17.7728 14.4035C17.7518 14.36 17.7278 14.318 17.7049 14.2758C17.7278 14.3179 17.7531 14.3591 17.774 14.4024ZM16.6279 13.1238L16.438 13.0148C16.5022 13.049 16.5661 13.085 16.6279 13.1238ZM8.15058 11.3004C8.05798 11.3004 7.96895 11.337 7.90332 11.4023C7.83772 11.4678 7.80048 11.5569 7.8002 11.6496V12.3504C7.8002 12.5436 7.95738 12.6996 8.15058 12.6996H11.6498C11.843 12.6996 12.0002 12.5436 12.0002 12.3504V11.6496C11.9999 11.5569 11.9627 11.4678 11.8971 11.4023C11.8314 11.337 11.7424 11.3004 11.6498 11.3004H8.15058ZM14.9756 12.6504C14.8982 12.6504 14.8204 12.6529 14.7435 12.6585L14.5138 12.6843C14.6661 12.6613 14.8207 12.6504 14.9756 12.6504ZM8.15058 7.79998C8.05773 7.79998 7.969 7.83747 7.90332 7.90311C7.83765 7.96878 7.80021 8.05749 7.8002 8.15037V8.84998C7.8002 9.04318 7.95738 9.20037 8.15058 9.20037H11.6498C11.843 9.20037 12.0002 9.04318 12.0002 8.84998V8.15037C12.0002 8.05749 11.9627 7.96878 11.8971 7.90311C11.8314 7.83747 11.7427 7.79998 11.6498 7.79998H8.15058Z" }),
|
|
60
|
+
react_1.default.createElement("path", { d: "M15.0142 13.5004C15.4453 13.5004 15.8686 13.6219 16.2339 13.851C16.599 14.0799 16.8919 14.4073 17.0796 14.7953C17.2674 15.1835 17.3426 15.6167 17.2954 16.0453C17.2655 16.3165 17.187 16.5788 17.0659 16.8207L18.0767 17.8138C18.3128 18.046 18.3164 18.4251 18.0845 18.6615C17.8523 18.8979 17.4722 18.9015 17.2358 18.6693L16.2642 17.7152C16.0183 17.8752 15.7447 17.9886 15.4556 18.0453C15.0964 18.1156 14.725 18.0997 14.3735 17.9974C14.0222 17.8952 13.7006 17.7102 13.4351 17.4584C13.1696 17.2063 12.9675 16.8939 12.8472 16.5482C12.7269 16.2027 12.6911 15.8333 12.7427 15.4711C12.7943 15.1087 12.932 14.7636 13.144 14.4652C13.3562 14.1669 13.6371 13.9241 13.9624 13.7562C14.2877 13.5884 14.6481 13.5004 15.0142 13.5004Z" }))),
|
|
61
|
+
react_1.default.createElement("defs", null,
|
|
62
|
+
react_1.default.createElement("clipPath", { id: "svg_aa002359fd__svg_8bedce4e54__clip0_37122_1120080" },
|
|
63
|
+
react_1.default.createElement("rect", { width: "24", height: "24", rx: "6", fill: useCurrentColor ? 'currentColor' : '#fff' }))));
|
|
64
|
+
}
|
|
65
|
+
var IconWorkflowKnowledgeRetrieval = react_1.default.forwardRef(IconWorkflowKnowledgeRetrievalComponent);
|
|
66
|
+
exports.default = IconWorkflowKnowledgeRetrieval;
|
package/cjs/index.d.ts
CHANGED
|
@@ -787,4 +787,5 @@ export { default as IconComparison } from './IconComparison';
|
|
|
787
787
|
export { default as IconRise2 } from './IconRise2';
|
|
788
788
|
export { default as IconPDSeparation } from './IconPDSeparation';
|
|
789
789
|
export { default as IconCompletedComparison } from './IconCompletedComparison';
|
|
790
|
+
export { default as IconWorkflowKnowledgeRetrieval } from './IconWorkflowKnowledgeRetrieval';
|
|
790
791
|
export * from './type';
|
package/cjs/index.js
CHANGED
|
@@ -32,7 +32,7 @@ exports.IconFirstFrame = exports.IconPromptCreateCopy = exports.IconPromptDefaul
|
|
|
32
32
|
exports.IconJapanese = exports.IconLock1 = exports.IconTreeModelVideoGenerationCanc = exports.IconTreeModelVideoGenerationComp = exports.IconTreeModelVideoGeneration = exports.IconOpen = exports.IconInstallationPackage = exports.IconRocket = exports.IconMemoryEmbedding = exports.IconAgentFeedbackIgnore = exports.IconTreeModelImageGeneration = exports.IconSystemCodePackage = exports.IconSystemNetworkControl = exports.IconSystemVoice = exports.IconSystemTimeout = exports.IconSystemAnnouncement = exports.IconSystemLimitations = exports.IconAgentFileConfiguration = exports.IconAudio = exports.IconVideo = exports.IconAgentFileSettings = exports.IconAgentFilesSettings = exports.IconImageEmbedding = exports.IconWorkflowImageGeneration = exports.IconBasicList = exports.IconTable = exports.IconTime = exports.IconWorkflow169 = exports.IconWorkflowFreedom = exports.IconWorkflow32 = exports.IconWorkflow219 = exports.IconWorkflow34 = exports.IconWorkflow11 = exports.IconWorkflow43 = exports.IconWorkflow23 = exports.IconWorkflow916 = exports.IconWorkflow32500 = exports.IconWorkflow219500 = exports.IconWorkflow34500 = exports.IconWorkflow23500 = exports.IconWorkflow43500 = exports.IconWorkflow916500 = exports.IconWorkflow169500 = exports.IconWorkflow11500 = exports.IconWorkflowFreedom500 = exports.IconTreeTrigger = exports.IconKnowledgeFluctuation = exports.IconWorkflowConditions = exports.IconHead2tailFrame = exports.IconImage2image = void 0;
|
|
33
33
|
exports.IconMenuPluginCenter = exports.IconMenuKnowledge = exports.IconTabelNodata = exports.IconImportMusic = exports.IconFastForward30 = exports.IconReturnNow15 = exports.IconVideoNext = exports.IconVideoPlay = exports.IconPrevious = exports.IconPause = exports.IconLowVolume = exports.IconSilence = exports.IconLoudVolume = exports.IconFull = exports.IconShrink = exports.IconPiplconExit = exports.IconPiplcon = exports.IconPieChartNodata = exports.IconLineGraphNodata = exports.IconHorizontalBarChartNodata = exports.IconVerticalBarChartNodata = exports.IconProcessEvaluation = exports.IconModelVoice = exports.IconSpeech2text = exports.IconMultiTimbre = exports.IconMultiLanguage = exports.IconText2speech = exports.IconFirstTokensCost = exports.IconNodeSuccessfullyInvoked = exports.IconFirstCharacterReplyTakesTime = exports.IconNodeInvocation = exports.IconSingleDialogueTimeConsuming = exports.IconNodeTimeConsumption = exports.IconTokenConsumption = exports.IconUploadingLarkbitable = exports.IconVideoRewind10s = exports.IconVideoFastForward10s = exports.IconAudioPlay = exports.IconAudioCycle = exports.IconAudioPause = exports.IconRemoveColor = exports.IconWorkflowVidMatching = exports.IconKnowledgePic = exports.IconRegionFolding = exports.IconSimilarityQuestion = exports.IconDataTransform = exports.IconPluginLocal = exports.IconPluginRemote = exports.IconPluginCloudDeployment = exports.IconAgentThinkingLanguage = void 0;
|
|
34
34
|
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.IconTouchpadMouseWorkflow = exports.IconTouchpadModeWorkflow = 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 = exports.IconDataProcessing1 = exports.IconModelExperienceCenter = exports.IconObservationIntegration = exports.IconModelOptimization = exports.IconComputingManagement = exports.IconMenuObservation = exports.IconMenuAgentCenter = exports.IconMenuEvaluation = exports.IconMenuTask = exports.IconModelService = void 0;
|
|
35
|
-
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 = exports.IconThumbUp = exports.IconArrowDown = exports.IconCalendarClock = exports.IconCloseCircle = exports.IconCopy = exports.IconLaunch = exports.IconMenu = exports.IconMessage = exports.IconDataProduction = exports.IconTransform1 = exports.IconAgentChatStop = exports.IconDebugging = void 0;
|
|
35
|
+
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 = exports.IconThumbUp = exports.IconArrowDown = exports.IconCalendarClock = exports.IconCloseCircle = exports.IconCopy = exports.IconLaunch = exports.IconMenu = exports.IconMessage = exports.IconDataProduction = exports.IconTransform1 = exports.IconAgentChatStop = exports.IconDebugging = void 0;
|
|
36
36
|
var IconWorkflowNodata_1 = require("./IconWorkflowNodata");
|
|
37
37
|
Object.defineProperty(exports, "IconWorkflowNodata", { enumerable: true, get: function () { return __importDefault(IconWorkflowNodata_1).default; } });
|
|
38
38
|
var IconAgentNodata_1 = require("./IconAgentNodata");
|
|
@@ -1611,4 +1611,6 @@ var IconPDSeparation_1 = require("./IconPDSeparation");
|
|
|
1611
1611
|
Object.defineProperty(exports, "IconPDSeparation", { enumerable: true, get: function () { return __importDefault(IconPDSeparation_1).default; } });
|
|
1612
1612
|
var IconCompletedComparison_1 = require("./IconCompletedComparison");
|
|
1613
1613
|
Object.defineProperty(exports, "IconCompletedComparison", { enumerable: true, get: function () { return __importDefault(IconCompletedComparison_1).default; } });
|
|
1614
|
+
var IconWorkflowKnowledgeRetrieval_1 = require("./IconWorkflowKnowledgeRetrieval");
|
|
1615
|
+
Object.defineProperty(exports, "IconWorkflowKnowledgeRetrieval", { enumerable: true, get: function () { return __importDefault(IconWorkflowKnowledgeRetrieval_1).default; } });
|
|
1614
1616
|
__exportStar(require("./type"), exports);
|