@vue/devtools-kit 7.3.0-beta.3 → 7.3.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.cjs +182 -124
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +171 -113
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -404,6 +404,7 @@ declare function createDevToolsApi(hooks: Hookable<DevToolsContextHooks & DevToo
|
|
|
404
404
|
openInEditor: typeof openInEditor;
|
|
405
405
|
getVueInspector: typeof getComponentInspector;
|
|
406
406
|
toggleApp(id: string): void;
|
|
407
|
+
inspectDOM(instanceId: string): void;
|
|
407
408
|
};
|
|
408
409
|
type DevToolsApiType = ReturnType<typeof createDevToolsApi>;
|
|
409
410
|
|
|
@@ -1041,6 +1042,7 @@ declare const devtools: {
|
|
|
1041
1042
|
openInEditor: typeof openInEditor;
|
|
1042
1043
|
getVueInspector: typeof getComponentInspector;
|
|
1043
1044
|
toggleApp(id: string): void;
|
|
1045
|
+
inspectDOM(instanceId: string): void;
|
|
1044
1046
|
};
|
|
1045
1047
|
};
|
|
1046
1048
|
|
package/dist/index.d.ts
CHANGED
|
@@ -404,6 +404,7 @@ declare function createDevToolsApi(hooks: Hookable<DevToolsContextHooks & DevToo
|
|
|
404
404
|
openInEditor: typeof openInEditor;
|
|
405
405
|
getVueInspector: typeof getComponentInspector;
|
|
406
406
|
toggleApp(id: string): void;
|
|
407
|
+
inspectDOM(instanceId: string): void;
|
|
407
408
|
};
|
|
408
409
|
type DevToolsApiType = ReturnType<typeof createDevToolsApi>;
|
|
409
410
|
|
|
@@ -1041,6 +1042,7 @@ declare const devtools: {
|
|
|
1041
1042
|
openInEditor: typeof openInEditor;
|
|
1042
1043
|
getVueInspector: typeof getComponentInspector;
|
|
1043
1044
|
toggleApp(id: string): void;
|
|
1045
|
+
inspectDOM(instanceId: string): void;
|
|
1044
1046
|
};
|
|
1045
1047
|
};
|
|
1046
1048
|
|