@vue/devtools 7.0.12 → 7.0.14
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/hook.d.ts +1 -0
- package/package.json +8 -10
- /package/dist/{hook.mjs → hook.js} +0 -0
- /package/dist/{index.mjs → index.js} +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -67,7 +67,7 @@ declare const devtools: {
|
|
|
67
67
|
highlightElement(instance: any): void;
|
|
68
68
|
unhighlightElement(): void;
|
|
69
69
|
getComponentInstances(app: any): Promise<any[]>;
|
|
70
|
-
getVueInspector(): Promise<_vue_devtools_kit.VueInspector>;
|
|
70
|
+
getVueInspector(): Promise<_vue_devtools_kit.VueInspector | null>;
|
|
71
71
|
visitComponentTree(payload: {
|
|
72
72
|
componentInstance: _vue_devtools_schema_dist.VueAppInstance | undefined;
|
|
73
73
|
app: _vue_devtools_schema_dist.VueAppInstance | undefined;
|
|
@@ -335,7 +335,7 @@ declare const devtools: {
|
|
|
335
335
|
highlightElement(instance: any): void;
|
|
336
336
|
unhighlightElement(): void;
|
|
337
337
|
getComponentInstances(app: any): Promise<any[]>;
|
|
338
|
-
getVueInspector(): Promise<_vue_devtools_kit.VueInspector>;
|
|
338
|
+
getVueInspector(): Promise<_vue_devtools_kit.VueInspector | null>;
|
|
339
339
|
visitComponentTree(payload: {
|
|
340
340
|
componentInstance: _vue_devtools_schema_dist.VueAppInstance | undefined;
|
|
341
341
|
app: _vue_devtools_schema_dist.VueAppInstance | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -67,7 +67,7 @@ declare const devtools: {
|
|
|
67
67
|
highlightElement(instance: any): void;
|
|
68
68
|
unhighlightElement(): void;
|
|
69
69
|
getComponentInstances(app: any): Promise<any[]>;
|
|
70
|
-
getVueInspector(): Promise<_vue_devtools_kit.VueInspector>;
|
|
70
|
+
getVueInspector(): Promise<_vue_devtools_kit.VueInspector | null>;
|
|
71
71
|
visitComponentTree(payload: {
|
|
72
72
|
componentInstance: _vue_devtools_schema_dist.VueAppInstance | undefined;
|
|
73
73
|
app: _vue_devtools_schema_dist.VueAppInstance | undefined;
|
|
@@ -335,7 +335,7 @@ declare const devtools: {
|
|
|
335
335
|
highlightElement(instance: any): void;
|
|
336
336
|
unhighlightElement(): void;
|
|
337
337
|
getComponentInstances(app: any): Promise<any[]>;
|
|
338
|
-
getVueInspector(): Promise<_vue_devtools_kit.VueInspector>;
|
|
338
|
+
getVueInspector(): Promise<_vue_devtools_kit.VueInspector | null>;
|
|
339
339
|
visitComponentTree(payload: {
|
|
340
340
|
componentInstance: _vue_devtools_schema_dist.VueAppInstance | undefined;
|
|
341
341
|
app: _vue_devtools_schema_dist.VueAppInstance | undefined;
|
package/hook.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './dist/hook'
|
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.14",
|
|
5
5
|
"author": "webfansplz",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -11,28 +11,26 @@
|
|
|
11
11
|
},
|
|
12
12
|
"exports": {
|
|
13
13
|
".": {
|
|
14
|
-
"
|
|
15
|
-
"import": "./dist/index.mjs",
|
|
14
|
+
"import": "./dist/index.js",
|
|
16
15
|
"require": "./dist/index.cjs"
|
|
17
16
|
},
|
|
18
17
|
"./hook": {
|
|
19
|
-
"
|
|
20
|
-
"import": "./dist/hook.mjs",
|
|
18
|
+
"import": "./dist/hook.js",
|
|
21
19
|
"require": "./dist/hook.cjs"
|
|
22
20
|
}
|
|
23
21
|
},
|
|
24
22
|
"main": "./dist/index.cjs",
|
|
25
|
-
"module": "./dist/index.
|
|
26
|
-
"types": "./dist/index.d.ts",
|
|
23
|
+
"module": "./dist/index.js",
|
|
27
24
|
"bin": {
|
|
28
25
|
"vue-devtools": "./cli.mjs"
|
|
29
26
|
},
|
|
30
27
|
"files": [
|
|
31
|
-
"dist"
|
|
28
|
+
"dist",
|
|
29
|
+
"hook.d.ts"
|
|
32
30
|
],
|
|
33
31
|
"dependencies": {
|
|
34
|
-
"@vue/devtools-
|
|
35
|
-
"@vue/devtools-
|
|
32
|
+
"@vue/devtools-electron": "^7.0.14",
|
|
33
|
+
"@vue/devtools-kit": "^7.0.14"
|
|
36
34
|
},
|
|
37
35
|
"scripts": {
|
|
38
36
|
"build": "tsup --clean",
|
|
File without changes
|
|
File without changes
|