@vue/devtools 7.0.8 → 7.0.10
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.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/package.json +4 -3
package/dist/index.d.cts
CHANGED
|
@@ -64,6 +64,9 @@ declare const devtools: {
|
|
|
64
64
|
removeCustomCommand(actionId: string): void;
|
|
65
65
|
addInspector(payload: _vue_devtools_kit.AddInspectorApiPayload): void;
|
|
66
66
|
openInEditor(payload: _vue_devtools_kit.OpenInEditorOptions): void;
|
|
67
|
+
highlightElement(instance: any): void;
|
|
68
|
+
unhighlightElement(): void;
|
|
69
|
+
getComponentInstances(app: any): Promise<any[]>;
|
|
67
70
|
getVueInspector(): Promise<_vue_devtools_kit.VueInspector>;
|
|
68
71
|
visitComponentTree(payload: {
|
|
69
72
|
componentInstance: _vue_devtools_schema_dist.VueAppInstance | undefined;
|
|
@@ -329,6 +332,9 @@ declare const devtools: {
|
|
|
329
332
|
removeCustomCommand(actionId: string): void;
|
|
330
333
|
addInspector(payload: _vue_devtools_kit.AddInspectorApiPayload): void;
|
|
331
334
|
openInEditor(payload: _vue_devtools_kit.OpenInEditorOptions): void;
|
|
335
|
+
highlightElement(instance: any): void;
|
|
336
|
+
unhighlightElement(): void;
|
|
337
|
+
getComponentInstances(app: any): Promise<any[]>;
|
|
332
338
|
getVueInspector(): Promise<_vue_devtools_kit.VueInspector>;
|
|
333
339
|
visitComponentTree(payload: {
|
|
334
340
|
componentInstance: _vue_devtools_schema_dist.VueAppInstance | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -64,6 +64,9 @@ declare const devtools: {
|
|
|
64
64
|
removeCustomCommand(actionId: string): void;
|
|
65
65
|
addInspector(payload: _vue_devtools_kit.AddInspectorApiPayload): void;
|
|
66
66
|
openInEditor(payload: _vue_devtools_kit.OpenInEditorOptions): void;
|
|
67
|
+
highlightElement(instance: any): void;
|
|
68
|
+
unhighlightElement(): void;
|
|
69
|
+
getComponentInstances(app: any): Promise<any[]>;
|
|
67
70
|
getVueInspector(): Promise<_vue_devtools_kit.VueInspector>;
|
|
68
71
|
visitComponentTree(payload: {
|
|
69
72
|
componentInstance: _vue_devtools_schema_dist.VueAppInstance | undefined;
|
|
@@ -329,6 +332,9 @@ declare const devtools: {
|
|
|
329
332
|
removeCustomCommand(actionId: string): void;
|
|
330
333
|
addInspector(payload: _vue_devtools_kit.AddInspectorApiPayload): void;
|
|
331
334
|
openInEditor(payload: _vue_devtools_kit.OpenInEditorOptions): void;
|
|
335
|
+
highlightElement(instance: any): void;
|
|
336
|
+
unhighlightElement(): void;
|
|
337
|
+
getComponentInstances(app: any): Promise<any[]>;
|
|
332
338
|
getVueInspector(): Promise<_vue_devtools_kit.VueInspector>;
|
|
333
339
|
visitComponentTree(payload: {
|
|
334
340
|
componentInstance: _vue_devtools_schema_dist.VueAppInstance | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/devtools",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "7.0.
|
|
4
|
+
"version": "7.0.10",
|
|
5
5
|
"author": "webfansplz",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"exports": {
|
|
13
13
|
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
14
15
|
"import": "./dist/index.mjs",
|
|
15
16
|
"require": "./dist/index.cjs"
|
|
16
17
|
},
|
|
@@ -30,8 +31,8 @@
|
|
|
30
31
|
"dist"
|
|
31
32
|
],
|
|
32
33
|
"dependencies": {
|
|
33
|
-
"@vue/devtools-
|
|
34
|
-
"@vue/devtools-
|
|
34
|
+
"@vue/devtools-kit": "^7.0.10",
|
|
35
|
+
"@vue/devtools-electron": "^7.0.10"
|
|
35
36
|
},
|
|
36
37
|
"scripts": {
|
|
37
38
|
"build": "tsup --clean",
|