@opensumi/ide-components 3.3.1-next-1725416966.0 → 3.3.1-next-1725433243.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.
- package/dist/index.js +2 -2
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -6126,7 +6126,7 @@ eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexpo
|
|
|
6126
6126
|
/***/ ((__unused_webpack_module, exports) => {
|
|
6127
6127
|
|
|
6128
6128
|
"use strict";
|
|
6129
|
-
eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.Mimes = void 0;\nexports.Mimes = Object.freeze({\n text: 'text/plain',\n binary: 'application/octet-stream',\n unknown: 'application/unknown',\n markdown: 'text/markdown',\n latex: 'text/latex',\n uriList: 'text/uri-list',\n});\n//# sourceMappingURL=mime.js.map\n\n//# sourceURL=webpack://@opensumi/ide-components/../core-common/lib/mime.js?");
|
|
6129
|
+
eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.isTextStreamMime = exports.normalizeMimeType = exports.Mimes = void 0;\nexports.Mimes = Object.freeze({\n text: 'text/plain',\n binary: 'application/octet-stream',\n unknown: 'application/unknown',\n markdown: 'text/markdown',\n latex: 'text/latex',\n uriList: 'text/uri-list',\n});\nconst _simplePattern = /^(.+)\\/(.+?)(;.+)?$/;\nfunction normalizeMimeType(mimeType, strict) {\n var _a;\n const match = _simplePattern.exec(mimeType);\n if (!match) {\n return strict ? undefined : mimeType;\n }\n // https://datatracker.ietf.org/doc/html/rfc2045#section-5.1\n // media and subtype must ALWAYS be lowercase, parameter not\n return `${match[1].toLowerCase()}/${match[2].toLowerCase()}${(_a = match[3]) !== null && _a !== void 0 ? _a : ''}`;\n}\nexports.normalizeMimeType = normalizeMimeType;\n/**\n * Whether the provided mime type is a text stream like `stdout`, `stderr`.\n */\nfunction isTextStreamMime(mimeType) {\n return ['application/vnd.code.notebook.stdout', 'application/vnd.code.notebook.stderr'].includes(mimeType);\n}\nexports.isTextStreamMime = isTextStreamMime;\n//# sourceMappingURL=mime.js.map\n\n//# sourceURL=webpack://@opensumi/ide-components/../core-common/lib/mime.js?");
|
|
6130
6130
|
|
|
6131
6131
|
/***/ }),
|
|
6132
6132
|
|
|
@@ -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.
|
|
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?");
|
|
6361
6361
|
|
|
6362
6362
|
/***/ }),
|
|
6363
6363
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opensumi/ide-components",
|
|
3
|
-
"version": "3.3.1-next-
|
|
3
|
+
"version": "3.3.1-next-1725433243.0",
|
|
4
4
|
"description": "@opensumi/ide-components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@ant-design/icons": "^4.6.4",
|
|
19
|
-
"@opensumi/ide-core-common": "3.3.1-next-
|
|
20
|
-
"@opensumi/ide-utils": "3.3.1-next-
|
|
19
|
+
"@opensumi/ide-core-common": "3.3.1-next-1725433243.0",
|
|
20
|
+
"@opensumi/ide-utils": "3.3.1-next-1725433243.0",
|
|
21
21
|
"@opensumi/react-custom-scrollbars-2": "^4.3.4",
|
|
22
22
|
"@rc-component/mini-decimal": "^1.0.1",
|
|
23
23
|
"fuzzy": "^0.1.3",
|
|
@@ -38,10 +38,10 @@
|
|
|
38
38
|
"react-window": "^1.8.5"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@opensumi/ide-dev-tool": "3.3.1-next-
|
|
41
|
+
"@opensumi/ide-dev-tool": "3.3.1-next-1725433243.0",
|
|
42
42
|
"@types/marked": "^4.0.7",
|
|
43
43
|
"@types/react-window": "^1.8.5",
|
|
44
44
|
"prop-types": "^15.8.1"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "76cbd0614c78862e45f0a908727ca9f9561a6482"
|
|
47
47
|
}
|