@arco-iconbox/react-hiagent 0.0.41 → 0.0.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. package/cjs/IconComputingManagement/index.d.ts +4 -0
  2. package/cjs/IconComputingManagement/index.js +62 -0
  3. package/cjs/IconDataDataset/index.d.ts +4 -0
  4. package/cjs/IconDataDataset/index.js +60 -0
  5. package/cjs/IconDataOnlineTagging/index.d.ts +4 -0
  6. package/cjs/IconDataOnlineTagging/index.js +60 -0
  7. package/cjs/IconModelAppliction/index.d.ts +4 -0
  8. package/cjs/IconModelAppliction/index.js +60 -0
  9. package/cjs/IconModelExperienceCenter/index.d.ts +4 -0
  10. package/cjs/IconModelExperienceCenter/index.js +60 -0
  11. package/cjs/IconModelOptimization/index.d.ts +4 -0
  12. package/cjs/IconModelOptimization/index.js +61 -0
  13. package/cjs/IconModelService/index.d.ts +4 -0
  14. package/cjs/IconModelService/index.js +60 -0
  15. package/cjs/IconModelWarehouse/index.d.ts +4 -0
  16. package/cjs/IconModelWarehouse/index.js +60 -0
  17. package/cjs/IconShare/index.d.ts +4 -0
  18. package/cjs/IconShare/index.js +61 -0
  19. package/cjs/index.d.ts +9 -0
  20. package/cjs/index.js +20 -1
  21. package/dist/icon.min.js +1 -1
  22. package/esm/IconComputingManagement/index.d.ts +4 -0
  23. package/esm/IconComputingManagement/index.js +37 -0
  24. package/esm/IconDataDataset/index.d.ts +4 -0
  25. package/esm/IconDataDataset/index.js +35 -0
  26. package/esm/IconDataOnlineTagging/index.d.ts +4 -0
  27. package/esm/IconDataOnlineTagging/index.js +35 -0
  28. package/esm/IconModelAppliction/index.d.ts +4 -0
  29. package/esm/IconModelAppliction/index.js +35 -0
  30. package/esm/IconModelExperienceCenter/index.d.ts +4 -0
  31. package/esm/IconModelExperienceCenter/index.js +35 -0
  32. package/esm/IconModelOptimization/index.d.ts +4 -0
  33. package/esm/IconModelOptimization/index.js +36 -0
  34. package/esm/IconModelService/index.d.ts +4 -0
  35. package/esm/IconModelService/index.js +35 -0
  36. package/esm/IconModelWarehouse/index.d.ts +4 -0
  37. package/esm/IconModelWarehouse/index.js +35 -0
  38. package/esm/IconShare/index.d.ts +4 -0
  39. package/esm/IconShare/index.js +36 -0
  40. package/esm/index.d.ts +9 -0
  41. package/esm/index.js +9 -0
  42. package/package.json +1 -1
  43. package/src/IconComputingManagement/index.tsx +15 -0
  44. package/src/IconDataDataset/index.tsx +15 -0
  45. package/src/IconDataOnlineTagging/index.tsx +15 -0
  46. package/src/IconModelAppliction/index.tsx +15 -0
  47. package/src/IconModelExperienceCenter/index.tsx +15 -0
  48. package/src/IconModelOptimization/index.tsx +15 -0
  49. package/src/IconModelService/index.tsx +15 -0
  50. package/src/IconModelWarehouse/index.tsx +15 -0
  51. package/src/IconShare/index.tsx +15 -0
  52. package/src/index.ts +9 -0
  53. package/umd/IconComputingManagement/index.d.ts +4 -0
  54. package/umd/IconComputingManagement/index.js +72 -0
  55. package/umd/IconDataDataset/index.d.ts +4 -0
  56. package/umd/IconDataDataset/index.js +70 -0
  57. package/umd/IconDataOnlineTagging/index.d.ts +4 -0
  58. package/umd/IconDataOnlineTagging/index.js +70 -0
  59. package/umd/IconModelAppliction/index.d.ts +4 -0
  60. package/umd/IconModelAppliction/index.js +70 -0
  61. package/umd/IconModelExperienceCenter/index.d.ts +4 -0
  62. package/umd/IconModelExperienceCenter/index.js +70 -0
  63. package/umd/IconModelOptimization/index.d.ts +4 -0
  64. package/umd/IconModelOptimization/index.js +71 -0
  65. package/umd/IconModelService/index.d.ts +4 -0
  66. package/umd/IconModelService/index.js +70 -0
  67. package/umd/IconModelWarehouse/index.d.ts +4 -0
  68. package/umd/IconModelWarehouse/index.js +70 -0
  69. package/umd/IconShare/index.d.ts +4 -0
  70. package/umd/IconShare/index.js +71 -0
  71. package/umd/index.d.ts +9 -0
  72. package/umd/index.js +20 -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 IconModelServiceComponent(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-model_service").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 20 20", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
56
+ react_1.default.createElement("path", { d: "M11.0242 10.0403C11.3047 10.0292 11.571 9.91389 11.7711 9.71702C11.8854 9.60702 11.9752 9.47421 12.0348 9.3272C12.0944 9.1802 12.1224 9.0223 12.117 8.86377C12.1115 8.70524 12.0728 8.54962 12.0033 8.40705C11.9337 8.26447 11.835 8.13813 11.7134 8.03623C11.5919 7.93433 11.4502 7.85916 11.2977 7.8156C11.1451 7.77204 10.9852 7.76107 10.8281 7.7834C10.6711 7.80573 10.5205 7.86087 10.3861 7.94522C10.2518 8.02957 10.1367 8.14125 10.0484 8.27301C9.88949 8.50444 9.82251 8.78677 9.8605 9.06491C9.89849 9.34306 10.0387 9.59708 10.2539 9.77742C10.469 9.95777 10.7436 10.0515 11.0242 10.0403Z" }),
57
+ react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.40909 2.5C2.90701 2.5 2.5 2.90701 2.5 3.40909V16.5909C2.5 17.093 2.90701 17.5 3.40909 17.5H16.5909C17.093 17.5 17.5 17.093 17.5 16.5909V3.40909C17.5 2.90701 17.093 2.5 16.5909 2.5H3.40909ZM13.9624 5.92967C14.0074 5.9747 14.0383 6.03195 14.0511 6.09432C14.2991 7.15839 14.2271 8.27204 13.8439 9.29525C13.4608 10.3185 12.7837 11.2056 11.8977 11.845C11.8412 11.9025 11.798 11.9717 11.7711 12.0477C11.5726 12.8234 11.1703 13.5319 10.6057 14.0997C10.3325 14.3553 10.0356 14.5844 9.71905 14.7837C9.67687 14.807 9.63034 14.8212 9.58237 14.8256C9.53441 14.8299 9.48606 14.8243 9.44038 14.8091C9.39737 14.7962 9.35756 14.7743 9.32354 14.745C9.28952 14.7157 9.26206 14.6796 9.24294 14.6389C9.22382 14.5983 9.21347 14.5541 9.21257 14.5092C9.21167 14.4643 9.22024 14.4197 9.23772 14.3784C9.38515 13.9538 9.47047 13.5101 9.49105 13.061C9.49262 13.0018 9.47958 12.9431 9.45307 12.89C9.42656 12.837 9.3874 12.7913 9.33905 12.757C8.91133 12.4471 8.50507 12.1085 8.12304 11.7437C7.75823 11.3617 7.41968 10.9554 7.10969 10.5277C7.0754 10.4793 7.02972 10.4402 6.9767 10.4137C6.92368 10.3872 6.86495 10.3741 6.80569 10.3757C6.35667 10.3963 5.91297 10.4816 5.48834 10.629C5.44256 10.6437 5.39431 10.649 5.34644 10.6446C5.29857 10.6403 5.25206 10.6264 5.20967 10.6037C5.17114 10.5823 5.13725 10.5535 5.10997 10.5189C5.08268 10.4844 5.06256 10.4447 5.05077 10.4022C5.03898 10.3598 5.03576 10.3154 5.04129 10.2717C5.04683 10.228 5.06101 10.1859 5.083 10.1477C5.27597 9.82668 5.5055 9.52914 5.76701 9.26101C6.33191 8.69265 7.04153 8.28966 7.81903 8.09567C7.89942 8.07869 7.97121 8.03382 8.0217 7.969C8.67229 7.08994 9.56563 6.42018 10.5918 6.04211C11.618 5.66403 12.7324 5.59413 13.7978 5.84099C13.8601 5.85381 13.9174 5.88464 13.9624 5.92967ZM6.3251 13.5424C6.0754 13.2927 6.98342 11.9534 7.18772 11.7491C7.29723 11.6715 7.4281 11.6299 7.56228 11.6299C7.69646 11.6299 7.82734 11.6715 7.93684 11.7491C8.01086 11.7974 8.07443 11.8601 8.1238 11.9335C8.17317 12.0068 8.20733 12.0893 8.22426 12.1761C8.24119 12.2629 8.24055 12.3521 8.22237 12.4387C8.2042 12.5252 8.16886 12.6072 8.11844 12.6798C7.91414 12.8841 6.57481 13.7921 6.3251 13.5424Z" }));
58
+ }
59
+ var IconModelService = react_1.default.forwardRef(IconModelServiceComponent);
60
+ exports.default = IconModelService;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconModelWarehouse: 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 IconModelWarehouse;
@@ -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 IconModelWarehouseComponent(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-model_warehouse").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 20 20", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
56
+ react_1.default.createElement("path", { opacity: ".5", d: "M2.64932 13.7971C2.65755 14.0856 2.81471 14.3501 3.06565 14.4949L9.58336 18.2579C9.7149 18.3339 9.86202 18.3711 10.0088 18.3695L10.0086 10.4269C10.0086 10.1968 9.847 9.91697 9.64771 9.8019L2.7629 5.82666C2.69162 5.94858 2.65133 6.08856 2.64908 6.23435L2.64932 13.7971Z" }),
57
+ react_1.default.createElement("path", { d: "M9.58336 1.75227C9.84119 1.60341 10.1589 1.60341 10.4167 1.75227L16.9344 5.51528C17.1922 5.66414 17.3511 5.93924 17.3511 6.23696V13.763C17.3511 14.0607 17.1922 14.3358 16.9344 14.4847L10.4167 18.2477C10.2904 18.3206 10.1497 18.3578 10.0087 18.3593L10.0084 10.4167C10.0084 10.1865 9.84684 9.90672 9.64756 9.79166L2.76284 5.81647C2.8347 5.69353 2.93805 5.58894 3.06564 5.51528L9.58336 1.75227zM2.64898 7.76651L2.64917 13.7809C2.64904 13.7749 2.64898 13.769 2.64898 13.763V7.76651z" }));
58
+ }
59
+ var IconModelWarehouse = react_1.default.forwardRef(IconModelWarehouseComponent);
60
+ exports.default = IconModelWarehouse;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconShare: 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 IconShare;
@@ -0,0 +1,61 @@
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 IconShareComponent(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-share").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("g", { fillRule: "evenodd", clipRule: "evenodd" },
57
+ react_1.default.createElement("path", { d: "M2.06055 8.40308C2.06055 7.15124 3.07537 6.13642 4.32721 6.13642 5.57906 6.13642 6.59388 7.15124 6.59388 8.40308 6.59388 9.65493 5.57906 10.6698 4.32721 10.6698 3.07537 10.6698 2.06055 9.65493 2.06055 8.40308zM5.39388 8.40308C5.39388 7.81398 4.91632 7.33642 4.32721 7.33642 3.73811 7.33642 3.26055 7.81398 3.26055 8.40308 3.26055 8.99219 3.73811 9.46975 4.32721 9.46975 4.91632 9.46975 5.39388 8.99219 5.39388 8.40308zM9.40625 4.01936C9.40625 2.76752 10.4211 1.7527 11.6729 1.7527 12.9248 1.7527 13.9396 2.76752 13.9396 4.01936 13.9396 5.27121 12.9248 6.28603 11.6729 6.28603 10.4211 6.28603 9.40625 5.27121 9.40625 4.01936zM12.7396 4.01936C12.7396 3.43026 12.262 2.9527 11.6729 2.9527 11.0838 2.9527 10.6063 3.43026 10.6063 4.01936 10.6063 4.60847 11.0838 5.08603 11.6729 5.08603 12.262 5.08603 12.7396 4.60847 12.7396 4.01936zM9.19922 11.9806C9.19922 10.7288 10.214 9.71397 11.4659 9.71397 12.7177 9.71397 13.7326 10.7288 13.7326 11.9806 13.7326 13.2325 12.7177 14.2473 11.4659 14.2473 10.214 14.2473 9.19922 13.2325 9.19922 11.9806zM12.5326 11.9806C12.5326 11.3915 12.055 10.914 11.4659 10.914 10.8768 10.914 10.3992 11.3915 10.3992 11.9806 10.3992 12.5697 10.8768 13.0473 11.4659 13.0473 12.055 13.0473 12.5326 12.5697 12.5326 11.9806z" }),
58
+ react_1.default.createElement("path", { d: "M10.5159 4.58434C10.6905 4.86596 10.6038 5.23583 10.3222 5.41045L6.15846 7.99228C5.87684 8.1669 5.50698 8.08017 5.33235 7.79855 5.15772 7.51692 5.24445 7.14706 5.52608 6.97243L9.68976 4.39061C9.97139 4.21598 10.3413 4.30272 10.5159 4.58434zM5.34702 9.00417C5.50239 8.71148 5.86562 8.60017 6.15831 8.75554L9.95715 10.7722C10.2498 10.9276 10.3611 11.2908 10.2058 11.5835 10.0504 11.8762 9.68717 11.9875 9.39448 11.8321L5.59564 9.81545C5.30296 9.66008 5.19164 9.29685 5.34702 9.00417z" })));
59
+ }
60
+ var IconShare = react_1.default.forwardRef(IconShareComponent);
61
+ exports.default = IconShare;
package/cjs/index.d.ts CHANGED
@@ -1340,4 +1340,13 @@ export { default as IconMessageFill } from './IconMessageFill';
1340
1340
  export { default as IconColumnConfiguration1 } from './IconColumnConfiguration1';
