@arco-iconbox/react-hiagent 0.2.72 → 0.2.74

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.
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconNewWindow1: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconNewWindow1;
@@ -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 IconNewWindow1Component(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-new-window-1").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("path", { d: "M6.7085 1.02081C6.86958 1.02081 7.00016 1.1514 7.00016 1.31248V2.18748C7.00016 2.34856 6.86958 2.47915 6.7085 2.47915H2.47933V11.5208H11.521V7.29165C11.521 7.13056 11.6516 6.99998 11.8127 6.99998H12.6877C12.8487 6.99998 12.9793 7.13056 12.9793 7.29165V12.6875C12.9793 12.8486 12.8487 12.9791 12.6877 12.9791H1.31266C1.15158 12.9791 1.021 12.8486 1.021 12.6875V1.31248C1.021 1.1514 1.15158 1.02081 1.31266 1.02081H6.7085Z" }),
57
+ react_1.default.createElement("path", { d: "M9.10224 1.02081C8.97231 1.02081 8.90725 1.1779 8.99912 1.26977L10.3469 2.61757L6.68687 6.27763C6.57297 6.39153 6.57297 6.5762 6.68687 6.69011L7.30559 7.30882C7.41949 7.42273 7.60416 7.42273 7.71807 7.30882L11.3781 3.64877L12.7304 5.00103C12.8222 5.0929 12.9793 5.02783 12.9793 4.89791V1.16665C12.9793 1.0861 12.914 1.02081 12.8335 1.02081H9.10224Z" }));
58
+ }
59
+ var IconNewWindow1 = react_1.default.forwardRef(IconNewWindow1Component);
60
+ exports.default = IconNewWindow1;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconSelfBuiltResources: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconSelfBuiltResources;
@@ -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 IconSelfBuiltResourcesComponent(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-self-built-resources").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 18 18" }, rest, { ref: ref }),
56
+ react_1.default.createElement("path", { fillRule: "evenodd", d: "M7.658 7.333c0-.373.302-.675.675-.675h4a.675.675 0 1 1 0 1.35h-4a.675.675 0 0 1-.675-.675Zm0 6c0-.373.302-.675.675-.675h4a.675.675 0 1 1 0 1.35h-4a.675.675 0 0 1-.675-.675Zm0-8.667c0-.373.302-.675.675-.675H15a.675.675 0 0 1 0 1.35H8.333a.675.675 0 0 1-.675-.675Zm0 6c0-.373.302-.675.675-.675H15a.675.675 0 0 1 0 1.35H8.333a.675.675 0 0 1-.675-.675Zm-3.325-.991A.675.675 0 0 1 3.658 9V6.333a.675.675 0 1 1 1.35 0V9a.675.675 0 0 1-.675.675Zm0 5.333a.675.675 0 0 1-.675-.675v-2a.675.675 0 1 1 1.35 0v2a.675.675 0 0 1-.675.675Z", clipRule: "evenodd" }),
57
+ react_1.default.createElement("path", { fillRule: "evenodd", d: "M4.333 4.342a.658.658 0 1 0 0 1.316.658.658 0 0 0 0-1.316ZM2.325 5a2.008 2.008 0 1 1 4.017 0 2.008 2.008 0 0 1-4.017 0Zm2.008 5.342a.658.658 0 1 0 0 1.316.658.658 0 0 0 0-1.316ZM2.325 11a2.008 2.008 0 1 1 4.017 0 2.008 2.008 0 0 1-4.017 0Z", clipRule: "evenodd" }));
58
+ }
59
+ var IconSelfBuiltResources = react_1.default.forwardRef(IconSelfBuiltResourcesComponent);
60
+ exports.default = IconSelfBuiltResources;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconSpecifiedResource: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconSpecifiedResource;
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
14
+ if (k2 === undefined) k2 = k;
15
+ var desc = Object.getOwnPropertyDescriptor(m, k);
16
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
17
+ desc = { enumerable: true, get: function() { return m[k]; } };
18
+ }
19
+ Object.defineProperty(o, k2, desc);
20
+ }) : (function(o, m, k, k2) {
21
+ if (k2 === undefined) k2 = k;
22
+ o[k2] = m[k];
23
+ }));
24
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
25
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
26
+ }) : function(o, v) {
27
+ o["default"] = v;
28
+ });
29
+ var __importStar = (this && this.__importStar) || function (mod) {
30
+ if (mod && mod.__esModule) return mod;
31
+ var result = {};
32
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
33
+ __setModuleDefault(result, mod);
34
+ return result;
35
+ };
36
+ var __rest = (this && this.__rest) || function (s, e) {
37
+ var t = {};
38
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
39
+ t[p] = s[p];
40
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
41
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
42
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
43
+ t[p[i]] = s[p[i]];
44
+ }
45
+ return t;
46
+ };
47
+ Object.defineProperty(exports, "__esModule", { value: true });
48
+ var react_1 = __importStar(require("react"));
49
+ var context_1 = require("../context");
50
+ function IconSpecifiedResourceComponent(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-specified-resource").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 18 18" }, rest, { ref: ref }),
56
+ react_1.default.createElement("path", { fillRule: "evenodd", d: "M5.537 3.075a1.8 1.8 0 0 0-1.8 1.8v2.402a1.8 1.8 0 0 0-1.614 2.382l1.39 4.05a1.8 1.8 0 0 0 1.702 1.216h7.57a1.8 1.8 0 0 0 1.702-1.216l1.39-4.05a1.8 1.8 0 0 0-1.614-2.382V6.259a1.8 1.8 0 0 0-1.774-1.8l-2.687-.038a.45.45 0 0 1-.303-.124L8.73 3.57a1.8 1.8 0 0 0-1.239-.494H5.537Zm-1.145 5.55h9.783a.45.45 0 0 1 .425.596l-1.39 4.05a.45.45 0 0 1-.425.304h-7.57a.45.45 0 0 1-.426-.304L3.4 9.22a.45.45 0 0 1 .426-.596h.567Zm8.521-1.35V6.259a.45.45 0 0 0-.443-.45L9.783 5.77a1.8 1.8 0 0 1-1.213-.493l-.768-.728a.45.45 0 0 0-.31-.124H5.537a.45.45 0 0 0-.45.45v2.4h7.826Z", clipRule: "evenodd" }));
57
+ }
58
+ var IconSpecifiedResource = react_1.default.forwardRef(IconSpecifiedResourceComponent);
59
+ exports.default = IconSpecifiedResource;
package/cjs/index.d.ts CHANGED
@@ -824,4 +824,7 @@ export { default as IconTabelNodata } from './IconTabelNodata';
824
824
  export { default as IconNewGeneralDefault } from './IconNewGeneralDefault';
