@opensumi/ide-components 3.1.1-next-1718099721.0 → 3.1.1-next-1718110372.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.css +0 -6
- package/dist/index.js +2 -2
- package/lib/scrollbars/styles.less +0 -10
- package/package.json +4 -4
package/dist/index.css
CHANGED
|
@@ -3510,12 +3510,6 @@
|
|
|
3510
3510
|
/*!*************************************************************************************************************************************************************************************!*\
|
|
3511
3511
|
!*** css ../../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!../../node_modules/less-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./src/scrollbars/styles.less ***!
|
|
3512
3512
|
\*************************************************************************************************************************************************************************************/
|
|
3513
|
-
.design_left_slot .kt-scrollbar .scrollbar-thumb-vertical,
|
|
3514
|
-
.design_right_slot .kt-scrollbar .scrollbar-thumb-vertical,
|
|
3515
|
-
.design_left_slot .kt-scrollbar .scrollbar-thumb-horizontal,
|
|
3516
|
-
.design_right_slot .kt-scrollbar .scrollbar-thumb-horizontal {
|
|
3517
|
-
border-radius: 5px;
|
|
3518
|
-
}
|
|
3519
3513
|
.kt-scrollbar .scrollbar-thumb-vertical,
|
|
3520
3514
|
.kt-scrollbar .scrollbar-thumb-horizontal {
|
|
3521
3515
|
opacity: 0;
|
package/dist/index.js
CHANGED
|
@@ -6742,7 +6742,7 @@ eval("\n/* ---------------------------------------------------------------------
|
|
|
6742
6742
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
6743
6743
|
|
|
6744
6744
|
"use strict";
|
|
6745
|
-
eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.FileUri = void 0;\nconst
|
|
6745
|
+
eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.FileUri = void 0;\nconst platform_1 = __webpack_require__(/*! ./platform */ \"../utils/lib/platform.js\");\nconst uri_1 = __webpack_require__(/*! ./uri */ \"../utils/lib/uri.js\");\nvar FileUri;\n(function (FileUri) {\n const windowsDriveRegex = /^([^:/?#]+?):$/;\n /**\n * Creates a new file URI from the filesystem path argument.\n * @param fsPath the filesystem path.\n */\n function create(_fsPath) {\n return new uri_1.URI(uri_1.Uri.file(_fsPath));\n }\n FileUri.create = create;\n /**\n * Returns with the platform specific FS path that is represented by the URI argument.\n *\n * @param uri the file URI that has to be resolved to a platform specific FS path.\n */\n function fsPath(uri) {\n if (typeof uri === 'string') {\n return fsPath(new uri_1.URI(uri));\n }\n else {\n /*\n * A uri for the root of a Windows drive, eg file:\\\\\\c%3A, is converted to c:\n * by the Uri class. However file:\\\\\\c%3A is unambiguously a uri to the root of\n * the drive and c: is interpreted as the default directory for the c drive\n * (by, for example, the readdir function in the fs-extra module).\n * A backslash must be appended to the drive, eg c:\\, to ensure the correct path.\n */\n const fsPathFromVsCodeUri = uri.codeUri.fsPath;\n if (platform_1.isWindows) {\n const isWindowsDriveRoot = windowsDriveRegex.exec(fsPathFromVsCodeUri);\n if (isWindowsDriveRoot) {\n return fsPathFromVsCodeUri + '\\\\';\n }\n }\n return fsPathFromVsCodeUri;\n }\n }\n FileUri.fsPath = fsPath;\n})(FileUri = exports.FileUri || (exports.FileUri = {}));\n//# sourceMappingURL=file-uri.js.map\n\n//# sourceURL=webpack://@opensumi/ide-components/../utils/lib/file-uri.js?");
|
|
6746
6746
|
|
|
6747
6747
|
/***/ }),
|
|
6748
6748
|
|
|
@@ -6951,7 +6951,7 @@ eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexpo
|
|
|
6951
6951
|
/***/ ((__unused_webpack_module, exports) => {
|
|
6952
6952
|
|
|
6953
6953
|
"use strict";
|
|
6954
|
-
eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.pSeries = exports.Deferred = void 0;\n/**\n * Simple implementation of the deferred pattern.\n * An object that exposes a promise and functions to resolve and reject it.\n */\nclass Deferred {\n constructor() {\n this.promise = new Promise((resolve, reject) => {\n this.resolve = resolve;\n this.reject = reject;\n });\n }\n}\nexports.Deferred = Deferred;\nasync function pSeries(tasks) {\n const results = [];\n for (const task of tasks) {\n results.push(await task());\n }\n return results;\n}\nexports.pSeries = pSeries;\n//# sourceMappingURL=promises.js.map\n\n//# sourceURL=webpack://@opensumi/ide-components/../utils/lib/promises.js?");
|
|
6954
|
+
eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.PromiseTasks = exports.pSeries = exports.Deferred = void 0;\n/**\n * Simple implementation of the deferred pattern.\n * An object that exposes a promise and functions to resolve and reject it.\n */\nclass Deferred {\n constructor() {\n this.promise = new Promise((resolve, reject) => {\n this.resolve = resolve;\n this.reject = reject;\n });\n }\n}\nexports.Deferred = Deferred;\nasync function pSeries(tasks) {\n const results = [];\n for (const task of tasks) {\n results.push(await task());\n }\n return results;\n}\nexports.pSeries = pSeries;\nclass PromiseTasks {\n constructor() {\n this.tasks = [];\n }\n add(task) {\n this.tasks.push(task);\n }\n addPromise(task) {\n this.tasks.push(() => task);\n }\n promisify() {\n return this.tasks.map((task) => task());\n }\n async allSettled() {\n return Promise.allSettled(this.promisify());\n }\n async all() {\n return Promise.all(this.promisify());\n }\n async race() {\n return Promise.race(this.promisify());\n }\n /**\n * This returned promise fulfills when any of the input's promises fulfills, with this first fulfillment value.\n * It return `undefined` when all of the input's promises reject (including when an empty iterable is passed).\n */\n async any() {\n try {\n return await Promise.any(this.promisify());\n }\n catch (error) {\n return undefined;\n }\n }\n}\nexports.PromiseTasks = PromiseTasks;\n//# sourceMappingURL=promises.js.map\n\n//# sourceURL=webpack://@opensumi/ide-components/../utils/lib/promises.js?");
|
|
6955
6955
|
|
|
6956
6956
|
/***/ }),
|
|
6957
6957
|
|
|
@@ -1,15 +1,5 @@
|
|
|
1
1
|
@import '../style/variable.less';
|
|
2
2
|
|
|
3
|
-
.design_left_slot,
|
|
4
|
-
.design_right_slot {
|
|
5
|
-
.@{prefix}-scrollbar {
|
|
6
|
-
.scrollbar-thumb-vertical,
|
|
7
|
-
.scrollbar-thumb-horizontal {
|
|
8
|
-
border-radius: 5px;
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
|
|
13
3
|
.@{prefix}-scrollbar {
|
|
14
4
|
.scrollbar-thumb-vertical,
|
|
15
5
|
.scrollbar-thumb-horizontal {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opensumi/ide-components",
|
|
3
|
-
"version": "3.1.1-next-
|
|
3
|
+
"version": "3.1.1-next-1718110372.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.1.1-next-
|
|
19
|
+
"@opensumi/ide-utils": "3.1.1-next-1718110372.0",
|
|
20
20
|
"fuzzy": "^0.1.3",
|
|
21
21
|
"lodash": "^4.17.21",
|
|
22
22
|
"marked": "4.0.10",
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
"react-window": "^1.8.5"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@opensumi/ide-dev-tool": "3.1.1-next-
|
|
39
|
+
"@opensumi/ide-dev-tool": "3.1.1-next-1718110372.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": "
|
|
44
|
+
"gitHead": "e5553f15bf3ba87e3748463b6ceff71989f2f761"
|
|
45
45
|
}
|