1341
1341
  export { default as IconWiki } from './IconWiki';
1342
1342
  export { default as IconTrialOperation } from './IconTrialOperation';
1343
+ export { default as IconShare } from './IconShare';
1344
+ export { default as IconComputingManagement } from './IconComputingManagement';
1345
+ export { default as IconModelExperienceCenter } from './IconModelExperienceCenter';
1346
+ export { default as IconModelWarehouse } from './IconModelWarehouse';
1347
+ export { default as IconModelAppliction } from './IconModelAppliction';
1348
+ export { default as IconModelOptimization } from './IconModelOptimization';
1349
+ export { default as IconDataOnlineTagging } from './IconDataOnlineTagging';
1350
+ export { default as IconModelService } from './IconModelService';
1351
+ export { default as IconDataDataset } from './IconDataDataset';
1343
1352
  export * from './type';
package/cjs/index.js CHANGED
@@ -43,7 +43,8 @@ exports.IconClockCircleFill = exports.IconCancelingCircleFill = exports.IconInfo
43
43
  exports.IconNationalPark = exports.IconStadium = exports.IconPostOffice = exports.IconCastle = exports.IconFountain = exports.IconSnowCappedMountain = exports.IconJapanesePostOffice = exports.IconTent = exports.IconFerrisWheel = exports.IconWeddin = exports.IconClassicalBuilding = exports.IconOtherAlarm = exports.IconCardInfo = exports.IconOtherAlarmSetting = exports.IconSubmissionSuccess = exports.IconPermissionRequestSuccess = exports.IconPermissionRequestFail = exports.Icon500ErrorLowSaturation = exports.Icon404ErrorHighSaturation = exports.Icon403ErrorLowSaturation = exports.IconNetworkErrorLowSaturation = exports.IconNoPermissionSimplified = exports.IconNetworkErrorHighSaturation = exports.IconSearchNullSimplified = exports.Icon404ErrorLowSaturation = exports.IconNoPicHighSaturation = exports.IconNoDataSimplified = exports.IconNoContentHighSaturation = exports.IconSubmissionFail = exports.IconNoChartLowSaturation = exports.IconNoPermissionHighSaturation = exports.Icon403ErrorHighSaturation = exports.IconNoDataHighSaturation = exports.IconNoChartHighSaturation = exports.IconErrorTypeSimplified = exports.IconNoContentLowSaturation = exports.IconNoPermissionLowSaturation = exports.IconNoPicLowSaturation = exports.IconNetWorkErrorSimplified = exports.IconNoContentSimplified = exports.IconSearchNullHighSaturation = exports.IconNewWindow = exports.IconSkippingCircleFill = exports.IconIconDescending = exports.IconCheckTriangleFill = exports.IconWaitingCircleFill = exports.IconCheckCircleFilled = exports.IconCheckCircleBlue = exports.IconCloseCircleSeriousFill = exports.IconCloseCircleFill = void 0;