825
825
  export { default as IconNewNoData } from './IconNewNoData';
826
826
  export { default as IconNewNoService } from './IconNewNoService';
827
+ export { default as IconSelfBuiltResources } from './IconSelfBuiltResources';
828
+ export { default as IconSpecifiedResource } from './IconSpecifiedResource';
829
+ export { default as IconNewWindow1 } from './IconNewWindow1';
827
830
  export * from './type';
package/cjs/index.js CHANGED
@@ -33,7 +33,7 @@ exports.IconAgentThinkingLanguage = exports.IconJapanese = exports.IconLock1 = e
33
33
  exports.IconMenuTask = exports.IconModelService = exports.IconMenuPluginCenter = exports.IconMenuKnowledge = exports.IconImportMusic = exports.IconFastForward30 = exports.IconReturnNow15 = exports.IconVideoNext = exports.IconVideoPlay = exports.IconPrevious = exports.IconPause = exports.IconLowVolume = exports.IconSilence = exports.IconLoudVolume = exports.IconFull = exports.IconShrink = exports.IconPiplconExit = exports.IconPiplcon = exports.IconPieChartNodata = exports.IconLineGraphNodata = exports.IconHorizontalBarChartNodata = exports.IconVerticalBarChartNodata = exports.IconProcessEvaluation = exports.IconModelVoice = exports.IconSpeech2text = exports.IconMultiTimbre = exports.IconMultiLanguage = exports.IconText2speech = exports.IconFirstTokensCost = exports.IconNodeSuccessfullyInvoked = exports.IconFirstCharacterReplyTakesTime = exports.IconNodeInvocation = exports.IconSingleDialogueTimeConsuming = exports.IconNodeTimeConsumption = exports.IconTokenConsumption = exports.IconUploadingLarkbitable = exports.IconVideoRewind10s = exports.IconVideoFastForward10s = exports.IconAudioPlay = exports.IconAudioCycle = exports.IconAudioPause = exports.IconRemoveColor = exports.IconWorkflowVidMatching = exports.IconKnowledgePic = exports.IconRegionFolding = exports.IconSimilarityQuestion = exports.IconDataTransform = exports.IconPluginLocal = exports.IconPluginRemote = exports.IconPluginCloudDeployment = void 0;
