vite-plugin-vue-devtools 7.7.6 → 8.0.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/client/assets/IconTitle.vue_vue_type_script_setup_true_lang-BXngeGY8.js +1 -0
- package/client/assets/SectionBlock-BYDDTsu3.css +1 -0
- package/client/assets/SectionBlock-H9LBnZtw.js +1 -0
- package/client/assets/assets-qX_YSZFJ.js +12 -0
- package/client/assets/components-2Kp8HH9-.js +1 -0
- package/client/assets/css-DPfMkruS.js +1 -0
- package/client/assets/custom-inspector-tab-view-hJ0sgyRt.js +1 -0
- package/client/assets/custom-tab-view-CcB3biR9.js +1 -0
- package/client/assets/diff-D97Zzqfu.js +1 -0
- package/client/assets/graph-D2lpQpE1.js +1073 -0
- package/client/assets/html-B8pBdPMQ.js +1 -0
- package/client/assets/index-CQrqPx0k.css +1 -0
- package/client/assets/index-DOp68rd-.js +2382 -0
- package/client/assets/index-D_-9VWqF.css +1 -0
- package/client/assets/javascript-BMMyXqK5.js +1 -0
- package/client/assets/json-Cp-IABpG.js +1 -0
- package/client/assets/overview-C4yihdYP.js +1 -0
- package/client/assets/pages-CY6OZ6x-.js +1 -0
- package/client/assets/pinia-BDVcd-P5.js +1 -0
- package/client/assets/router-DGXO7FD9.js +1 -0
- package/client/assets/settings-bsy0UrNY.js +1 -0
- package/client/assets/shellscript-Yzrsuije.js +1 -0
- package/client/assets/timeline-DQ8UE2TV.css +1 -0
- package/client/assets/timeline-Rsigp4eg.js +1 -0
- package/client/assets/typescript-DlfHMoPT.js +1 -0
- package/client/assets/vue-CYH3TOzo.js +1 -0
- package/client/assets/vue-html-zSiQ3dJi.js +1 -0
- package/client/assets/yaml-Buea-lGh.js +1 -0
- package/client/index.html +3 -3
- package/dist/vite.cjs +6410 -8291
- package/dist/vite.d.cts +38 -37
- package/dist/vite.d.ts +38 -37
- package/dist/vite.js +6880 -0
- package/package.json +12 -14
- package/src/overlay/devtools-overlay.mjs +4 -4
- package/client/assets/css-6ydISZ1j.js +0 -1
- package/client/assets/diff-7a-uGD01.js +0 -1
- package/client/assets/html-DQt1crSz.js +0 -1
- package/client/assets/index-CzVhFJJG.css +0 -1
- package/client/assets/index-D82dXrLD.js +0 -3436
- package/client/assets/javascript-DFxyEsuO.js +0 -1
- package/client/assets/json-BLmTiKMJ.js +0 -1
- package/client/assets/shellscript-Cs-zf8G1.js +0 -1
- package/client/assets/typescript-6msxI5qU.js +0 -1
- package/client/assets/vue-XV-ldwVs.js +0 -1
- package/client/assets/vue-html-ecI6esm2.js +0 -1
- package/client/assets/yaml-DeMLtiT4.js +0 -1
- package/dist/vite.d.mts +0 -41
- package/dist/vite.mjs +0 -8741
package/dist/vite.d.cts
CHANGED
|
@@ -1,41 +1,42 @@
|
|
|
1
|
-
import { PluginOption } from
|
|
2
|
-
import { VitePluginInspectorOptions } from
|
|
1
|
+
import { PluginOption } from "vite";
|
|
2
|
+
import { VitePluginInspectorOptions } from "vite-plugin-vue-inspector";
|
|
3
3
|
|
|
4
|
+
//#region src/vite.d.ts
|
|
4
5
|
interface VitePluginVueDevToolsOptions {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
6
|
+
/**
|
|
7
|
+
* append an import to the module id ending with `appendTo` instead of adding a script into body
|
|
8
|
+
* useful for projects that do not use html file as an entry
|
|
9
|
+
*
|
|
10
|
+
* WARNING: only set this if you know exactly what it does.
|
|
11
|
+
* @default ''
|
|
12
|
+
*/
|
|
13
|
+
appendTo?: string | RegExp;
|
|
14
|
+
/**
|
|
15
|
+
* Enable vue component inspector
|
|
16
|
+
*
|
|
17
|
+
* @default true
|
|
18
|
+
*/
|
|
19
|
+
componentInspector?: boolean | VitePluginInspectorOptions;
|
|
20
|
+
/**
|
|
21
|
+
* Target editor when open in editor (v7.2.0+)
|
|
22
|
+
*
|
|
23
|
+
* @default code (Visual Studio Code)
|
|
24
|
+
*/
|
|
25
|
+
launchEditor?: 'appcode' | 'atom' | 'atom-beta' | 'brackets' | 'clion' | 'code' | 'code-insiders' | 'codium' | 'emacs' | 'idea' | 'notepad++' | 'pycharm' | 'phpstorm' | 'rubymine' | 'sublime' | 'vim' | 'visualstudio' | 'webstorm' | 'rider' | string;
|
|
26
|
+
/**
|
|
27
|
+
* Customize openInEditor host
|
|
28
|
+
* @default false
|
|
29
|
+
* @deprecated This option is deprecated and removed in 7.1.0. The plugin now automatically detects the correct host.
|
|
30
|
+
*/
|
|
31
|
+
openInEditorHost?: string | false;
|
|
32
|
+
/**
|
|
33
|
+
* DevTools client host
|
|
34
|
+
* useful for projects that use a reverse proxy
|
|
35
|
+
* @default false
|
|
36
|
+
* @deprecated This option is deprecated and removed in 7.1.0. The plugin now automatically detects the correct host.
|
|
37
|
+
*/
|
|
38
|
+
clientHost?: string | false;
|
|
38
39
|
}
|
|
39
40
|
declare function VitePluginVueDevTools(options?: VitePluginVueDevToolsOptions): PluginOption;
|
|
40
|
-
|
|
41
|
-
export {
|
|
41
|
+
//#endregion
|
|
42
|
+
export { VitePluginVueDevToolsOptions, VitePluginVueDevTools as default };
|
package/dist/vite.d.ts
CHANGED
|
@@ -1,41 +1,42 @@
|
|
|
1
|
-
import { PluginOption } from
|
|
2
|
-
import { VitePluginInspectorOptions } from
|
|
1
|
+
import { PluginOption } from "vite";
|
|
2
|
+
import { VitePluginInspectorOptions } from "vite-plugin-vue-inspector";
|
|
3
3
|
|
|
4
|
+
//#region src/vite.d.ts
|
|
4
5
|
interface VitePluginVueDevToolsOptions {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
6
|
+
/**
|
|
7
|
+
* append an import to the module id ending with `appendTo` instead of adding a script into body
|
|
8
|
+
* useful for projects that do not use html file as an entry
|
|
9
|
+
*
|
|
10
|
+
* WARNING: only set this if you know exactly what it does.
|
|
11
|
+
* @default ''
|
|
12
|
+
*/
|
|
13
|
+
appendTo?: string | RegExp;
|
|
14
|
+
/**
|
|
15
|
+
* Enable vue component inspector
|
|
16
|
+
*
|
|
17
|
+
* @default true
|
|
18
|
+
*/
|
|
19
|
+
componentInspector?: boolean | VitePluginInspectorOptions;
|
|
20
|
+
/**
|
|
21
|
+
* Target editor when open in editor (v7.2.0+)
|
|
22
|
+
*
|
|
23
|
+
* @default code (Visual Studio Code)
|
|
24
|
+
*/
|
|
25
|
+
launchEditor?: 'appcode' | 'atom' | 'atom-beta' | 'brackets' | 'clion' | 'code' | 'code-insiders' | 'codium' | 'emacs' | 'idea' | 'notepad++' | 'pycharm' | 'phpstorm' | 'rubymine' | 'sublime' | 'vim' | 'visualstudio' | 'webstorm' | 'rider' | string;
|
|
26
|
+
/**
|
|
27
|
+
* Customize openInEditor host
|
|
28
|
+
* @default false
|
|
29
|
+
* @deprecated This option is deprecated and removed in 7.1.0. The plugin now automatically detects the correct host.
|
|
30
|
+
*/
|
|
31
|
+
openInEditorHost?: string | false;
|
|
32
|
+
/**
|
|
33
|
+
* DevTools client host
|
|
34
|
+
* useful for projects that use a reverse proxy
|
|
35
|
+
* @default false
|
|
36
|
+
* @deprecated This option is deprecated and removed in 7.1.0. The plugin now automatically detects the correct host.
|
|
37
|
+
*/
|
|
38
|
+
clientHost?: string | false;
|
|
38
39
|
}
|
|
39
40
|
declare function VitePluginVueDevTools(options?: VitePluginVueDevToolsOptions): PluginOption;
|
|
40
|
-
|
|
41
|
-
export {
|
|
41
|
+
//#endregion
|
|
42
|
+
export { VitePluginVueDevToolsOptions, VitePluginVueDevTools as default };
|