@opensumi/ide-components 3.2.4-next-1723688727.0 → 3.2.4-next-1724060439.0

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 (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -6357,7 +6357,7 @@ eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexpo
6357
6357
  /***/ ((__unused_webpack_module, exports) => {
6358
6358
 
6359
6359
  "use strict";
6360
- eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.IAIReporter = exports.MergeConflictEditorMode = exports.AISerivceType = exports.AI_REPORTER_NAME = void 0;\nexports.AI_REPORTER_NAME = 'AI';\nvar AISerivceType;\n(function (AISerivceType) {\n AISerivceType[\"Chat\"] = \"chat\";\n AISerivceType[\"InlineChat\"] = \"inlineChat\";\n AISerivceType[\"InlineChatInput\"] = \"inlineChatInput\";\n AISerivceType[\"CustomReplay\"] = \"customReplay\";\n AISerivceType[\"Completion\"] = \"completion\";\n AISerivceType[\"Agent\"] = \"agent\";\n AISerivceType[\"MergeConflict\"] = \"mergeConflict\";\n AISerivceType[\"Rename\"] = \"rename\";\n AISerivceType[\"TerminalAICommand\"] = \"terminalAICommand\";\n})(AISerivceType = exports.AISerivceType || (exports.AISerivceType = {}));\nvar MergeConflictEditorMode;\n(function (MergeConflictEditorMode) {\n MergeConflictEditorMode[\"3way\"] = \"3way\";\n MergeConflictEditorMode[\"traditional\"] = \"traditional\";\n})(MergeConflictEditorMode = exports.MergeConflictEditorMode || (exports.MergeConflictEditorMode = {}));\nexports.IAIReporter = Symbol('IAIReporter');\n//# sourceMappingURL=reporter.js.map\n\n//# sourceURL=webpack://@opensumi/ide-components/../core-common/lib/types/ai-native/reporter.js?");
6360
+ eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.IAIReporter = exports.MergeConflictEditorMode = exports.AISerivceType = exports.AI_REPORTER_NAME = void 0;\nexports.AI_REPORTER_NAME = 'AI';\nvar AISerivceType;\n(function (AISerivceType) {\n AISerivceType[\"Chat\"] = \"chat\";\n AISerivceType[\"InlineChat\"] = \"inlineChat\";\n AISerivceType[\"CodeAction\"] = \"codeAction\";\n AISerivceType[\"InlineChatInput\"] = \"inlineChatInput\";\n AISerivceType[\"CustomReplay\"] = \"customReplay\";\n AISerivceType[\"Completion\"] = \"completion\";\n AISerivceType[\"Agent\"] = \"agent\";\n AISerivceType[\"MergeConflict\"] = \"mergeConflict\";\n AISerivceType[\"Rename\"] = \"rename\";\n AISerivceType[\"TerminalAICommand\"] = \"terminalAICommand\";\n})(AISerivceType = exports.AISerivceType || (exports.AISerivceType = {}));\nvar MergeConflictEditorMode;\n(function (MergeConflictEditorMode) {\n MergeConflictEditorMode[\"3way\"] = \"3way\";\n MergeConflictEditorMode[\"traditional\"] = \"traditional\";\n})(MergeConflictEditorMode = exports.MergeConflictEditorMode || (exports.MergeConflictEditorMode = {}));\nexports.IAIReporter = Symbol('IAIReporter');\n//# sourceMappingURL=reporter.js.map\n\n//# sourceURL=webpack://@opensumi/ide-components/../core-common/lib/types/ai-native/reporter.js?");
6361
6361
 
6362
6362
  /***/ }),
6363
6363
 
@@ -6896,7 +6896,7 @@ eval("\n/* ---------------------------------------------------------------------
6896
6896
  /***/ ((module, exports, __webpack_require__) => {
6897
6897
 
6898
6898
  "use strict";
6899
- eval("/* provided dependency */ var process = __webpack_require__(/*! ../../node_modules/process/browser.js */ \"../../node_modules/process/browser.js\");\n\n/** ******************************************************************************\n * Copyright (C) 2017 TypeFox and others.\n *\n * This program and the accompanying materials are made available under the\n * terms of the Eclipse Public License v. 2.0 which is available at\n * http://www.eclipse.org/legal/epl-2.0.\n *\n * This Source Code may also be made available under the following Secondary\n * Licenses when the conditions for such availability set forth in the Eclipse\n * Public License v. 2.0 are satisfied: GNU General Public License, version 2\n * with the GNU Classpath Exception which is available at\n * https://www.gnu.org/software/classpath/license.html.\n *\n * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0\n ********************************************************************************/\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.getNodeRequire = exports.isDevelopment = exports.isElectronNode = exports.isNodeIntegrated = exports.OS = exports.cmd = void 0;\nconst platform_1 = __webpack_require__(/*! ./platform */ \"../utils/lib/platform.js\");\nfunction cmd(command, ...args) {\n return [platform_1.isWindows ? 'cmd' : command, platform_1.isWindows ? ['/c', command, ...args] : args];\n}\nexports.cmd = cmd;\nvar OS;\n(function (OS) {\n let Type;\n (function (Type) {\n Type[Type[\"Windows\"] = 1] = \"Windows\";\n Type[Type[\"Linux\"] = 3] = \"Linux\";\n Type[Type[\"OSX\"] = 2] = \"OSX\";\n })(Type = OS.Type || (OS.Type = {}));\n function type() {\n if (platform_1.isWindows) {\n return platform_1.OperatingSystem.Windows;\n }\n if (platform_1.isMacintosh) {\n return platform_1.OperatingSystem.Macintosh;\n }\n return platform_1.OperatingSystem.Linux;\n }\n OS.type = type;\n})(OS = exports.OS || (exports.OS = {}));\nfunction isNodeIntegrated() {\n return true && !!module.exports;\n}\nexports.isNodeIntegrated = isNodeIntegrated;\nconst safeGlobal = typeof __webpack_require__.g === 'undefined' ? (typeof window === 'undefined' ? {} : window) : __webpack_require__.g;\nfunction isElectronNode() {\n return typeof process !== 'undefined' && process.env && !!process.env.ELECTRON_RUN_AS_NODE;\n}\nexports.isElectronNode = isElectronNode;\nfunction isDevelopment() {\n return safeGlobal.isDev || (typeof process !== 'undefined' && process.env.IS_DEV);\n}\nexports.isDevelopment = isDevelopment;\n// https://github.com/webpack/webpack/issues/4175#issuecomment-342931035\nfunction getNodeRequire() {\n return true ? require : 0;\n}\nexports.getNodeRequire = getNodeRequire;\n//# sourceMappingURL=os.js.map\n\n//# sourceURL=webpack://@opensumi/ide-components/../utils/lib/os.js?");
6899
+ eval("/* provided dependency */ var process = __webpack_require__(/*! ../../node_modules/process/browser.js */ \"../../node_modules/process/browser.js\");\n\n/** ******************************************************************************\n * Copyright (C) 2017 TypeFox and others.\n *\n * This program and the accompanying materials are made available under the\n * terms of the Eclipse Public License v. 2.0 which is available at\n * http://www.eclipse.org/legal/epl-2.0.\n *\n * This Source Code may also be made available under the following Secondary\n * Licenses when the conditions for such availability set forth in the Eclipse\n * Public License v. 2.0 are satisfied: GNU General Public License, version 2\n * with the GNU Classpath Exception which is available at\n * https://www.gnu.org/software/classpath/license.html.\n *\n * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0\n ********************************************************************************/\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.isDevelopment = exports.isElectronNode = exports.isNodeIntegrated = exports.OS = exports.cmd = void 0;\nconst platform_1 = __webpack_require__(/*! ./platform */ \"../utils/lib/platform.js\");\nfunction cmd(command, ...args) {\n return [platform_1.isWindows ? 'cmd' : command, platform_1.isWindows ? ['/c', command, ...args] : args];\n}\nexports.cmd = cmd;\nvar OS;\n(function (OS) {\n let Type;\n (function (Type) {\n Type[Type[\"Windows\"] = 1] = \"Windows\";\n Type[Type[\"Linux\"] = 3] = \"Linux\";\n Type[Type[\"OSX\"] = 2] = \"OSX\";\n })(Type = OS.Type || (OS.Type = {}));\n function type() {\n if (platform_1.isWindows) {\n return platform_1.OperatingSystem.Windows;\n }\n if (platform_1.isMacintosh) {\n return platform_1.OperatingSystem.Macintosh;\n }\n return platform_1.OperatingSystem.Linux;\n }\n OS.type = type;\n})(OS = exports.OS || (exports.OS = {}));\nfunction isNodeIntegrated() {\n return true && !!module.exports;\n}\nexports.isNodeIntegrated = isNodeIntegrated;\nconst safeGlobal = typeof __webpack_require__.g === 'undefined' ? (typeof window === 'undefined' ? {} : window) : __webpack_require__.g;\nfunction isElectronNode() {\n return typeof process !== 'undefined' && process.env && !!process.env.ELECTRON_RUN_AS_NODE;\n}\nexports.isElectronNode = isElectronNode;\nfunction isDevelopment() {\n return safeGlobal.isDev || (typeof process !== 'undefined' && process.env.IS_DEV);\n}\nexports.isDevelopment = isDevelopment;\n//# sourceMappingURL=os.js.map\n\n//# sourceURL=webpack://@opensumi/ide-components/../utils/lib/os.js?");
6900
6900
 
6901
6901
  /***/ }),
6902
6902
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opensumi/ide-components",
3
- "version": "3.2.4-next-1723688727.0",
3
+ "version": "3.2.4-next-1724060439.0",
4
4
  "description": "@opensumi/ide-components",
5
5
  "license": "MIT",
6
6
  "main": "lib/index.js",
@@ -16,7 +16,7 @@
16
16
  },
17
17
  "dependencies": {
18
18
  "@ant-design/icons": "^4.6.4",
19
- "@opensumi/ide-utils": "3.2.4-next-1723688727.0",
19
+ "@opensumi/ide-utils": "3.2.4-next-1724060439.0",
20
20
  "@opensumi/react-custom-scrollbars-2": "^4.3.2",
21
21
  "fuzzy": "^0.1.3",
22
22
  "lodash": "^4.17.21",
@@ -36,10 +36,10 @@
36
36
  "react-window": "^1.8.5"
37
37
  },
38
38
  "devDependencies": {
39
- "@opensumi/ide-dev-tool": "3.2.4-next-1723688727.0",
39
+ "@opensumi/ide-dev-tool": "3.2.4-next-1724060439.0",
40
40
  "@types/marked": "^4.0.7",
41
41
  "@types/react-window": "^1.8.5",
42
42
  "prop-types": "^15.8.1"
43
43
  },
44
- "gitHead": "44d8340d3606e3e5f75caaa6745fd87fe77994f0"
44
+ "gitHead": "b2e6bb9d0daf4b4404245164dd13b0a27daf3cdf"
45
45
  }