34
34
  exports.IconAgentChatStop = exports.IconDebugging = exports.IconResultEvaluation = exports.IconTraceText = exports.IconTraceRaw = exports.IconAgentpro = exports.IconAgentproStop = exports.IconTaskDone = exports.IconArtifactsBrowse = exports.IconAgentproReportDownload = exports.IconArtifactsCode = exports.IconAgentproFileList = exports.IconArtifactsKnowledge = exports.IconAgentproConfiguration = exports.IconArtifactsOther = exports.IconArtifactsShell = exports.IconArtifactsSearch = exports.IconArtifactsFile = exports.IconArtifactsPic = exports.IconVideoAgentKnowledge = exports.IconSpeaker = exports.IconExperienceCenter = exports.IconTouchpadMouseWorkflow = exports.IconTouchpadModeWorkflow = exports.IconLinkArrowSmall = exports.IconSavedConditions = exports.IconSaveButton = exports.IconText2video1 = exports.IconVolume = exports.IconFullscreen = exports.IconVideoTag = exports.IconMoonshot = exports.IconBGE = exports.IconQwen = exports.IconGPT35 = exports.IconGPT4 = exports.IconDoubao = exports.IconGoogleGemini = exports.IconDeepseek = exports.IconAWS = exports.IconClaude = exports.IconReleaseManagement = exports.IconDataProcessing1 = exports.IconModelExperienceCenter = exports.IconObservationIntegration = exports.IconModelOptimization = exports.IconComputingManagement = exports.IconMenuObservation = exports.IconMenuAgentCenter = exports.IconMenuEvaluation = void 0;
35
35
  exports.IconAgentproFollow = exports.IconUploadFile = exports.IconUploadRadio = exports.IconKnowledgeBoard = exports.IconIndicatorMonitoring = exports.IconLoading2 = exports.IconQAExtract = exports.IconMore = exports.IconKnowledgeDataSynchronization = exports.IconKnowledgeChartTable = exports.IconTreeTerminologySearch = exports.IconTreeQASearch = exports.IconWorkflowKnowledgeRetrieval = exports.IconCompletedComparison = exports.IconPDSeparation = exports.IconRise2 = exports.IconComparison = exports.IconDecline2 = exports.IconAutomaticOptimization = exports.IconPromptWordTemplate = exports.IconGeneratedDocument = exports.IconTreeObject = exports.IconTreeRules = exports.IconDiagramCracking2 = exports.IconTaskCompleted = exports.IconFullscreenExit = exports.IconEmpty = exports.IconTag = exports.IconRotateLeft = exports.IconWorkflowChecklist = exports.IconDataInsight = exports.IconMenuIndicators = exports.IconMenuEvaluationSet = exports.IconDataOnlineTagging = exports.IconMenuHiagent = exports.IconModelGallery = exports.IconThumbDown = exports.IconZoomOut = exports.IconZoomIn = exports.IconMinusCircle = exports.IconThumbUp = exports.IconArrowDown = exports.IconCalendarClock = exports.IconCloseCircle = exports.IconCopy = exports.IconLaunch = exports.IconMenu = exports.IconMessage = exports.IconDataProduction = exports.IconTransform1 = void 0;
