@arco-iconbox/react-hiagent 0.2.39 → 0.2.42
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/IconCompletedComparison/index.d.ts +4 -0
- package/cjs/IconCompletedComparison/index.js +59 -0
- package/cjs/IconPDSeparation/index.d.ts +4 -0
- package/cjs/IconPDSeparation/index.js +60 -0
- package/cjs/index.d.ts +2 -0
- package/cjs/index.js +5 -1
- package/dist/icon.min.js +1 -1
- package/esm/IconCompletedComparison/index.d.ts +4 -0
- package/esm/IconCompletedComparison/index.js +34 -0
- package/esm/IconPDSeparation/index.d.ts +4 -0
- package/esm/IconPDSeparation/index.js +35 -0
- package/esm/index.d.ts +2 -0
- package/esm/index.js +2 -0
- package/package.json +1 -1
- package/src/IconCompletedComparison/index.tsx +15 -0
- package/src/IconPDSeparation/index.tsx +15 -0
- package/src/index.ts +2 -0
- package/umd/IconCompletedComparison/index.d.ts +4 -0
- package/umd/IconCompletedComparison/index.js +69 -0
- package/umd/IconPDSeparation/index.d.ts +4 -0
- package/umd/IconPDSeparation/index.js +70 -0
- package/umd/index.d.ts +2 -0
- package/umd/index.js +6 -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 IconCompletedComparisonComponent(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-completed-comparison").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: "M8.077 2.004a.784.784 0 0 1 0 1.558l-.08.003H3.565v8.87H8l.08.003a.783.783 0 0 1 0 1.558L8 14H2.783A.784.784 0 0 1 2 13.217V2.783l.004-.08A.784.784 0 0 1 2.784 2h5.213l.08.004Zm1.978 2.834a.783.783 0 0 1 1.047-.054l.06.054 2.608 2.608.01.011.029.031.015.018c.007.008.012.018.019.027a.78.78 0 0 1 .05.077.748.748 0 0 1 .06.128c.008.022.013.044.019.066a.77.77 0 0 1 .023.16c0 .012.004.023.004.034l-.002.012a.8.8 0 0 1-.01.103c-.002.014-.002.029-.005.042a.77.77 0 0 1-.032.112l-.007.02a.774.774 0 0 1-.15.237c-.008.01-.014.021-.022.03l-2.609 2.608a.783.783 0 0 1-1.107-1.107l1.274-1.275H5.682a.783.783 0 1 1 0-1.565h5.642l-1.27-1.27-.053-.06a.784.784 0 0 1 .054-1.047Z" }));
|
|
57
|
+
}
|
|
58
|
+
var IconCompletedComparison = react_1.default.forwardRef(IconCompletedComparisonComponent);
|
|
59
|
+
exports.default = IconCompletedComparison;
|
|
@@ -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 IconPDSeparationComponent(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-PD_separation").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 32 32", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
|
|
56
|
+
react_1.default.createElement("path", { opacity: ".5", d: "M9.48799 3.33334C8.6662 3.33334 8 3.99954 8 4.82133V6.64796H24C24.7364 6.64796 25.3333 7.24491 25.3333 7.98129V24.1652H27.1788C28.0006 24.1652 28.6668 23.499 28.6668 22.6772V4.82133C28.6668 3.99954 28.0006 3.33334 27.1788 3.33334H9.48799Z" }),
|
|
57
|
+
react_1.default.createElement("path", { d: "M24.0551 6.66635C24.7913 6.66653 25.3881 7.26406 25.3881 8.00034V27.3333C25.3881 28.0696 24.7913 28.6662 24.0551 28.6664H4.66638C3.93015 28.6662 3.33337 28.0696 3.33337 27.3333V8.00034C3.33337 7.26406 3.93015 6.66653 4.66638 6.66635H24.0551ZM18.7103 17.4935C18.7101 20.009 16.5191 22.2044 13.6185 22.2044V25.3451C18.0765 25.3451 21.8508 21.9152 21.851 17.4935H18.7103ZM18.6039 10.3636C18.6036 12.9093 16.6061 14.8997 14.2318 14.8997V17.6664C10.0976 17.7306 6.83435 21.18 6.83435 25.3402H9.974C9.974 22.7955 11.9724 20.8043 14.349 20.804V18.0365C18.4826 17.9725 21.7442 14.5233 21.7445 10.3636H18.6039ZM14.9623 10.3734C10.4837 10.3736 6.66642 13.7887 6.66638 18.224H9.80701C9.80704 15.7221 12.0122 13.5133 14.9623 13.513V10.3734Z" }));
|
|
58
|
+
}
|
|
59
|
+
var IconPDSeparation = react_1.default.forwardRef(IconPDSeparationComponent);
|
|
60
|
+
exports.default = IconPDSeparation;
|
package/cjs/index.d.ts
CHANGED
|
@@ -785,4 +785,6 @@ export { default as IconAutomaticOptimization } from './IconAutomaticOptimizatio
|
|
|
785
785
|
export { default as IconDecline2 } from './IconDecline2';
|
|
786
786
|
export { default as IconComparison } from './IconComparison';
|
|
787
787
|
export { default as IconRise2 } from './IconRise2';
|
|
788
|
+
export { default as IconPDSeparation } from './IconPDSeparation';
|
|
789
|
+
export { default as IconCompletedComparison } from './IconCompletedComparison';
|
|
788
790
|
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.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.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");
|
|
@@ -1607,4 +1607,8 @@ var IconComparison_1 = require("./IconComparison");
|
|
|
1607
1607
|
Object.defineProperty(exports, "IconComparison", { enumerable: true, get: function () { return __importDefault(IconComparison_1).default; } });
|
|
1608
1608
|
var IconRise2_1 = require("./IconRise2");
|
|
1609
1609
|
Object.defineProperty(exports, "IconRise2", { enumerable: true, get: function () { return __importDefault(IconRise2_1).default; } });
|
|
1610
|
+
var IconPDSeparation_1 = require("./IconPDSeparation");
|
|
1611
|
+
Object.defineProperty(exports, "IconPDSeparation", { enumerable: true, get: function () { return __importDefault(IconPDSeparation_1).default; } });
|
|
1612
|
+
var IconCompletedComparison_1 = require("./IconCompletedComparison");
|
|
1613
|
+
Object.defineProperty(exports, "IconCompletedComparison", { enumerable: true, get: function () { return __importDefault(IconCompletedComparison_1).default; } });
|
|
1610
1614
|
__exportStar(require("./type"), exports);
|