@arco-iconbox/react-hiagent 0.1.5 → 0.1.6
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/IconAscent/index.d.ts +4 -0
- package/cjs/IconAscent/index.js +59 -0
- package/cjs/IconImage2video/index.d.ts +4 -0
- package/cjs/IconImage2video/index.js +59 -0
- package/cjs/IconMinimumQueue/index.d.ts +4 -0
- package/cjs/IconMinimumQueue/index.js +59 -0
- package/cjs/IconNvidia/index.d.ts +4 -0
- package/cjs/IconNvidia/index.js +63 -0
- package/cjs/IconText2image/index.d.ts +4 -0
- package/cjs/IconText2image/index.js +59 -0
- package/cjs/IconText2video/index.d.ts +4 -0
- package/cjs/IconText2video/index.js +59 -0
- package/cjs/IconUpgradeEngine/index.d.ts +4 -0
- package/cjs/IconUpgradeEngine/index.js +60 -0
- package/cjs/IconVisualModel/index.d.ts +4 -0
- package/cjs/IconVisualModel/index.js +63 -0
- package/cjs/index.d.ts +8 -0
- package/cjs/index.js +17 -1
- package/dist/icon.min.js +1 -1
- package/esm/IconAscent/index.d.ts +4 -0
- package/esm/IconAscent/index.js +34 -0
- package/esm/IconImage2video/index.d.ts +4 -0
- package/esm/IconImage2video/index.js +34 -0
- package/esm/IconMinimumQueue/index.d.ts +4 -0
- package/esm/IconMinimumQueue/index.js +34 -0
- package/esm/IconNvidia/index.d.ts +4 -0
- package/esm/IconNvidia/index.js +38 -0
- package/esm/IconText2image/index.d.ts +4 -0
- package/esm/IconText2image/index.js +34 -0
- package/esm/IconText2video/index.d.ts +4 -0
- package/esm/IconText2video/index.js +34 -0
- package/esm/IconUpgradeEngine/index.d.ts +4 -0
- package/esm/IconUpgradeEngine/index.js +35 -0
- package/esm/IconVisualModel/index.d.ts +4 -0
- package/esm/IconVisualModel/index.js +38 -0
- package/esm/index.d.ts +8 -0
- package/esm/index.js +8 -0
- package/package.json +1 -1
- package/src/IconAscent/index.tsx +15 -0
- package/src/IconImage2video/index.tsx +15 -0
- package/src/IconMinimumQueue/index.tsx +15 -0
- package/src/IconNvidia/index.tsx +15 -0
- package/src/IconText2image/index.tsx +15 -0
- package/src/IconText2video/index.tsx +15 -0
- package/src/IconUpgradeEngine/index.tsx +15 -0
- package/src/IconVisualModel/index.tsx +15 -0
- package/src/index.ts +8 -0
- package/umd/IconAscent/index.d.ts +4 -0
- package/umd/IconAscent/index.js +69 -0
- package/umd/IconImage2video/index.d.ts +4 -0
- package/umd/IconImage2video/index.js +69 -0
- package/umd/IconMinimumQueue/index.d.ts +4 -0
- package/umd/IconMinimumQueue/index.js +69 -0
- package/umd/IconNvidia/index.d.ts +4 -0
- package/umd/IconNvidia/index.js +73 -0
- package/umd/IconText2image/index.d.ts +4 -0
- package/umd/IconText2image/index.js +69 -0
- package/umd/IconText2video/index.d.ts +4 -0
- package/umd/IconText2video/index.js +69 -0
- package/umd/IconUpgradeEngine/index.d.ts +4 -0
- package/umd/IconUpgradeEngine/index.js +70 -0
- package/umd/IconVisualModel/index.d.ts +4 -0
- package/umd/IconVisualModel/index.js +73 -0
- package/umd/index.d.ts +8 -0
- package/umd/index.js +18 -2
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14
|
+
if (k2 === undefined) k2 = k;
|
|
15
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
16
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
17
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
18
|
+
}
|
|
19
|
+
Object.defineProperty(o, k2, desc);
|
|
20
|
+
}) : (function(o, m, k, k2) {
|
|
21
|
+
if (k2 === undefined) k2 = k;
|
|
22
|
+
o[k2] = m[k];
|
|
23
|
+
}));
|
|
24
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
25
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
26
|
+
}) : function(o, v) {
|
|
27
|
+
o["default"] = v;
|
|
28
|
+
});
|
|
29
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
30
|
+
if (mod && mod.__esModule) return mod;
|
|
31
|
+
var result = {};
|
|
32
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
33
|
+
__setModuleDefault(result, mod);
|
|
34
|
+
return result;
|
|
35
|
+
};
|
|
36
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
37
|
+
var t = {};
|
|
38
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
39
|
+
t[p] = s[p];
|
|
40
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
41
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
42
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
43
|
+
t[p[i]] = s[p[i]];
|
|
44
|
+
}
|
|
45
|
+
return t;
|
|
46
|
+
};
|
|
47
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
48
|
+
var react_1 = __importStar(require("react"));
|
|
49
|
+
var context_1 = require("../context");
|
|
50
|
+
function IconUpgradeEngineComponent(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-upgrade_engine").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 16 16", fill: useCurrentColor ? 'currentColor' : 'none', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
|
|
56
|
+
react_1.default.createElement("rect", { width: "16", height: "16", rx: "4", fill: useCurrentColor ? 'currentColor' : '#309256' }),
|
|
57
|
+
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.04451 2.97569C8.05536 2.98505 8.0655 2.99519 8.07486 3.00604L12.5681 8.21505C12.6175 8.28403 12.6493 8.36611 12.6603 8.45556C12.6618 8.46682 12.6626 8.47787 12.6636 8.48913C12.6642 8.49977 12.6665 8.50959 12.6665 8.52024C12.6665 8.52638 12.6649 8.53231 12.6647 8.53846C12.6644 8.56384 12.6616 8.58901 12.6554 8.6277C12.6294 8.7632 12.5521 8.88703 12.4295 8.96154C12.4143 8.97075 12.3983 8.97648 12.3827 8.98364C12.3749 8.98733 12.3673 8.99142 12.3593 8.9947C12.3439 9.00084 12.3282 9.00554 12.3124 9.01005C12.2931 9.01578 12.2736 9.02069 12.2472 9.02479C12.2246 9.02806 12.2021 9.03195 12.1785 9.03195H9.73862V12.64C9.73862 12.8158 9.59297 12.9583 9.4133 12.9583H6.29471C6.11504 12.9583 5.96939 12.8158 5.96939 12.64V9.03195H3.52948C3.50587 9.03195 3.48342 9.02806 3.45473 9.02417C3.43443 9.02069 3.41491 9.01578 3.39558 9.01005C3.37977 9.00554 3.36416 9.00084 3.34874 8.9947C3.34073 8.99142 3.33312 8.98733 3.32531 8.98364C3.3097 8.97648 3.29369 8.97075 3.27847 8.96154C3.15589 8.88703 3.07859 8.7632 3.05048 8.61419C3.04638 8.58901 3.04365 8.56384 3.04326 8.53846C3.04307 8.53231 3.0415 8.52638 3.0415 8.52024C3.0415 8.50959 3.04385 8.49977 3.04443 8.48913C3.04541 8.47787 3.04619 8.46682 3.04775 8.45556C3.05868 8.36611 3.09069 8.28403 3.13988 8.21505L7.63315 3.00604C7.73836 2.88407 7.92254 2.87048 8.04451 2.97569Z", fill: useCurrentColor ? 'currentColor' : '#fff' }));
|
|
58
|
+
}
|
|
59
|
+
var IconUpgradeEngine = react_1.default.forwardRef(IconUpgradeEngineComponent);
|
|
60
|
+
exports.default = IconUpgradeEngine;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
declare const IconVisualModel: 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 IconVisualModel;
|
|
@@ -0,0 +1,63 @@
|
|
|
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 IconVisualModelComponent(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-visual_model").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 14 14", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
|
|
56
|
+
react_1.default.createElement("g", { clipPath: "url(#svg_ebd4236302__clip0_2729_21654)" },
|
|
57
|
+
react_1.default.createElement("path", { d: "M10.1103 0.549999C10.6827 0.550121 11.1462 1.01364 11.1463 1.586V2.85373H12.414C12.9864 2.85385 13.4499 3.31737 13.45 3.88974V12.414C13.4499 12.9864 12.9864 13.4499 12.414 13.45H3.88979C3.31742 13.4499 2.8539 12.9864 2.85378 12.414V11.1463H1.58605C1.01369 11.1461 0.550171 10.6826 0.550049 10.1103V1.586C0.550171 1.01364 1.01369 0.550121 1.58605 0.549999H10.1103ZM1.93139 9.76493H2.85378V8.38246C2.85378 8.00077 3.16276 7.69067 3.54445 7.69067C3.92615 7.69067 4.23512 8.00077 4.23512 8.38246V9.76493H5.61758C5.99928 9.76493 6.30938 10.0739 6.30938 10.4556C6.30938 10.8373 5.99928 11.1463 5.61758 11.1463H4.23512V12.0687H12.0687V4.23507H11.1463V5.61753C11.1463 5.99923 10.8373 6.30933 10.4556 6.30933C10.074 6.30933 9.76498 5.99923 9.76498 5.61753V4.23507H8.38251C8.00082 4.23507 7.69072 3.9261 7.69072 3.5444C7.69072 3.16271 8.00082 2.85373 8.38251 2.85373H9.76498V1.93134H1.93139V9.76493ZM10.4556 7.69067C10.8373 7.69067 11.1463 8.00077 11.1463 8.38246V10.5703C11.1463 10.8884 10.8885 11.1463 10.5704 11.1463H8.38251C8.00082 11.1463 7.69072 10.8373 7.69072 10.4556C7.69072 10.0739 8.00082 9.76493 8.38251 9.76493H9.76498V8.38246C9.76498 8.00077 10.074 7.69067 10.4556 7.69067ZM5.61758 2.85373C5.99928 2.85373 6.30938 3.16271 6.30938 3.5444C6.30938 3.9261 5.99928 4.23507 5.61758 4.23507H4.23512V5.61753C4.23512 5.99923 3.92615 6.30933 3.54445 6.30933C3.16276 6.30933 2.85378 5.99923 2.85378 5.61753V3.42966C2.85378 3.11159 3.11164 2.85373 3.42971 2.85373H5.61758Z" })),
|
|
58
|
+
react_1.default.createElement("defs", null,
|
|
59
|
+
react_1.default.createElement("clipPath", { id: "svg_ebd4236302__clip0_2729_21654" },
|
|
60
|
+
react_1.default.createElement("path", { d: "M0 0H14V14H0z" }))));
|
|
61
|
+
}
|
|
62
|
+
var IconVisualModel = react_1.default.forwardRef(IconVisualModelComponent);
|
|
63
|
+
exports.default = IconVisualModel;
|
package/cjs/index.d.ts
CHANGED
|
@@ -1461,4 +1461,12 @@ export { default as IconAgentPublishEnterpriseWechat } from './IconAgentPublishE
|
|
|
1461
1461
|
export { default as IconAgentPublishApi } from './IconAgentPublishApi';
|
|
1462
1462
|
export { default as IconAgentDeploymentPackage } from './IconAgentDeploymentPackage';
|
|
1463
1463
|
export { default as IconAgentWebService } from './IconAgentWebService';
|
|
1464
|
+
export { default as IconMinimumQueue } from './IconMinimumQueue';
|
|
1465
|
+
export { default as IconImage2video } from './IconImage2video';
|
|
1466
|
+
export { default as IconText2image } from './IconText2image';
|
|
1467
|
+
export { default as IconText2video } from './IconText2video';
|
|
1468
|
+
export { default as IconVisualModel } from './IconVisualModel';
|
|
1469
|
+
export { default as IconNvidia } from './IconNvidia';
|
|
1470
|
+
export { default as IconAscent } from './IconAscent';
|
|
1471
|
+
export { default as IconUpgradeEngine } from './IconUpgradeEngine';
|
|
1464
1472
|
export * from './type';
|
package/cjs/index.js
CHANGED
|
@@ -46,7 +46,7 @@ exports.IconBanjo = exports.IconPostalHor = exports.IconMobilePhone = exports.Ic
|
|
|
46
46
|
exports.IconDataDataset = exports.IconModelService = exports.IconDataOnlineTagging = exports.IconModelOptimization = exports.IconModelAppliction = exports.IconModelWarehouse = exports.IconModelExperienceCenter = exports.IconComputingManagement = exports.IconShare = exports.IconTrialOperation = exports.IconWiki = exports.IconColumnConfiguration1 = exports.IconMessageFill = exports.IconCardCollectionLinearity = exports.IconAgentQuote = exports.IconCardCollectionSurface = exports.IconAgentUse = exports.IconAgentDialogue = exports.IconOfficialV = exports.IconTokenQuantity = exports.IconBlock1 = exports.IconAcccount1 = exports.IconClosure = exports.IconPackaging = exports.IconRerank = exports.IconEn = exports.IconTraditionalChinese = exports.IconSimplifiedChinese = exports.IconGeneralSuccessHighSaturation = exports.IconCopyLine = exports.IconCollect2 = exports.IconUncollect2 = exports.IconUploadingDoc = exports.IconAddGroup = exports.IconRouge1 = exports.IconRougeL = exports.IconRouge2 = exports.IconF1 = exports.IconAccuracy = exports.IconTemplate1 = exports.IconNoRule = exports.IconJavascript = exports.IconUserTemplate = exports.IconKnowledgeLeft = exports.IconKnowledgeRight = exports.IconKnowledgeAddto = exports.IconKnowledgeMinus = exports.IconGroup = exports.IconRadio = exports.IconStudioMicrophone = void 0;
|
|
47
47
|
exports.IconStopUpdate = exports.IconSheildKey = exports.IconRl = exports.IconPromptMaas = exports.IconDataSetMaas = exports.IconModelAccess = exports.IconContinuePretrain = exports.IconAddMaas = exports.IconMoreMaas = exports.IconOutputMaas = exports.IconMemoryWebapp = exports.IconBatchProcessing = exports.IconUnfold2 = exports.IconModelGallery = exports.IconOutput = exports.IconScale = exports.IconWebEmb = exports.IconThreatAttribution = exports.IconProtection = exports.IconShield = exports.IconCommentApply = exports.IconWflHttp = exports.IconVideo = exports.IconVariableAggregation = exports.IconAddNewVersion = exports.IconWfMemory = exports.IconFunctionCall = exports.IconImageAi = exports.IconSystemPresetting = exports.IconManagementBackEnd = exports.IconModelServiceC = exports.IconModelFile = exports.IconVectorModel = exports.IconLanguageModel = exports.IconSortingModel = exports.IconReportSet = exports.IconMenteor = exports.IconContextualRelevance = exports.IconNist = exports.IconBleu = exports.IconImageUnderstanding = exports.IconObservationIntegration = exports.IconArrangeMemory = exports.IconInvokeMemory = exports.IconCaretUp = exports.IconCaretDown = exports.IconAddVersion = exports.IconWflSetVariable = exports.IconAgtDebug = exports.IconSessionFlow = void 0;
|
|
48
48
|
exports.IconUserVariable = exports.IconParallel = exports.IconMoreVertical1 = exports.IconExportRecord = exports.IconPublishVersion = exports.IconRuntimeConfiguration = exports.IconRunConfiguration = exports.IconArrowDownward = exports.IconArrowUpwards = exports.IconCustomApplication = exports.IconWkfOptimization = exports.IconWkfTemplate = exports.IconStarColor = exports.IconModelWarehouseDetail = exports.IconDistribution = exports.IconCheckboxList = exports.IconDatasetsReflux = exports.IconDataProcessing = exports.IconCardSurface = exports.IconCardLine = exports.IconKnowledgeRetrieval = exports.IconKnowledgeWriting = exports.IconInformationCollection = exports.IconUnpin = exports.IconRename = exports.IconPin = exports.IconBatchMovement = exports.IconAsynchronousOperation = exports.IconParameterSetting = exports.IconFolderClose = exports.IconFolderOpen = exports.IconFolderMaas = exports.IconBatchInference = exports.IconObs = exports.IconDataSetBos = exports.IconManagement = exports.IconDeepseek = exports.IconDataSetDetail = exports.IconDataSetBlue = exports.IconImageModel = exports.IconWorkspaceMaas = exports.IconYaml = exports.IconUserMaas = exports.IconCustomMark = exports.IconService = exports.IconRm = exports.IconSmoothUpdate = exports.IconModelEvalue = exports.IconSingleMachine = exports.IconTos = void 0;
|
|
49
|
-
exports.IconAgentWebService = exports.IconAgentDeploymentPackage = exports.IconAgentPublishApi = exports.IconAgentPublishEnterpriseWechat = exports.IconAgentPublishWeChat = exports.IconAgentPublishOthers = exports.IconAgentChannel = exports.IconAgentHistory = exports.IconAgentImport = exports.IconVariableAssignment = exports.IconAPIDatasource = exports.IconAPI = exports.IconInvokeMemoryDel = void 0;
|
|
49
|
+
exports.IconUpgradeEngine = exports.IconAscent = exports.IconNvidia = exports.IconVisualModel = exports.IconText2video = exports.IconText2image = exports.IconImage2video = exports.IconMinimumQueue = exports.IconAgentWebService = exports.IconAgentDeploymentPackage = exports.IconAgentPublishApi = exports.IconAgentPublishEnterpriseWechat = exports.IconAgentPublishWeChat = exports.IconAgentPublishOthers = exports.IconAgentChannel = exports.IconAgentHistory = exports.IconAgentImport = exports.IconVariableAssignment = exports.IconAPIDatasource = exports.IconAPI = exports.IconInvokeMemoryDel = void 0;
|
|
50
50
|
var IconWorkflowNodata_1 = require("./IconWorkflowNodata");
|
|
51
51
|
Object.defineProperty(exports, "IconWorkflowNodata", { enumerable: true, get: function () { return __importDefault(IconWorkflowNodata_1).default; } });
|
|
52
52
|
var IconAgentNodata_1 = require("./IconAgentNodata");
|
|
@@ -2973,4 +2973,20 @@ var IconAgentDeploymentPackage_1 = require("./IconAgentDeploymentPackage");
|
|
|
2973
2973
|
Object.defineProperty(exports, "IconAgentDeploymentPackage", { enumerable: true, get: function () { return __importDefault(IconAgentDeploymentPackage_1).default; } });
|
|
2974
2974
|
var IconAgentWebService_1 = require("./IconAgentWebService");
|
|
2975
2975
|
Object.defineProperty(exports, "IconAgentWebService", { enumerable: true, get: function () { return __importDefault(IconAgentWebService_1).default; } });
|
|
2976
|
+
var IconMinimumQueue_1 = require("./IconMinimumQueue");
|
|
2977
|
+
Object.defineProperty(exports, "IconMinimumQueue", { enumerable: true, get: function () { return __importDefault(IconMinimumQueue_1).default; } });
|
|
2978
|
+
var IconImage2video_1 = require("./IconImage2video");
|
|
2979
|
+
Object.defineProperty(exports, "IconImage2video", { enumerable: true, get: function () { return __importDefault(IconImage2video_1).default; } });
|
|
2980
|
+
var IconText2image_1 = require("./IconText2image");
|
|
2981
|
+
Object.defineProperty(exports, "IconText2image", { enumerable: true, get: function () { return __importDefault(IconText2image_1).default; } });
|
|
2982
|
+
var IconText2video_1 = require("./IconText2video");
|
|
2983
|
+
Object.defineProperty(exports, "IconText2video", { enumerable: true, get: function () { return __importDefault(IconText2video_1).default; } });
|
|
2984
|
+
var IconVisualModel_1 = require("./IconVisualModel");
|
|
2985
|
+
Object.defineProperty(exports, "IconVisualModel", { enumerable: true, get: function () { return __importDefault(IconVisualModel_1).default; } });
|
|
2986
|
+
var IconNvidia_1 = require("./IconNvidia");
|
|
2987
|
+
Object.defineProperty(exports, "IconNvidia", { enumerable: true, get: function () { return __importDefault(IconNvidia_1).default; } });
|
|
2988
|
+
var IconAscent_1 = require("./IconAscent");
|
|
2989
|
+
Object.defineProperty(exports, "IconAscent", { enumerable: true, get: function () { return __importDefault(IconAscent_1).default; } });
|
|
2990
|
+
var IconUpgradeEngine_1 = require("./IconUpgradeEngine");
|
|
2991
|
+
Object.defineProperty(exports, "IconUpgradeEngine", { enumerable: true, get: function () { return __importDefault(IconUpgradeEngine_1).default; } });
|
|
2976
2992
|
__exportStar(require("./type"), exports);
|