@vue/devtools 7.6.8 → 7.7.1
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 +3 -3
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -18,8 +18,8 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
19
|
|
|
20
20
|
// src/index.ts
|
|
21
|
-
var
|
|
22
|
-
__export(
|
|
21
|
+
var index_exports = {};
|
|
22
|
+
__export(index_exports, {
|
|
23
23
|
addCustomCommand: () => import_devtools_kit.addCustomCommand,
|
|
24
24
|
addCustomTab: () => import_devtools_kit.addCustomTab,
|
|
25
25
|
devtools: () => devtools,
|
|
@@ -27,7 +27,7 @@ __export(src_exports, {
|
|
|
27
27
|
onDevToolsConnected: () => import_devtools_kit.onDevToolsConnected,
|
|
28
28
|
removeCustomCommand: () => import_devtools_kit.removeCustomCommand
|
|
29
29
|
});
|
|
30
|
-
module.exports = __toCommonJS(
|
|
30
|
+
module.exports = __toCommonJS(index_exports);
|
|
31
31
|
var import_devtools_electron = require("@vue/devtools-electron");
|
|
32
32
|
var import_devtools_kit = require("@vue/devtools-kit");
|
|
33
33
|
var devtools = {
|
package/dist/index.d.cts
CHANGED
|
@@ -19,7 +19,9 @@ declare const devtools: {
|
|
|
19
19
|
scrollToComponent(id: string): void;
|
|
20
20
|
openInEditor: typeof _vue_devtools_kit.openInEditor;
|
|
21
21
|
getVueInspector: typeof _vue_devtools_kit.getComponentInspector;
|
|
22
|
-
toggleApp(id: string
|
|
22
|
+
toggleApp(id: string, options?: {
|
|
23
|
+
inspectingComponent?: boolean;
|
|
24
|
+
}): void;
|
|
23
25
|
inspectDOM(instanceId: string): void;
|
|
24
26
|
updatePluginSettings(pluginId: string, key: string, value: string): void;
|
|
25
27
|
getPluginSettings(pluginId: string): {
|
package/dist/index.d.ts
CHANGED
|
@@ -19,7 +19,9 @@ declare const devtools: {
|
|
|
19
19
|
scrollToComponent(id: string): void;
|
|
20
20
|
openInEditor: typeof _vue_devtools_kit.openInEditor;
|
|
21
21
|
getVueInspector: typeof _vue_devtools_kit.getComponentInspector;
|
|
22
|
-
toggleApp(id: string
|
|
22
|
+
toggleApp(id: string, options?: {
|
|
23
|
+
inspectingComponent?: boolean;
|
|
24
|
+
}): void;
|
|
23
25
|
inspectDOM(instanceId: string): void;
|
|
24
26
|
updatePluginSettings(pluginId: string, key: string, value: string): void;
|
|
25
27
|
getPluginSettings(pluginId: string): {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/devtools",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.7.1",
|
|
5
5
|
"author": "webfansplz",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"hook.d.ts"
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@vue/devtools-electron": "^7.
|
|
33
|
-
"@vue/devtools-kit": "^7.
|
|
32
|
+
"@vue/devtools-electron": "^7.7.1",
|
|
33
|
+
"@vue/devtools-kit": "^7.7.1"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "tsup --clean",
|