@vue/devtools 7.0.8 → 7.0.9

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 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.8",
4
+ "version": "7.0.9",
5
5
  "author": "webfansplz",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -30,8 +30,8 @@
30
30
  "dist"
31
31
  ],
32
32
  "dependencies": {
33
- "@vue/devtools-electron": "^7.0.8",
34
- "@vue/devtools-kit": "^7.0.8"
33
+ "@vue/devtools-electron": "^7.0.9",
34
+ "@vue/devtools-kit": "^7.0.9"
35
35
  },
36
36
  "scripts": {
37
37
  "build": "tsup --clean",