36
- exports.IconNewNoService = exports.IconNewNoData = exports.IconNewGeneralDefault = exports.IconTabelNodata = exports.IconMermaidClose = exports.IconSkills = exports.IconTimeout = exports.IconGuarantee = exports.IconVoicecallCancel = exports.IconVoicecallConfirm = exports.IconAddAgentEval = exports.IconMermaidScale = exports.IconMermaidCopy = exports.IconMermaidShrink = exports.IconMermaidMagnify = exports.IconMermaidDownload = exports.IconMermaidFull = exports.IconSafeTag = exports.IconEvalOnline = exports.IconEvalOffline = exports.IconUserLine = exports.IconAdministratorLine = exports.IconMultimodalLoading = exports.IconTextProcessing = exports.IconSankeyDiagram = exports.IconTerminology = void 0;
36
+ exports.IconNewWindow1 = exports.IconSpecifiedResource = exports.IconSelfBuiltResources = exports.IconNewNoService = exports.IconNewNoData = exports.IconNewGeneralDefault = exports.IconTabelNodata = exports.IconMermaidClose = exports.IconSkills = exports.IconTimeout = exports.IconGuarantee = exports.IconVoicecallCancel = exports.IconVoicecallConfirm = exports.IconAddAgentEval = exports.IconMermaidScale = exports.IconMermaidCopy = exports.IconMermaidShrink = exports.IconMermaidMagnify = exports.IconMermaidDownload = exports.IconMermaidFull = exports.IconSafeTag = exports.IconEvalOnline = exports.IconEvalOffline = exports.IconUserLine = exports.IconAdministratorLine = exports.IconMultimodalLoading = exports.IconTextProcessing = exports.IconSankeyDiagram = exports.IconTerminology = void 0;
37
37
  var IconWorkflowNodata_1 = require("./IconWorkflowNodata");
38
38
  Object.defineProperty(exports, "IconWorkflowNodata", { enumerable: true, get: function () { return __importDefault(IconWorkflowNodata_1).default; } });
39
39
  var IconAgentNodata_1 = require("./IconAgentNodata");
@@ -1686,4 +1686,10 @@ var IconNewNoData_1 = require("./IconNewNoData");
1686
1686
  Object.defineProperty(exports, "IconNewNoData", { enumerable: true, get: function () { return __importDefault(IconNewNoData_1).default; } });
1687
1687
  var IconNewNoService_1 = require("./IconNewNoService");
1688
1688
  Object.defineProperty(exports, "IconNewNoService", { enumerable: true, get: function () { return __importDefault(IconNewNoService_1).default; } });
1689
+ var IconSelfBuiltResources_1 = require("./IconSelfBuiltResources");
1690
+ Object.defineProperty(exports, "IconSelfBuiltResources", { enumerable: true, get: function () { return __importDefault(IconSelfBuiltResources_1).default; } });
1691
+ var IconSpecifiedResource_1 = require("./IconSpecifiedResource");
1692
+ Object.defineProperty(exports, "IconSpecifiedResource", { enumerable: true, get: function () { return __importDefault(IconSpecifiedResource_1).default; } });
1693
+ var IconNewWindow1_1 = require("./IconNewWindow1");
1694
+ Object.defineProperty(exports, "IconNewWindow1", { enumerable: true, get: function () { return __importDefault(IconNewWindow1_1).default; } });
1689
1695
  __exportStar(require("./type"), exports);