@lvce-editor/test-worker 9.0.0 → 9.2.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/api.d.ts +6 -0
- package/package.json +2 -2
package/dist/api.d.ts
CHANGED
|
@@ -268,6 +268,11 @@ interface ExtensionDetail {
|
|
|
268
268
|
readonly selectTab: (name: string) => Promise<void>;
|
|
269
269
|
}
|
|
270
270
|
|
|
271
|
+
interface ExtensionSearch {
|
|
272
|
+
readonly handleInput: (value: string) => Promise<void>;
|
|
273
|
+
readonly open: () => Promise<void>;
|
|
274
|
+
}
|
|
275
|
+
|
|
271
276
|
interface FileSystem {
|
|
272
277
|
readonly addFileHandle: (file: File) => Promise<void>;
|
|
273
278
|
readonly chmod: (uri: string, permissions: any) => Promise<void>;
|
|
@@ -539,6 +544,7 @@ export interface TestApi {
|
|
|
539
544
|
readonly Explorer: Explorer
|
|
540
545
|
readonly Extension: Extension
|
|
541
546
|
readonly ExtensionDetail: ExtensionDetail
|
|
547
|
+
readonly ExtensionSearch: ExtensionSearch
|
|
542
548
|
readonly FileSystem: FileSystem
|
|
543
549
|
readonly FindWidget: FindWidget
|
|
544
550
|
readonly IconTheme: IconTheme
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lvce-editor/test-worker",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.2.0",
|
|
4
4
|
"description": "Test Worker",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"type": "module",
|
|
12
12
|
"main": "dist/testWorkerMain.js",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@lvce-editor/constants": "^1.
|
|
14
|
+
"@lvce-editor/constants": "^1.28.0"
|
|
15
15
|
},
|
|
16
16
|
"types": "dist/api.d.ts"
|
|
17
17
|
}
|