@opensumi/ide-components 3.7.1-next-1736320460.0 → 3.7.1-next-1736321498.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/lib/modal/Modal.js +1 -1
- package/lib/modal/Modal.js.map +1 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -6001,7 +6001,7 @@ eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\ncons
|
|
|
6001
6001
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
6002
6002
|
|
|
6003
6003
|
"use strict";
|
|
6004
|
-
eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.destroyFns = void 0;\nconst tslib_1 = __webpack_require__(/*! tslib */ \"../../node_modules/tslib/tslib.es6.mjs\");\nconst CloseOutlined_1 = tslib_1.__importDefault(__webpack_require__(/*! @ant-design/icons/CloseOutlined */ \"../../node_modules/@ant-design/icons/CloseOutlined.js\"));\nconst classnames_1 = tslib_1.__importDefault(__webpack_require__(/*! classnames */ \"../../node_modules/classnames/index.js\"));\nconst prop_types_1 = tslib_1.__importDefault(__webpack_require__(/*! prop-types */ \"../../node_modules/prop-types/index.js\"));\nconst rc_dialog_1 = tslib_1.__importDefault(__webpack_require__(/*! rc-dialog */ \"../../node_modules/rc-dialog/es/index.js\"));\nconst addEventListener_1 = tslib_1.__importDefault(__webpack_require__(/*! rc-util/lib/Dom/addEventListener */ \"../../node_modules/rc-util/lib/Dom/addEventListener.js\"));\nconst react_1 = tslib_1.__importDefault(__webpack_require__(/*! react */ \"../../node_modules/react/index.js\"));\nconst button_1 = __webpack_require__(/*! ../button */ \"./src/button/index.tsx\");\nconst locale_1 = __webpack_require__(/*! ./locale */ \"./src/modal/locale.ts\");\nlet mousePosition;\nexports.destroyFns = [];\n// ref: https://github.com/ant-design/ant-design/issues/15795\nconst getClickPosition = (e) => {\n mousePosition = {\n x: e.pageX,\n y: e.pageY,\n };\n // 100ms 内发生过点击事件,则从点击位置动画展示\n // 否则直接 zoom 展示\n // 这样可以兼容非点击方式展开\n setTimeout(() => (mousePosition = null), 100);\n};\n// 只有点击事件支持从鼠标位置动画展开\nif (typeof window !== 'undefined' && window.document && window.document.documentElement) {\n (0, addEventListener_1.default)(document.documentElement, 'click', getClickPosition);\n}\nclass Modal extends react_1.default.Component {\n constructor() {\n super(...arguments);\n this.handleCancel = (e) => {\n const { onCancel } = this.props;\n if (onCancel) {\n onCancel(e);\n }\n };\n this.handleOk = (e) => {\n const { onOk } = this.props;\n if (onOk) {\n onOk(e);\n }\n };\n this.renderFooter = (locale) => {\n const { okText, okType, cancelText, confirmLoading } = this.props;\n return (react_1.default.createElement(\"div\", null,\n react_1.default.createElement(button_1.Button, Object.assign({ onClick: this.handleCancel }, this.props.cancelButtonProps), cancelText || locale.cancelText),\n react_1.default.createElement(button_1.Button, Object.assign({ type: okType, loading: confirmLoading, onClick: this.handleOk }, this.props.okButtonProps), okText || locale.okText)));\n };\n this.renderModal = () => {\n const _a = this.props, { prefixCls: customizePrefixCls, footer, visible, wrapClassName, centered, getContainer, closeIcon, closable = true } = _a, restProps = tslib_1.__rest(_a, [\"prefixCls\", \"footer\", \"visible\", \"wrapClassName\", \"centered\", \"getContainer\", \"closeIcon\", \"closable\"]);\n const prefixCls = customizePrefixCls || 'kt-modal';\n const defaultFooter = this.renderFooter((0, locale_1.getConfirmLocale)());\n const closeIconToRender = (react_1.default.createElement(\"span\", { className: `${prefixCls}-close-x` }, closeIcon || react_1.default.createElement(CloseOutlined_1.default, { className: `${prefixCls}-close-icon` })));\n return (react_1.default.createElement(rc_dialog_1.default, Object.assign({}, restProps, { animation: this.props.animation, getContainer: getContainer, prefixCls: prefixCls,
|
|
6004
|
+
eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.destroyFns = void 0;\nconst tslib_1 = __webpack_require__(/*! tslib */ \"../../node_modules/tslib/tslib.es6.mjs\");\nconst CloseOutlined_1 = tslib_1.__importDefault(__webpack_require__(/*! @ant-design/icons/CloseOutlined */ \"../../node_modules/@ant-design/icons/CloseOutlined.js\"));\nconst classnames_1 = tslib_1.__importDefault(__webpack_require__(/*! classnames */ \"../../node_modules/classnames/index.js\"));\nconst prop_types_1 = tslib_1.__importDefault(__webpack_require__(/*! prop-types */ \"../../node_modules/prop-types/index.js\"));\nconst rc_dialog_1 = tslib_1.__importDefault(__webpack_require__(/*! rc-dialog */ \"../../node_modules/rc-dialog/es/index.js\"));\nconst addEventListener_1 = tslib_1.__importDefault(__webpack_require__(/*! rc-util/lib/Dom/addEventListener */ \"../../node_modules/rc-util/lib/Dom/addEventListener.js\"));\nconst react_1 = tslib_1.__importDefault(__webpack_require__(/*! react */ \"../../node_modules/react/index.js\"));\nconst button_1 = __webpack_require__(/*! ../button */ \"./src/button/index.tsx\");\nconst locale_1 = __webpack_require__(/*! ./locale */ \"./src/modal/locale.ts\");\nlet mousePosition;\nexports.destroyFns = [];\n// ref: https://github.com/ant-design/ant-design/issues/15795\nconst getClickPosition = (e) => {\n mousePosition = {\n x: e.pageX,\n y: e.pageY,\n };\n // 100ms 内发生过点击事件,则从点击位置动画展示\n // 否则直接 zoom 展示\n // 这样可以兼容非点击方式展开\n setTimeout(() => (mousePosition = null), 100);\n};\n// 只有点击事件支持从鼠标位置动画展开\nif (typeof window !== 'undefined' && window.document && window.document.documentElement) {\n (0, addEventListener_1.default)(document.documentElement, 'click', getClickPosition);\n}\nclass Modal extends react_1.default.Component {\n constructor() {\n super(...arguments);\n this.handleCancel = (e) => {\n const { onCancel } = this.props;\n if (onCancel) {\n onCancel(e);\n }\n };\n this.handleOk = (e) => {\n const { onOk } = this.props;\n if (onOk) {\n onOk(e);\n }\n };\n this.renderFooter = (locale) => {\n const { okText, okType, cancelText, confirmLoading } = this.props;\n return (react_1.default.createElement(\"div\", null,\n react_1.default.createElement(button_1.Button, Object.assign({ onClick: this.handleCancel }, this.props.cancelButtonProps), cancelText || locale.cancelText),\n react_1.default.createElement(button_1.Button, Object.assign({ type: okType, loading: confirmLoading, onClick: this.handleOk }, this.props.okButtonProps), okText || locale.okText)));\n };\n this.renderModal = () => {\n const _a = this.props, { prefixCls: customizePrefixCls, footer, visible, wrapClassName, centered, getContainer, closeIcon, closable = true } = _a, restProps = tslib_1.__rest(_a, [\"prefixCls\", \"footer\", \"visible\", \"wrapClassName\", \"centered\", \"getContainer\", \"closeIcon\", \"closable\"]);\n const prefixCls = customizePrefixCls || 'kt-modal';\n const defaultFooter = this.renderFooter((0, locale_1.getConfirmLocale)());\n const closeIconToRender = (react_1.default.createElement(\"span\", { className: `${prefixCls}-close-x` }, closeIcon || react_1.default.createElement(CloseOutlined_1.default, { className: `${prefixCls}-close-icon` })));\n return (react_1.default.createElement(rc_dialog_1.default, Object.assign({}, restProps, { animation: this.props.animation, getContainer: getContainer, prefixCls: prefixCls, className: (0, classnames_1.default)({ [`${prefixCls}-centered`]: !!centered }, wrapClassName), footer: footer === undefined ? defaultFooter : footer, visible: visible, mousePosition: mousePosition, onClose: this.handleCancel, closeIcon: closeIconToRender })));\n };\n }\n render() {\n return this.renderModal();\n }\n}\nModal.defaultProps = {\n width: 520,\n confirmLoading: false,\n visible: false,\n okType: 'primary',\n};\nModal.propTypes = {\n prefixCls: prop_types_1.default.string,\n onOk: prop_types_1.default.func,\n onCancel: prop_types_1.default.func,\n okText: prop_types_1.default.node,\n cancelText: prop_types_1.default.node,\n centered: prop_types_1.default.bool,\n width: prop_types_1.default.oneOfType([prop_types_1.default.number, prop_types_1.default.string]),\n confirmLoading: prop_types_1.default.bool,\n visible: prop_types_1.default.bool,\n footer: prop_types_1.default.node,\n title: prop_types_1.default.node,\n closable: prop_types_1.default.bool,\n closeIcon: prop_types_1.default.node,\n};\nexports[\"default\"] = Modal;\n\n\n//# sourceURL=webpack://@opensumi/ide-components/./src/modal/Modal.tsx?");
|
|
6005
6005
|
|
|
6006
6006
|
/***/ }),
|
|
6007
6007
|
|
|
@@ -7374,7 +7374,7 @@ eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexpo
|
|
|
7374
7374
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
7375
7375
|
|
|
7376
7376
|
"use strict";
|
|
7377
|
-
eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.VSCFileChangeType = exports.FileChangeType = exports.FileChangeEvent = exports.FileChange = void 0;\nconst ide_utils_1 = __webpack_require__(/*! @opensumi/ide-utils */ \"../utils/lib/index.js\");\nvar FileChange;\n(function (FileChange) {\n function isUpdated(change, uri) {\n return change.type === FileChangeType.UPDATED && uri.toString() === change.uri;\n }\n FileChange.isUpdated = isUpdated;\n function isAdded(change, uri) {\n return change.type === FileChangeType.ADDED && uri.toString() === change.uri;\n }\n FileChange.isAdded = isAdded;\n function isDeleted(change, uri) {\n return change.type === FileChangeType.DELETED && ide_utils_1.URI.file(change.uri).isEqualOrParent(uri);\n }\n FileChange.isDeleted = isDeleted;\n function isAffected(change, uri) {\n return isDeleted(change, uri) || uri.toString() === change.uri;\n }\n FileChange.isAffected = isAffected;\n function isChanged(change, uri) {\n return !isDeleted(change, uri) && uri.toString() === change.uri;\n }\n FileChange.isChanged = isChanged;\n})(FileChange || (exports.FileChange = FileChange = {}));\nvar FileChangeEvent;\n(function (FileChangeEvent) {\n function isUpdated(event, uri) {\n return event.some((change) => FileChange.isUpdated(change, uri));\n }\n FileChangeEvent.isUpdated = isUpdated;\n function isAdded(event, uri) {\n return event.some((change) => FileChange.isAdded(change, uri));\n }\n FileChangeEvent.isAdded = isAdded;\n function isDeleted(event, uri) {\n return event.some((change) => FileChange.isDeleted(change, uri));\n }\n FileChangeEvent.isDeleted = isDeleted;\n function isAffected(event, uri) {\n return event.some((change) => FileChange.isAffected(change, uri));\n }\n FileChangeEvent.isAffected = isAffected;\n function isChanged(event, uri) {\n return !isDeleted(event, uri) && event.some((change) => FileChange.isChanged(change, uri));\n }\n FileChangeEvent.isChanged = isChanged;\n})(FileChangeEvent || (exports.FileChangeEvent = FileChangeEvent = {}));\nvar FileChangeType;\n(function (FileChangeType) {\n FileChangeType[FileChangeType[\"UPDATED\"] = 0] = \"UPDATED\";\n FileChangeType[FileChangeType[\"ADDED\"] = 1] = \"ADDED\";\n FileChangeType[FileChangeType[\"DELETED\"] = 2] = \"DELETED\";\n})(FileChangeType || (exports.FileChangeType = FileChangeType = {}));\nvar VSCFileChangeType;\n(function (VSCFileChangeType) {\n /**\n * The contents or metadata of a file have changed.\n */\n VSCFileChangeType[VSCFileChangeType[\"Changed\"] = 1] = \"Changed\";\n /**\n * A file has been created.\n */\n VSCFileChangeType[VSCFileChangeType[\"Created\"] = 2] = \"Created\";\n /**\n * A file has been deleted.\n */\n VSCFileChangeType[VSCFileChangeType[\"Deleted\"] = 3] = \"Deleted\";\n})(VSCFileChangeType || (exports.VSCFileChangeType = VSCFileChangeType = {}));\n//# sourceMappingURL=file-watch.js.map\n\n//# sourceURL=webpack://@opensumi/ide-components/../core-common/lib/types/file-watch.js?");
|
|
7377
|
+
eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.RecursiveWatcherBackend = exports.VSCFileChangeType = exports.FileChangeType = exports.FileChangeEvent = exports.FileChange = void 0;\nconst ide_utils_1 = __webpack_require__(/*! @opensumi/ide-utils */ \"../utils/lib/index.js\");\nvar FileChange;\n(function (FileChange) {\n function isUpdated(change, uri) {\n return change.type === FileChangeType.UPDATED && uri.toString() === change.uri;\n }\n FileChange.isUpdated = isUpdated;\n function isAdded(change, uri) {\n return change.type === FileChangeType.ADDED && uri.toString() === change.uri;\n }\n FileChange.isAdded = isAdded;\n function isDeleted(change, uri) {\n return change.type === FileChangeType.DELETED && ide_utils_1.URI.file(change.uri).isEqualOrParent(uri);\n }\n FileChange.isDeleted = isDeleted;\n function isAffected(change, uri) {\n return isDeleted(change, uri) || uri.toString() === change.uri;\n }\n FileChange.isAffected = isAffected;\n function isChanged(change, uri) {\n return !isDeleted(change, uri) && uri.toString() === change.uri;\n }\n FileChange.isChanged = isChanged;\n})(FileChange || (exports.FileChange = FileChange = {}));\nvar FileChangeEvent;\n(function (FileChangeEvent) {\n function isUpdated(event, uri) {\n return event.some((change) => FileChange.isUpdated(change, uri));\n }\n FileChangeEvent.isUpdated = isUpdated;\n function isAdded(event, uri) {\n return event.some((change) => FileChange.isAdded(change, uri));\n }\n FileChangeEvent.isAdded = isAdded;\n function isDeleted(event, uri) {\n return event.some((change) => FileChange.isDeleted(change, uri));\n }\n FileChangeEvent.isDeleted = isDeleted;\n function isAffected(event, uri) {\n return event.some((change) => FileChange.isAffected(change, uri));\n }\n FileChangeEvent.isAffected = isAffected;\n function isChanged(event, uri) {\n return !isDeleted(event, uri) && event.some((change) => FileChange.isChanged(change, uri));\n }\n FileChangeEvent.isChanged = isChanged;\n})(FileChangeEvent || (exports.FileChangeEvent = FileChangeEvent = {}));\nvar FileChangeType;\n(function (FileChangeType) {\n FileChangeType[FileChangeType[\"UPDATED\"] = 0] = \"UPDATED\";\n FileChangeType[FileChangeType[\"ADDED\"] = 1] = \"ADDED\";\n FileChangeType[FileChangeType[\"DELETED\"] = 2] = \"DELETED\";\n})(FileChangeType || (exports.FileChangeType = FileChangeType = {}));\nvar VSCFileChangeType;\n(function (VSCFileChangeType) {\n /**\n * The contents or metadata of a file have changed.\n */\n VSCFileChangeType[VSCFileChangeType[\"Changed\"] = 1] = \"Changed\";\n /**\n * A file has been created.\n */\n VSCFileChangeType[VSCFileChangeType[\"Created\"] = 2] = \"Created\";\n /**\n * A file has been deleted.\n */\n VSCFileChangeType[VSCFileChangeType[\"Deleted\"] = 3] = \"Deleted\";\n})(VSCFileChangeType || (exports.VSCFileChangeType = VSCFileChangeType = {}));\nvar RecursiveWatcherBackend;\n(function (RecursiveWatcherBackend) {\n RecursiveWatcherBackend[\"NSFW\"] = \"nsfw\";\n RecursiveWatcherBackend[\"PARCEL\"] = \"parcel\";\n})(RecursiveWatcherBackend || (exports.RecursiveWatcherBackend = RecursiveWatcherBackend = {}));\n//# sourceMappingURL=file-watch.js.map\n\n//# sourceURL=webpack://@opensumi/ide-components/../core-common/lib/types/file-watch.js?");
|
|
7378
7378
|
|
|
7379
7379
|
/***/ }),
|
|
7380
7380
|
|
package/lib/modal/Modal.js
CHANGED
|
@@ -53,7 +53,7 @@ class Modal extends react_1.default.Component {
|
|
|
53
53
|
const prefixCls = customizePrefixCls || 'kt-modal';
|
|
54
54
|
const defaultFooter = this.renderFooter((0, locale_1.getConfirmLocale)());
|
|
55
55
|
const closeIconToRender = (react_1.default.createElement("span", { className: `${prefixCls}-close-x` }, closeIcon || react_1.default.createElement(CloseOutlined_1.default, { className: `${prefixCls}-close-icon` })));
|
|
56
|
-
return (react_1.default.createElement(rc_dialog_1.default, { ...restProps, animation: this.props.animation, getContainer: getContainer, prefixCls: prefixCls,
|
|
56
|
+
return (react_1.default.createElement(rc_dialog_1.default, { ...restProps, animation: this.props.animation, getContainer: getContainer, prefixCls: prefixCls, className: (0, classnames_1.default)({ [`${prefixCls}-centered`]: !!centered }, wrapClassName), footer: footer === undefined ? defaultFooter : footer, visible: visible, mousePosition: mousePosition, onClose: this.handleCancel, closeIcon: closeIconToRender }));
|
|
57
57
|
};
|
|
58
58
|
}
|
|
59
59
|
render() {
|
package/lib/modal/Modal.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Modal.js","sourceRoot":"","sources":["../../src/modal/Modal.tsx"],"names":[],"mappings":";;;;AAAA,4FAA4D;AAC5D,oEAA6B;AAC7B,oEAAmC;AACnC,kEAA+B;AAC/B,gGAAgE;AAChE,0DAAiD;AAEjD,sCAAmC;AAEnC,qCAAyD;AAIzD,IAAI,aAA8C,CAAC;AACtC,QAAA,UAAU,GAAsB,EAAE,CAAC;AAEhD,6DAA6D;AAC7D,MAAM,gBAAgB,GAAG,CAAC,CAAa,EAAE,EAAE;IACzC,aAAa,GAAG;QACd,CAAC,EAAE,CAAC,CAAC,KAAK;QACV,CAAC,EAAE,CAAC,CAAC,KAAK;KACX,CAAC;IACF,4BAA4B;IAC5B,eAAe;IACf,gBAAgB;IAChB,UAAU,CAAC,GAAG,EAAE,CAAC,CAAC,aAAa,GAAG,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;AAChD,CAAC,CAAC;AAEF,oBAAoB;AACpB,IAAI,OAAO,MAAM,KAAK,WAAW,IAAI,MAAM,CAAC,QAAQ,IAAI,MAAM,CAAC,QAAQ,CAAC,eAAe,EAAE,CAAC;IACxF,IAAA,0BAAgB,EAAC,QAAQ,CAAC,eAAe,EAAE,OAAO,EAAE,gBAAgB,CAAC,CAAC;AACxE,CAAC;AA8GD,MAAqB,KAAM,SAAQ,eAAK,CAAC,SAA4C;IAArF;;QAsCE,iBAAY,GAAG,CAAC,CAAM,EAAE,EAAE;YACxB,MAAM,EAAE,QAAQ,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC;YAChC,IAAI,QAAQ,EAAE,CAAC;gBACb,QAAQ,CAAC,CAAC,CAAC,CAAC;YACd,CAAC;QACH,CAAC,CAAC;QAEF,aAAQ,GAAG,CAAC,CAAsC,EAAE,EAAE;YACpD,MAAM,EAAE,IAAI,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC;YAC5B,IAAI,IAAI,EAAE,CAAC;gBACT,IAAI,CAAC,CAAC,CAAC,CAAC;YACV,CAAC;QACH,CAAC,CAAC;QAEF,iBAAY,GAAG,CAAC,MAAmB,EAAE,EAAE;YACrC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,cAAc,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC;YAClE,OAAO,CACL;gBACE,8BAAC,eAAM,IAAC,OAAO,EAAE,IAAI,CAAC,YAAY,KAAM,IAAI,CAAC,KAAK,CAAC,iBAAiB,IACjE,UAAU,IAAI,MAAM,CAAC,UAAU,CACzB;gBACT,8BAAC,eAAM,IAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,cAAc,EAAE,OAAO,EAAE,IAAI,CAAC,QAAQ,KAAM,IAAI,CAAC,KAAK,CAAC,aAAa,IAChG,MAAM,IAAI,MAAM,CAAC,MAAM,CACjB,CACL,CACP,CAAC;QACJ,CAAC,CAAC;QAEF,gBAAW,GAAG,GAAG,EAAE;YACjB,MAAM,EACJ,SAAS,EAAE,kBAAkB,EAC7B,MAAM,EACN,OAAO,EACP,aAAa,EACb,QAAQ,EACR,YAAY,EACZ,SAAS,EACT,QAAQ,GAAG,IAAI,EACf,GAAG,SAAS,EACb,GAAG,IAAI,CAAC,KAAY,CAAC;YAEtB,MAAM,SAAS,GAAG,kBAAkB,IAAI,UAAU,CAAC;YACnD,MAAM,aAAa,GAAG,IAAI,CAAC,YAAY,CAAC,IAAA,yBAAgB,GAAE,CAAC,CAAC;YAE5D,MAAM,iBAAiB,GAAG,CACxB,wCAAM,SAAS,EAAE,GAAG,SAAS,UAAU,IACpC,SAAS,IAAI,8BAAC,uBAAa,IAAC,SAAS,EAAE,GAAG,SAAS,aAAa,GAAI,CAChE,CACR,CAAC;YAEF,OAAO,CACL,8BAAC,mBAAM,OACD,SAAS,EACb,SAAS,EAAE,IAAI,CAAC,KAAK,CAAC,SAAS,EAC/B,YAAY,EAAE,YAAY,EAC1B,SAAS,EAAE,SAAS,EACpB,
|
|
1
|
+
{"version":3,"file":"Modal.js","sourceRoot":"","sources":["../../src/modal/Modal.tsx"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opensumi/ide-components",
|
|
3
|
-
"version": "3.7.1-next-
|
|
3
|
+
"version": "3.7.1-next-1736321498.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.7.1-next-
|
|
20
|
-
"@opensumi/ide-utils": "3.7.1-next-
|
|
19
|
+
"@opensumi/ide-core-common": "3.7.1-next-1736321498.0",
|
|
20
|
+
"@opensumi/ide-utils": "3.7.1-next-1736321498.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.7.1-next-
|
|
41
|
+
"@opensumi/ide-dev-tool": "3.7.1-next-1736321498.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": "0d9592f1aa8944ff224fc4c43f93db602f9dd943"
|
|
47
47
|
}
|