44
44
  exports.IconPersonTakingBath = exports.IconWorldMap = exports.IconBrick = exports.IconSunset = exports.IconDesertIsland = exports.IconMountain = exports.IconDesert = exports.IconCompass = exports.IconShintoShrine = exports.IconOfficeBuilding = exports.IconAmphora = exports.IconMetro = exports.IconVolcano = exports.IconHousewithGarden = exports.IconTrain = exports.IconCamping = exports.IconCityscapeatDusk = exports.IconSunriseOverMountains = exports.IconHighSpeedTrain = exports.IconBeachwithUmbrella = exports.IconSchool = exports.IconHouse = exports.IconLocomotive = exports.IconSynagogue = exports.IconBulletTrain = exports.IconDerelictHouse = exports.IconHut = exports.IconChurch = exports.IconHinduTemple = exports.IconMosque = exports.IconConvenienceStore = exports.IconHouses = exports.IconRailwayCar = exports.IconSunrise = exports.IconDepartmentStore = exports.IconCityscape = exports.IconFactory = exports.IconRollerCoaster = exports.IconNightwithStars = exports.IconTokyoTower = exports.IconBank = exports.IconFoggy = exports.IconHotel = exports.IconLoveHotel = exports.IconStatueofLiberty = exports.IconBridge = exports.IconHospital = exports.IconBuildingConstructio = exports.IconCarouselHorse = exports.IconPersonRowingBoat = void 0;
