@arco-iconbox/react-hiagent 0.2.19 → 0.2.21
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/IconDataInsight/index.js +2 -2
- package/cjs/IconDataOnlineTaggingsvg/index.d.ts +4 -0
- package/cjs/{IconDataOnlineTagging → IconDataOnlineTaggingsvg}/index.js +6 -6
- package/cjs/IconMenuEvaluationSet/index.js +1 -1
- package/cjs/IconMenuHiagent/index.js +1 -1
- package/cjs/IconMenuIndicators/index.js +1 -1
- package/cjs/IconModelGallery/index.js +3 -3
- package/cjs/{IconDataOnlineTagging → IconWorkflowChecklist}/index.d.ts +2 -2
- package/cjs/IconWorkflowChecklist/index.js +59 -0
- package/cjs/index.d.ts +7 -6
- package/cjs/index.js +16 -14
- package/dist/icon.min.js +1 -1
- package/esm/IconDataInsight/index.js +2 -2
- package/esm/IconDataOnlineTaggingsvg/index.d.ts +4 -0
- package/esm/{IconDataOnlineTagging → IconDataOnlineTaggingsvg}/index.js +6 -6
- package/esm/IconMenuEvaluationSet/index.js +1 -1
- package/esm/IconMenuHiagent/index.js +1 -1
- package/esm/IconMenuIndicators/index.js +1 -1
- package/esm/IconModelGallery/index.js +3 -3
- package/esm/{IconDataOnlineTagging → IconWorkflowChecklist}/index.d.ts +2 -2
- package/esm/IconWorkflowChecklist/index.js +34 -0
- package/esm/index.d.ts +7 -6
- package/esm/index.js +7 -6
- package/package.json +1 -1
- package/src/IconDataInsight/index.tsx +1 -1
- package/src/IconDataOnlineTaggingsvg/index.tsx +15 -0
- package/src/IconMenuEvaluationSet/index.tsx +1 -1
- package/src/IconMenuHiagent/index.tsx +1 -1
- package/src/IconMenuIndicators/index.tsx +1 -1
- package/src/IconModelGallery/index.tsx +1 -1
- package/src/IconWorkflowChecklist/index.tsx +15 -0
- package/src/index.ts +7 -6
- package/umd/IconDataInsight/index.js +2 -2
- package/umd/IconDataOnlineTaggingsvg/index.d.ts +4 -0
- package/umd/{IconDataOnlineTagging → IconDataOnlineTaggingsvg}/index.js +6 -6
- package/umd/IconMenuEvaluationSet/index.js +1 -1
- package/umd/IconMenuHiagent/index.js +1 -1
- package/umd/IconMenuIndicators/index.js +1 -1
- package/umd/IconModelGallery/index.js +3 -3
- package/umd/{IconDataOnlineTagging → IconWorkflowChecklist}/index.d.ts +2 -2
- package/umd/IconWorkflowChecklist/index.js +69 -0
- package/umd/index.d.ts +7 -6
- package/umd/index.js +16 -14
- package/src/IconDataOnlineTagging/index.tsx +0 -15
|
@@ -27,8 +27,8 @@ function IconDataInsightComponent(props, ref) {
|
|
|
27
27
|
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"]);
|
|
28
28
|
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
29
29
|
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
30
|
-
return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-data_Insight").concat(loadingKls, " ").concat(className), width: width, height: height,
|
|
31
|
-
React.createElement("path", { d: "
|
|
30
|
+
return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-data_Insight").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 20 20" }, rest, { ref: ref }),
|
|
31
|
+
React.createElement("path", { d: "M10.165 1.51a8.241 8.241 0 0 1 7.816 8.23l-.01.425A8.193 8.193 0 0 1 16.6 14.3l1.901 1.9a1.347 1.347 0 0 1-1.904 1.905l-1.835-1.835a8.203 8.203 0 0 1-5.022 1.71l-.425-.01a8.241 8.241 0 0 1-7.805-7.806L1.5 9.74c0-4.55 3.69-8.24 8.24-8.24l.425.01ZM9.74 4.194a5.548 5.548 0 1 0 0 11.096 5.548 5.548 0 0 0 0-11.096ZM9.987 5.4c.363.02.435.536.211.822a2.163 2.163 0 0 0 1.06 3.394 2.163 2.163 0 0 0 1.974-.36c.287-.224.802-.152.823.211A4.321 4.321 0 1 1 9.987 5.4Z" }));
|
|
32
32
|
}
|
|
33
33
|
var IconDataInsight = React.forwardRef(IconDataInsightComponent);
|
|
34
34
|
export default IconDataInsight;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
declare const IconDataOnlineTaggingsvg: React.ForwardRefExoticComponent<Pick<OriginIconProps, "string" | "className" | "prefix" | "width" | "height" | "useCurrentColor" | "spin" | "color" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "style" | "target" | "type" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React.RefAttributes<SVGSVGElement>>;
|
|
4
|
+
export default IconDataOnlineTaggingsvg;
|
|
@@ -22,14 +22,14 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
22
22
|
};
|
|
23
23
|
import React, { useContext } from 'react';
|
|
24
24
|
import { Context } from '../context';
|
|
25
|
-
function
|
|
25
|
+
function IconDataOnlineTaggingsvgComponent(props, ref) {
|
|
26
26
|
var prefixFromContext = useContext(Context).prefix;
|
|
27
27
|
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"]);
|
|
28
28
|
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
29
29
|
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
30
|
-
return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-
|
|
31
|
-
React.createElement("path", {
|
|
32
|
-
React.createElement("path", { fillRule: "evenodd",
|
|
30
|
+
return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-data_online_taggingsvg").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 20 20" }, rest, { ref: ref }),
|
|
31
|
+
React.createElement("path", { fillRule: "evenodd", d: "m17.404 11.659.53.53a.78.78 0 0 1 0 1.112L12.737 18.5h-1.642v-1.643l4.086-4.09 1.112-1.108a.787.787 0 0 1 1.112 0Z", clipRule: "evenodd", opacity: ".5" }),
|
|
32
|
+
React.createElement("path", { fillRule: "evenodd", d: "M17.35 11.609V7.116a.66.66 0 0 0-.199-.472l-4.559-4.456A.66.66 0 0 0 12.131 2H3.16a.66.66 0 0 0-.66.66v15.18c0 .365.295.66.66.66h13.53a.66.66 0 0 0 .66-.66v-3.953L12.736 18.5h-1.642v-1.642l4.087-4.091 1.112-1.108a.788.788 0 0 1 1.057-.05Zm-5.363-2.823H7.862a.413.413 0 0 0-.412.413v.825c0 .227.185.412.412.412h4.125a.413.413 0 0 0 .413-.412v-.825a.413.413 0 0 0-.413-.413Zm0 4.125H7.862a.413.413 0 0 0-.412.412v.825c0 .228.185.413.412.413h4.125a.413.413 0 0 0 .413-.412v-.825a.413.413 0 0 0-.413-.413Z", clipRule: "evenodd" }));
|
|
33
33
|
}
|
|
34
|
-
var
|
|
35
|
-
export default
|
|
34
|
+
var IconDataOnlineTaggingsvg = React.forwardRef(IconDataOnlineTaggingsvgComponent);
|
|
35
|
+
export default IconDataOnlineTaggingsvg;
|
|
@@ -28,7 +28,7 @@ function IconMenuEvaluationSetComponent(props, ref) {
|
|
|
28
28
|
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
29
29
|
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
30
30
|
return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-menu-evaluation-set").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 20 20" }, rest, { ref: ref }),
|
|
31
|
-
React.createElement("path", { d: "M16.
|
|
31
|
+
React.createElement("path", { d: "M16.832 1.87 3.202 1.5a.923.923 0 0 0-.237.05.906.906 0 0 0-.143.029.981.981 0 0 0-.316.212H2.5a1.032 1.032 0 0 0-.299.729v14.148c0 .272.107.533.294.724a.99.99 0 0 0 .707.3l10.074.808a.985.985 0 0 0 .708-.298 1.04 1.04 0 0 0 .294-.726V6.6a1.04 1.04 0 0 0-.294-.725.985.985 0 0 0-.708-.299L5.256 5.2a.815.815 0 0 1-.772-.824c0-.443.341-.807.772-.824l9.493.364h.61a.48.48 0 0 1 .473.486v11.293c0 .568.448 1.029 1.001 1.029.553 0 1.001-.461 1.001-1.029V2.899c-.001-.568-.45-1.028-1.002-1.029Z" }));
|
|
32
32
|
}
|
|
33
33
|
var IconMenuEvaluationSet = React.forwardRef(IconMenuEvaluationSetComponent);
|
|
34
34
|
export default IconMenuEvaluationSet;
|
|
@@ -28,7 +28,7 @@ function IconMenuHiagentComponent(props, ref) {
|
|
|
28
28
|
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
29
29
|
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
30
30
|
return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-menu-hiagent").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 20 20" }, rest, { ref: ref }),
|
|
31
|
-
React.createElement("path", { d: "
|
|
31
|
+
React.createElement("path", { d: "M14.836 13.396a.4.4 0 0 1 .745 0l.594 1.507a.405.405 0 0 0 .226.226l1.506.594a.4.4 0 0 1 0 .744l-1.506.595a.4.4 0 0 0-.226.225l-.594 1.507a.4.4 0 0 1-.745 0l-.593-1.507a.401.401 0 0 0-.226-.226l-1.507-.594a.4.4 0 0 1 0-.744l1.507-.594a.401.401 0 0 0 .226-.226l.593-1.507Zm-8.17-8.195a.8.8 0 0 1 1.45 0l1.47 3.15a.8.8 0 0 0 .387.386l3.15 1.471a.8.8 0 0 1 0 1.45l-3.15 1.47a.8.8 0 0 0-.387.386l-1.47 3.15a.8.8 0 0 1-1.45 0l-1.47-3.15a.8.8 0 0 0-.385-.386l-3.15-1.47a.8.8 0 0 1 0-1.45l3.15-1.47a.8.8 0 0 0 .386-.387l1.47-3.15ZM14.65 1.38a.6.6 0 0 1 1.116 0l.671 1.7a.601.601 0 0 0 .338.339l1.7.67a.6.6 0 0 1 0 1.117l-1.7.67a.6.6 0 0 0-.338.339l-.67 1.7a.6.6 0 0 1-1.117 0l-.67-1.7a.601.601 0 0 0-.339-.338l-1.7-.67a.6.6 0 0 1 0-1.117l1.7-.671a.603.603 0 0 0 .339-.339l.67-1.7Z" }));
|
|
32
32
|
}
|
|
33
33
|
var IconMenuHiagent = React.forwardRef(IconMenuHiagentComponent);
|
|
34
34
|
export default IconMenuHiagent;
|
|
@@ -28,7 +28,7 @@ function IconMenuIndicatorsComponent(props, ref) {
|
|
|
28
28
|
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
29
29
|
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
30
30
|
return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-menu-indicators").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 20 20" }, rest, { ref: ref }),
|
|
31
|
-
React.createElement("path", {
|
|
31
|
+
React.createElement("path", { d: "M12.833 18.572c-.83.282-1.7.427-2.575.428a8.045 8.045 0 0 1-2.577-.428l2.577-7.814 2.575 7.814ZM10 2a8.5 8.5 0 0 1 7.852 5.216 8.415 8.415 0 0 1-1.843 9.208l-2.405-2.392a5.048 5.048 0 0 0 1.108-5.525A5.1 5.1 0 0 0 10 5.376a5.1 5.1 0 0 0-4.712 3.13 5.048 5.048 0 0 0 1.107 5.526L3.99 16.424a8.413 8.413 0 0 1-1.843-9.208A8.502 8.502 0 0 1 10 2Z" }));
|
|
32
32
|
}
|
|
33
33
|
var IconMenuIndicators = React.forwardRef(IconMenuIndicatorsComponent);
|
|
34
34
|
export default IconMenuIndicators;
|
|
@@ -27,9 +27,9 @@ function IconModelGalleryComponent(props, ref) {
|
|
|
27
27
|
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"]);
|
|
28
28
|
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
29
29
|
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
30
|
-
return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-model_gallery").concat(loadingKls, " ").concat(className), width: width, height: height,
|
|
31
|
-
React.createElement("path", {
|
|
32
|
-
React.createElement("path", { fillRule: "evenodd",
|
|
30
|
+
return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-model_gallery").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 20 20" }, rest, { ref: ref }),
|
|
31
|
+
React.createElement("path", { d: "M5.861 16.573h8.3v1.905c0 .51-.413.922-.922.922H6.783a.922.922 0 0 1-.922-.922v-1.905Z", opacity: ".5" }),
|
|
32
|
+
React.createElement("path", { fillRule: "evenodd", d: "M17.281 7.87a7.262 7.262 0 0 1-3.12 5.971v2.732h-8.3v-2.732a7.27 7.27 0 1 1 11.42-5.97Zm-5.44 2.64h-.78v6.063H9.215V10.51h-.78a.461.461 0 0 1-.461-.461v-.922a.46.46 0 0 1 .46-.461h3.405c.255 0 .462.206.462.46v.923a.461.461 0 0 1-.462.461Z", clipRule: "evenodd" }));
|
|
33
33
|
}
|
|
34
34
|
var IconModelGallery = React.forwardRef(IconModelGalleryComponent);
|
|
35
35
|
export default IconModelGallery;
|
|
@@ -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 IconWorkflowChecklist: React.ForwardRefExoticComponent<Pick<OriginIconProps, "string" | "className" | "prefix" | "width" | "height" | "useCurrentColor" | "spin" | "color" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "style" | "target" | "type" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React.RefAttributes<SVGSVGElement>>;
|
|
4
|
+
export default IconWorkflowChecklist;
|
|
@@ -0,0 +1,34 @@
|
|
|
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 __rest = (this && this.__rest) || function (s, e) {
|
|
13
|
+
var t = {};
|
|
14
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
15
|
+
t[p] = s[p];
|
|
16
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
17
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
18
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
19
|
+
t[p[i]] = s[p[i]];
|
|
20
|
+
}
|
|
21
|
+
return t;
|
|
22
|
+
};
|
|
23
|
+
import React, { useContext } from 'react';
|
|
24
|
+
import { Context } from '../context';
|
|
25
|
+
function IconWorkflowChecklistComponent(props, ref) {
|
|
26
|
+
var prefixFromContext = useContext(Context).prefix;
|
|
27
|
+
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"]);
|
|
28
|
+
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
29
|
+
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
30
|
+
return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-workflow_checklist").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 }),
|
|
31
|
+
React.createElement("path", { d: "M14.997 9c.344 0 .624.279.624.624v3.816c0 .344-.28.623-.624.623H7.372a.624.624 0 0 1-.624-.623V9.624c0-.345.28-.624.624-.624h7.625Zm-10.66.715a.624.624 0 0 1 .939.822L2.85 13.31a.626.626 0 0 1-.911.03L.553 11.954a.624.624 0 0 1 .881-.882l.915.914 1.987-2.271Zm3.658 3.101h6.378v-2.569H7.995v2.57Zm7.002-10.88c.344 0 .624.28.624.624v3.816c0 .345-.28.624-.624.624H7.372a.623.623 0 0 1-.624-.624V2.56c0-.344.28-.623.624-.623h7.625Zm-11.175.796a.573.573 0 0 1 .809.808L3.6 4.57 4.63 5.6a.573.573 0 0 1-.81.81L2.79 5.38 1.76 6.41a.573.573 0 0 1-.808-.81l1.03-1.03-1.03-1.03a.572.572 0 0 1 .808-.808l1.03 1.03 1.03-1.03Zm4.173 3.021h6.378v-2.57H7.995v2.57Z" }));
|
|
32
|
+
}
|
|
33
|
+
var IconWorkflowChecklist = React.forwardRef(IconWorkflowChecklistComponent);
|
|
34
|
+
export default IconWorkflowChecklist;
|
package/esm/index.d.ts
CHANGED
|
@@ -698,9 +698,6 @@ export { default as IconImportMusic } from './IconImportMusic';
|
|
|
698
698
|
export { default as IconTabelNodata } from './IconTabelNodata';
|
|
699
699
|
export { default as IconMenuKnowledge } from './IconMenuKnowledge';
|
|
700
700
|
export { default as IconMenuPluginCenter } from './IconMenuPluginCenter';
|
|
701
|
-
export { default as IconMenuEvaluationSet } from './IconMenuEvaluationSet';
|
|
702
|
-
export { default as IconMenuIndicators } from './IconMenuIndicators';
|
|
703
|
-
export { default as IconMenuHiagent } from './IconMenuHiagent';
|
|
704
701
|
export { default as IconModelService } from './IconModelService';
|
|
705
702
|
export { default as IconMenuTask } from './IconMenuTask';
|
|
706
703
|
export { default as IconMenuEvaluation } from './IconMenuEvaluation';
|
|
@@ -708,9 +705,7 @@ export { default as IconMenuAgentCenter } from './IconMenuAgentCenter';
|
|
|
708
705
|
export { default as IconMenuObservation } from './IconMenuObservation';
|
|
709
706
|
export { default as IconComputingManagement } from './IconComputingManagement';
|
|
710
707
|
export { default as IconModelOptimization } from './IconModelOptimization';
|
|
711
|
-
export { default as IconModelGallery } from './IconModelGallery';
|
|
712
708
|
export { default as IconObservationIntegration } from './IconObservationIntegration';
|
|
713
|
-
export { default as IconDataOnlineTagging } from './IconDataOnlineTagging';
|
|
714
709
|
export { default as IconModelExperienceCenter } from './IconModelExperienceCenter';
|
|
715
710
|
export { default as IconDataProcessing1 } from './IconDataProcessing1';
|
|
716
711
|
export { default as IconReleaseManagement } from './IconReleaseManagement';
|
|
@@ -734,7 +729,6 @@ export { default as IconLinkArrowSmall } from './IconLinkArrowSmall';
|
|
|
734
729
|
export { default as IconTouchpadModeWorkflow } from './IconTouchpadModeWorkflow';
|
|
735
730
|
export { default as IconTouchpadMouseWorkflow } from './IconTouchpadMouseWorkflow';
|
|
736
731
|
export { default as IconExperienceCenter } from './IconExperienceCenter';
|
|
737
|
-
export { default as IconDataInsight } from './IconDataInsight';
|
|
738
732
|
export { default as IconSpeaker } from './IconSpeaker';
|
|
739
733
|
export { default as IconVideoAgentKnowledge } from './IconVideoAgentKnowledge';
|
|
740
734
|
export { default as IconArtifactsPic } from './IconArtifactsPic';
|
|
@@ -770,4 +764,11 @@ export { default as IconMinusCircle } from './IconMinusCircle';
|
|
|
770
764
|
export { default as IconZoomIn } from './IconZoomIn';
|
|
771
765
|
export { default as IconZoomOut } from './IconZoomOut';
|
|
772
766
|
export { default as IconThumbDown } from './IconThumbDown';
|
|
767
|
+
export { default as IconModelGallery } from './IconModelGallery';
|
|
768
|
+
export { default as IconMenuHiagent } from './IconMenuHiagent';
|
|
769
|
+
export { default as IconDataOnlineTaggingsvg } from './IconDataOnlineTaggingsvg';
|
|
770
|
+
export { default as IconMenuEvaluationSet } from './IconMenuEvaluationSet';
|
|
771
|
+
export { default as IconMenuIndicators } from './IconMenuIndicators';
|
|
772
|
+
export { default as IconDataInsight } from './IconDataInsight';
|
|
773
|
+
export { default as IconWorkflowChecklist } from './IconWorkflowChecklist';
|
|
773
774
|
export * from './type';
|
package/esm/index.js
CHANGED
|
@@ -698,9 +698,6 @@ export { default as IconImportMusic } from './IconImportMusic';
|
|
|
698
698
|
export { default as IconTabelNodata } from './IconTabelNodata';
|
|
699
699
|
export { default as IconMenuKnowledge } from './IconMenuKnowledge';
|
|
700
700
|
export { default as IconMenuPluginCenter } from './IconMenuPluginCenter';
|
|
701
|
-
export { default as IconMenuEvaluationSet } from './IconMenuEvaluationSet';
|
|
702
|
-
export { default as IconMenuIndicators } from './IconMenuIndicators';
|
|
703
|
-
export { default as IconMenuHiagent } from './IconMenuHiagent';
|
|
704
701
|
export { default as IconModelService } from './IconModelService';
|
|
705
702
|
export { default as IconMenuTask } from './IconMenuTask';
|
|
706
703
|
export { default as IconMenuEvaluation } from './IconMenuEvaluation';
|
|
@@ -708,9 +705,7 @@ export { default as IconMenuAgentCenter } from './IconMenuAgentCenter';
|
|
|
708
705
|
export { default as IconMenuObservation } from './IconMenuObservation';
|
|
709
706
|
export { default as IconComputingManagement } from './IconComputingManagement';
|
|
710
707
|
export { default as IconModelOptimization } from './IconModelOptimization';
|
|
711
|
-
export { default as IconModelGallery } from './IconModelGallery';
|
|
712
708
|
export { default as IconObservationIntegration } from './IconObservationIntegration';
|
|
713
|
-
export { default as IconDataOnlineTagging } from './IconDataOnlineTagging';
|
|
714
709
|
export { default as IconModelExperienceCenter } from './IconModelExperienceCenter';
|
|
715
710
|
export { default as IconDataProcessing1 } from './IconDataProcessing1';
|
|
716
711
|
export { default as IconReleaseManagement } from './IconReleaseManagement';
|
|
@@ -734,7 +729,6 @@ export { default as IconLinkArrowSmall } from './IconLinkArrowSmall';
|
|
|
734
729
|
export { default as IconTouchpadModeWorkflow } from './IconTouchpadModeWorkflow';
|
|
735
730
|
export { default as IconTouchpadMouseWorkflow } from './IconTouchpadMouseWorkflow';
|
|
736
731
|
export { default as IconExperienceCenter } from './IconExperienceCenter';
|
|
737
|
-
export { default as IconDataInsight } from './IconDataInsight';
|
|
738
732
|
export { default as IconSpeaker } from './IconSpeaker';
|
|
739
733
|
export { default as IconVideoAgentKnowledge } from './IconVideoAgentKnowledge';
|
|
740
734
|
export { default as IconArtifactsPic } from './IconArtifactsPic';
|
|
@@ -770,4 +764,11 @@ export { default as IconMinusCircle } from './IconMinusCircle';
|
|
|
770
764
|
export { default as IconZoomIn } from './IconZoomIn';
|
|
771
765
|
export { default as IconZoomOut } from './IconZoomOut';
|
|
772
766
|
export { default as IconThumbDown } from './IconThumbDown';
|
|
767
|
+
export { default as IconModelGallery } from './IconModelGallery';
|
|
768
|
+
export { default as IconMenuHiagent } from './IconMenuHiagent';
|
|
769
|
+
export { default as IconDataOnlineTaggingsvg } from './IconDataOnlineTaggingsvg';
|
|
770
|
+
export { default as IconMenuEvaluationSet } from './IconMenuEvaluationSet';
|
|
771
|
+
export { default as IconMenuIndicators } from './IconMenuIndicators';
|
|
772
|
+
export { default as IconDataInsight } from './IconDataInsight';
|
|
773
|
+
export { default as IconWorkflowChecklist } from './IconWorkflowChecklist';
|
|
773
774
|
export * from './type';
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@ function IconDataInsightComponent(props: OriginIconProps, ref: ForwardedRef<SVGS
|
|
|
8
8
|
|
|
9
9
|
const prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
10
10
|
const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
|
|
11
|
-
return <svg className={`${prefix}-icon ${prefix}-icon-data_Insight${loadingKls} ${className}`} width={width} height={height}
|
|
11
|
+
return <svg className={`${prefix}-icon ${prefix}-icon-data_Insight${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 20 20" {...rest} ref={ref}><path d="M10.165 1.51a8.241 8.241 0 0 1 7.816 8.23l-.01.425A8.193 8.193 0 0 1 16.6 14.3l1.901 1.9a1.347 1.347 0 0 1-1.904 1.905l-1.835-1.835a8.203 8.203 0 0 1-5.022 1.71l-.425-.01a8.241 8.241 0 0 1-7.805-7.806L1.5 9.74c0-4.55 3.69-8.24 8.24-8.24l.425.01ZM9.74 4.194a5.548 5.548 0 1 0 0 11.096 5.548 5.548 0 0 0 0-11.096ZM9.987 5.4c.363.02.435.536.211.822a2.163 2.163 0 0 0 1.06 3.394 2.163 2.163 0 0 0 1.974-.36c.287-.224.802-.152.823.211A4.321 4.321 0 1 1 9.987 5.4Z"/></svg>;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
const IconDataInsight = React.forwardRef(IconDataInsightComponent);
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { ForwardedRef, useContext } from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
import { Context } from '../context';
|
|
4
|
+
|
|
5
|
+
function IconDataOnlineTaggingsvgComponent(props: OriginIconProps, ref: ForwardedRef<SVGSVGElement>) {
|
|
6
|
+
const { prefix: prefixFromContext } = useContext(Context);
|
|
7
|
+
const { className = '', prefix: prefixFromProps, width = '1em', height = '1em', useCurrentColor = true, spin, ...rest } = props;
|
|
8
|
+
|
|
9
|
+
const prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
10
|
+
const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
|
|
11
|
+
return <svg className={`${prefix}-icon ${prefix}-icon-data_online_taggingsvg${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 20 20" {...rest} ref={ref}><path fillRule="evenodd" d="m17.404 11.659.53.53a.78.78 0 0 1 0 1.112L12.737 18.5h-1.642v-1.643l4.086-4.09 1.112-1.108a.787.787 0 0 1 1.112 0Z" clipRule="evenodd" opacity=".5"/><path fillRule="evenodd" d="M17.35 11.609V7.116a.66.66 0 0 0-.199-.472l-4.559-4.456A.66.66 0 0 0 12.131 2H3.16a.66.66 0 0 0-.66.66v15.18c0 .365.295.66.66.66h13.53a.66.66 0 0 0 .66-.66v-3.953L12.736 18.5h-1.642v-1.642l4.087-4.091 1.112-1.108a.788.788 0 0 1 1.057-.05Zm-5.363-2.823H7.862a.413.413 0 0 0-.412.413v.825c0 .227.185.412.412.412h4.125a.413.413 0 0 0 .413-.412v-.825a.413.413 0 0 0-.413-.413Zm0 4.125H7.862a.413.413 0 0 0-.412.412v.825c0 .228.185.413.412.413h4.125a.413.413 0 0 0 .413-.412v-.825a.413.413 0 0 0-.413-.413Z" clipRule="evenodd"/></svg>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const IconDataOnlineTaggingsvg = React.forwardRef(IconDataOnlineTaggingsvgComponent);
|
|
15
|
+
export default IconDataOnlineTaggingsvg;
|
|
@@ -8,7 +8,7 @@ function IconMenuEvaluationSetComponent(props: OriginIconProps, ref: ForwardedRe
|
|
|
8
8
|
|
|
9
9
|
const prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
10
10
|
const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
|
|
11
|
-
return <svg className={`${prefix}-icon ${prefix}-icon-menu-evaluation-set${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 20 20" {...rest} ref={ref}><path d="M16.
|
|
11
|
+
return <svg className={`${prefix}-icon ${prefix}-icon-menu-evaluation-set${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 20 20" {...rest} ref={ref}><path d="M16.832 1.87 3.202 1.5a.923.923 0 0 0-.237.05.906.906 0 0 0-.143.029.981.981 0 0 0-.316.212H2.5a1.032 1.032 0 0 0-.299.729v14.148c0 .272.107.533.294.724a.99.99 0 0 0 .707.3l10.074.808a.985.985 0 0 0 .708-.298 1.04 1.04 0 0 0 .294-.726V6.6a1.04 1.04 0 0 0-.294-.725.985.985 0 0 0-.708-.299L5.256 5.2a.815.815 0 0 1-.772-.824c0-.443.341-.807.772-.824l9.493.364h.61a.48.48 0 0 1 .473.486v11.293c0 .568.448 1.029 1.001 1.029.553 0 1.001-.461 1.001-1.029V2.899c-.001-.568-.45-1.028-1.002-1.029Z"/></svg>;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
const IconMenuEvaluationSet = React.forwardRef(IconMenuEvaluationSetComponent);
|
|
@@ -8,7 +8,7 @@ function IconMenuHiagentComponent(props: OriginIconProps, ref: ForwardedRef<SVGS
|
|
|
8
8
|
|
|
9
9
|
const prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
10
10
|
const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
|
|
11
|
-
return <svg className={`${prefix}-icon ${prefix}-icon-menu-hiagent${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 20 20" {...rest} ref={ref}><path d="
|
|
11
|
+
return <svg className={`${prefix}-icon ${prefix}-icon-menu-hiagent${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 20 20" {...rest} ref={ref}><path d="M14.836 13.396a.4.4 0 0 1 .745 0l.594 1.507a.405.405 0 0 0 .226.226l1.506.594a.4.4 0 0 1 0 .744l-1.506.595a.4.4 0 0 0-.226.225l-.594 1.507a.4.4 0 0 1-.745 0l-.593-1.507a.401.401 0 0 0-.226-.226l-1.507-.594a.4.4 0 0 1 0-.744l1.507-.594a.401.401 0 0 0 .226-.226l.593-1.507Zm-8.17-8.195a.8.8 0 0 1 1.45 0l1.47 3.15a.8.8 0 0 0 .387.386l3.15 1.471a.8.8 0 0 1 0 1.45l-3.15 1.47a.8.8 0 0 0-.387.386l-1.47 3.15a.8.8 0 0 1-1.45 0l-1.47-3.15a.8.8 0 0 0-.385-.386l-3.15-1.47a.8.8 0 0 1 0-1.45l3.15-1.47a.8.8 0 0 0 .386-.387l1.47-3.15ZM14.65 1.38a.6.6 0 0 1 1.116 0l.671 1.7a.601.601 0 0 0 .338.339l1.7.67a.6.6 0 0 1 0 1.117l-1.7.67a.6.6 0 0 0-.338.339l-.67 1.7a.6.6 0 0 1-1.117 0l-.67-1.7a.601.601 0 0 0-.339-.338l-1.7-.67a.6.6 0 0 1 0-1.117l1.7-.671a.603.603 0 0 0 .339-.339l.67-1.7Z"/></svg>;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
const IconMenuHiagent = React.forwardRef(IconMenuHiagentComponent);
|
|
@@ -8,7 +8,7 @@ function IconMenuIndicatorsComponent(props: OriginIconProps, ref: ForwardedRef<S
|
|
|
8
8
|
|
|
9
9
|
const prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
10
10
|
const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
|
|
11
|
-
return <svg className={`${prefix}-icon ${prefix}-icon-menu-indicators${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 20 20" {...rest} ref={ref}><path
|
|
11
|
+
return <svg className={`${prefix}-icon ${prefix}-icon-menu-indicators${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 20 20" {...rest} ref={ref}><path d="M12.833 18.572c-.83.282-1.7.427-2.575.428a8.045 8.045 0 0 1-2.577-.428l2.577-7.814 2.575 7.814ZM10 2a8.5 8.5 0 0 1 7.852 5.216 8.415 8.415 0 0 1-1.843 9.208l-2.405-2.392a5.048 5.048 0 0 0 1.108-5.525A5.1 5.1 0 0 0 10 5.376a5.1 5.1 0 0 0-4.712 3.13 5.048 5.048 0 0 0 1.107 5.526L3.99 16.424a8.413 8.413 0 0 1-1.843-9.208A8.502 8.502 0 0 1 10 2Z"/></svg>;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
const IconMenuIndicators = React.forwardRef(IconMenuIndicatorsComponent);
|
|
@@ -8,7 +8,7 @@ function IconModelGalleryComponent(props: OriginIconProps, ref: ForwardedRef<SVG
|
|
|
8
8
|
|
|
9
9
|
const prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
10
10
|
const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
|
|
11
|
-
return <svg className={`${prefix}-icon ${prefix}-icon-model_gallery${loadingKls} ${className}`} width={width} height={height}
|
|
11
|
+
return <svg className={`${prefix}-icon ${prefix}-icon-model_gallery${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 20 20" {...rest} ref={ref}><path d="M5.861 16.573h8.3v1.905c0 .51-.413.922-.922.922H6.783a.922.922 0 0 1-.922-.922v-1.905Z" opacity=".5"/><path fillRule="evenodd" d="M17.281 7.87a7.262 7.262 0 0 1-3.12 5.971v2.732h-8.3v-2.732a7.27 7.27 0 1 1 11.42-5.97Zm-5.44 2.64h-.78v6.063H9.215V10.51h-.78a.461.461 0 0 1-.461-.461v-.922a.46.46 0 0 1 .46-.461h3.405c.255 0 .462.206.462.46v.923a.461.461 0 0 1-.462.461Z" clipRule="evenodd"/></svg>;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
const IconModelGallery = React.forwardRef(IconModelGalleryComponent);
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { ForwardedRef, useContext } from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
import { Context } from '../context';
|
|
4
|
+
|
|
5
|
+
function IconWorkflowChecklistComponent(props: OriginIconProps, ref: ForwardedRef<SVGSVGElement>) {
|
|
6
|
+
const { prefix: prefixFromContext } = useContext(Context);
|
|
7
|
+
const { className = '', prefix: prefixFromProps, width = '1em', height = '1em', useCurrentColor = true, spin, ...rest } = props;
|
|
8
|
+
|
|
9
|
+
const prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
10
|
+
const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
|
|
11
|
+
return <svg className={`${prefix}-icon ${prefix}-icon-workflow_checklist${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 16 16" {...rest} ref={ref}><path d="M14.997 9c.344 0 .624.279.624.624v3.816c0 .344-.28.623-.624.623H7.372a.624.624 0 0 1-.624-.623V9.624c0-.345.28-.624.624-.624h7.625Zm-10.66.715a.624.624 0 0 1 .939.822L2.85 13.31a.626.626 0 0 1-.911.03L.553 11.954a.624.624 0 0 1 .881-.882l.915.914 1.987-2.271Zm3.658 3.101h6.378v-2.569H7.995v2.57Zm7.002-10.88c.344 0 .624.28.624.624v3.816c0 .345-.28.624-.624.624H7.372a.623.623 0 0 1-.624-.624V2.56c0-.344.28-.623.624-.623h7.625Zm-11.175.796a.573.573 0 0 1 .809.808L3.6 4.57 4.63 5.6a.573.573 0 0 1-.81.81L2.79 5.38 1.76 6.41a.573.573 0 0 1-.808-.81l1.03-1.03-1.03-1.03a.572.572 0 0 1 .808-.808l1.03 1.03 1.03-1.03Zm4.173 3.021h6.378v-2.57H7.995v2.57Z"/></svg>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const IconWorkflowChecklist = React.forwardRef(IconWorkflowChecklistComponent);
|
|
15
|
+
export default IconWorkflowChecklist;
|
package/src/index.ts
CHANGED
|
@@ -698,9 +698,6 @@ export { default as IconImportMusic } from './IconImportMusic';
|
|
|
698
698
|
export { default as IconTabelNodata } from './IconTabelNodata';
|
|
699
699
|
export { default as IconMenuKnowledge } from './IconMenuKnowledge';
|
|
700
700
|
export { default as IconMenuPluginCenter } from './IconMenuPluginCenter';
|
|
701
|
-
export { default as IconMenuEvaluationSet } from './IconMenuEvaluationSet';
|
|
702
|
-
export { default as IconMenuIndicators } from './IconMenuIndicators';
|
|
703
|
-
export { default as IconMenuHiagent } from './IconMenuHiagent';
|
|
704
701
|
export { default as IconModelService } from './IconModelService';
|
|
705
702
|
export { default as IconMenuTask } from './IconMenuTask';
|
|
706
703
|
export { default as IconMenuEvaluation } from './IconMenuEvaluation';
|
|
@@ -708,9 +705,7 @@ export { default as IconMenuAgentCenter } from './IconMenuAgentCenter';
|
|
|
708
705
|
export { default as IconMenuObservation } from './IconMenuObservation';
|
|
709
706
|
export { default as IconComputingManagement } from './IconComputingManagement';
|
|
710
707
|
export { default as IconModelOptimization } from './IconModelOptimization';
|
|
711
|
-
export { default as IconModelGallery } from './IconModelGallery';
|
|
712
708
|
export { default as IconObservationIntegration } from './IconObservationIntegration';
|
|
713
|
-
export { default as IconDataOnlineTagging } from './IconDataOnlineTagging';
|
|
714
709
|
export { default as IconModelExperienceCenter } from './IconModelExperienceCenter';
|
|
715
710
|
export { default as IconDataProcessing1 } from './IconDataProcessing1';
|
|
716
711
|
export { default as IconReleaseManagement } from './IconReleaseManagement';
|
|
@@ -734,7 +729,6 @@ export { default as IconLinkArrowSmall } from './IconLinkArrowSmall';
|
|
|
734
729
|
export { default as IconTouchpadModeWorkflow } from './IconTouchpadModeWorkflow';
|
|
735
730
|
export { default as IconTouchpadMouseWorkflow } from './IconTouchpadMouseWorkflow';
|
|
736
731
|
export { default as IconExperienceCenter } from './IconExperienceCenter';
|
|
737
|
-
export { default as IconDataInsight } from './IconDataInsight';
|
|
738
732
|
export { default as IconSpeaker } from './IconSpeaker';
|
|
739
733
|
export { default as IconVideoAgentKnowledge } from './IconVideoAgentKnowledge';
|
|
740
734
|
export { default as IconArtifactsPic } from './IconArtifactsPic';
|
|
@@ -770,5 +764,12 @@ export { default as IconMinusCircle } from './IconMinusCircle';
|
|
|
770
764
|
export { default as IconZoomIn } from './IconZoomIn';
|
|
771
765
|
export { default as IconZoomOut } from './IconZoomOut';
|
|
772
766
|
export { default as IconThumbDown } from './IconThumbDown';
|
|
767
|
+
export { default as IconModelGallery } from './IconModelGallery';
|
|
768
|
+
export { default as IconMenuHiagent } from './IconMenuHiagent';
|
|
769
|
+
export { default as IconDataOnlineTaggingsvg } from './IconDataOnlineTaggingsvg';
|
|
770
|
+
export { default as IconMenuEvaluationSet } from './IconMenuEvaluationSet';
|
|
771
|
+
export { default as IconMenuIndicators } from './IconMenuIndicators';
|
|
772
|
+
export { default as IconDataInsight } from './IconDataInsight';
|
|
773
|
+
export { default as IconWorkflowChecklist } from './IconWorkflowChecklist';
|
|
773
774
|
|
|
774
775
|
export * from './type';
|
|
@@ -61,8 +61,8 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
61
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
62
|
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
63
63
|
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
64
|
-
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-data_Insight").concat(loadingKls, " ").concat(className), width: width, height: height,
|
|
65
|
-
react_1.default.createElement("path", { d: "
|
|
64
|
+
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-data_Insight").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 20 20" }, rest, { ref: ref }),
|
|
65
|
+
react_1.default.createElement("path", { d: "M10.165 1.51a8.241 8.241 0 0 1 7.816 8.23l-.01.425A8.193 8.193 0 0 1 16.6 14.3l1.901 1.9a1.347 1.347 0 0 1-1.904 1.905l-1.835-1.835a8.203 8.203 0 0 1-5.022 1.71l-.425-.01a8.241 8.241 0 0 1-7.805-7.806L1.5 9.74c0-4.55 3.69-8.24 8.24-8.24l.425.01ZM9.74 4.194a5.548 5.548 0 1 0 0 11.096 5.548 5.548 0 0 0 0-11.096ZM9.987 5.4c.363.02.435.536.211.822a2.163 2.163 0 0 0 1.06 3.394 2.163 2.163 0 0 0 1.974-.36c.287-.224.802-.152.823.211A4.321 4.321 0 1 1 9.987 5.4Z" }));
|
|
66
66
|
}
|
|
67
67
|
var IconDataInsight = react_1.default.forwardRef(IconDataInsightComponent);
|
|
68
68
|
exports.default = IconDataInsight;
|