45
45
  exports.IconPostalHor = exports.IconMobilePhone = exports.IconYarn = exports.IconControlKnob = exports.IconKnot = exports.IconSewingNeedle = exports.IconKite = exports.IconPrayerBeads = exports.IconLevelSlider = exports.IconGemStone = exports.IconNazarAmulet = exports.IconShoppingBags = exports.IconMagicWand = exports.IconPinata = exports.IconTeddyBear = exports.IconCrystalBall = exports.IconJoystick = exports.IconNestingDolls = exports.IconFramedPictur = exports.IconStopwatch = exports.IconRedEnvelope = exports.IconJapaneseDolls = exports.IconThread = exports.IconYoYo = exports.IconDivingMask = exports.IconCarpStreamer = exports.IconWrappedGift = exports.IconBalloon = exports.IconConfettiBall = exports.IconAlarmClock = exports.IconUmbrellaonGround = exports.IconWindChime = exports.IconRibbon = exports.IconManualWheelchair = exports.IconBellhopBell = exports.IconMantelpieceClock = exports.IconHourglassNotDone = exports.IconHourglassDone = exports.IconMotorizedWheelchair = exports.IconLuggage = exports.IconBomb = exports.IconTimerClock = exports.IconOilDrum = exports.IconThermometer = exports.IconPartyPopper = exports.IconWatch = exports.IconLoveLetter = exports.IconPersoninBed = exports.IconHole = exports.IconKitchenKnife = void 0;
46
- 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 = exports.IconBanjo = void 0;
46
+ 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 = exports.IconBanjo = void 0;
47
+ exports.IconDataDataset = void 0;
47
48
  var IconWorkflowNodata_1 = require("./IconWorkflowNodata");
48
49
  Object.defineProperty(exports, "IconWorkflowNodata", { enumerable: true, get: function () { return __importDefault(IconWorkflowNodata_1).default; } });
49
50
  var IconAgentNodata_1 = require("./IconAgentNodata");
@@ -2728,4 +2729,22 @@ var IconWiki_1 = require("./IconWiki");
2728
2729
  Object.defineProperty(exports, "IconWiki", { enumerable: true, get: function () { return __importDefault(IconWiki_1).default; } });
2729
2730
  var IconTrialOperation_1 = require("./IconTrialOperation");
2730
2731
  Object.defineProperty(exports, "IconTrialOperation", { enumerable: true, get: function () { return __importDefault(IconTrialOperation_1).default; } });
2732
+ var IconShare_1 = require("./IconShare");
2733
+ Object.defineProperty(exports, "IconShare", { enumerable: true, get: function () { return __importDefault(IconShare_1).default; } });
2734
+ var IconComputingManagement_1 = require("./IconComputingManagement");
2735
+ Object.defineProperty(exports, "IconComputingManagement", { enumerable: true, get: function () { return __importDefault(IconComputingManagement_1).default; } });
2736
+ var IconModelExperienceCenter_1 = require("./IconModelExperienceCenter");
2737
+ Object.defineProperty(exports, "IconModelExperienceCenter", { enumerable: true, get: function () { return __importDefault(IconModelExperienceCenter_1).default; } });
2738
+ var IconModelWarehouse_1 = require("./IconModelWarehouse");
2739
+ Object.defineProperty(exports, "IconModelWarehouse", { enumerable: true, get: function () { return __importDefault(IconModelWarehouse_1).default; } });
2740
+ var IconModelAppliction_1 = require("./IconModelAppliction");
2741
+ Object.defineProperty(exports, "IconModelAppliction", { enumerable: true, get: function () { return __importDefault(IconModelAppliction_1).default; } });
2742
+ var IconModelOptimization_1 = require("./IconModelOptimization");
2743
+ Object.defineProperty(exports, "IconModelOptimization", { enumerable: true, get: function () { return __importDefault(IconModelOptimization_1).default; } });
2744
+ var IconDataOnlineTagging_1 = require("./IconDataOnlineTagging");
2745
+ Object.defineProperty(exports, "IconDataOnlineTagging", { enumerable: true, get: function () { return __importDefault(IconDataOnlineTagging_1).default; } });
2746
+ var IconModelService_1 = require("./IconModelService");
2747
+ Object.defineProperty(exports, "IconModelService", { enumerable: true, get: function () { return __importDefault(IconModelService_1).default; } });
2748
+ var IconDataDataset_1 = require("./IconDataDataset");
2749
+ Object.defineProperty(exports, "IconDataDataset", { enumerable: true, get: function () { return __importDefault(IconDataDataset_1).default; } });
2731
2750
  __exportStar(require("./type"), exports);